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 total TYPE integer REQUIRED yes
FIELD torque_output TYPE string VALUES type_a|type_b REQUIRED no
FIELD due_date TYPE string REQUIRED no
FIELD version TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD first_name TYPE string REQUIRED no
FIELD title TYPE string... | {"total":404,"due_date":"Sao Paulo","first_name":"bar","title":"pending"} | missing_required | {
"type": "object",
"properties": {
"total": {
"type": "integer"
},
"torque_output": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"due_date": {
"type": "string"
},
"version": {
"type": "string",
"enum": [
"berthed... | {"due_date": "Sao Paulo", "first_name": "bar", "title": "pending"} | Required field 'total' is missing | {"total":404,"due_date":"Sao Paulo","first_name":"bar","title":"pending"} |
TASK repair_structured_output
SPEC
FIELD id TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD organism TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD values TYPE string VALUES cat_a|cat_b REQUIRED yes
BROKEN_OUTPUT
{"id": "level_1", "organism": "type_b", "values": "cat_b", "extra_value_7147": "... | {"id":"level_1","organism":"type_b","values":"cat_b"} | extra_field | {
"type": "object",
"properties": {
"id": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"organism": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"values": {
"type": "s... | {"id": "level_1", "organism": "type_b", "values": "cat_b", "extra_value_7147": "unexpected"} | Unknown field 'extra_value_7147' not defined in schema | {"id":"level_1","organism":"type_b","values":"cat_b"} |
TASK repair_structured_output
SPEC
FIELD param_p62 TYPE string_uri REQUIRED no
FIELD val_n49 TYPE boolean REQUIRED yes
FIELD prop_k06 TYPE integer REQUIRED no
BROKEN_OUTPUT
Tool: create_ticket
Params: {"param_p62": "https://data.io/api", "prop_k06": 576, "val_n49_id": false} | {"param_p62":"https://data.io/api","val_n49":false,"prop_k06":576} | tool_call_wrong_param | {
"type": "object",
"properties": {
"param_p62": {
"type": "string",
"format": "uri"
},
"val_n49": {
"type": "boolean"
},
"prop_k06": {
"type": "integer"
}
},
"required": [
"val_n49"
]
} | Tool: create_ticket
Params: {"param_p62": "https://data.io/api", "prop_k06": 576, "val_n49_id": false} | Agent used wrong parameter name 'val_n49_id' instead of 'val_n49' | {"param_p62":"https://data.io/api","val_n49":false,"prop_k06":576} |
TASK repair_structured_output
SPEC
FIELD val_i16 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD prop_x03 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD param_l90 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD prop_z17 TYPE null REQUIRED yes
FIELD prop_t78 TYP... | {"val_i16":"medium","prop_x03":"draft","param_l90":"maintenance","prop_z17":null,"prop_t78":"2025-02-01T06:43:00Z"} | unquoted_keys | {
"type": "object",
"properties": {
"val_i16": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"prop_x03": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"param_l9... | {val_i16:"medium",prop_x03:"draft",param_l90:"maintenance",prop_z17:null,prop_t78:"2025-02-01T06:43:00Z"} | Expecting property name enclosed in double quotes | {"val_i16":"medium","prop_x03":"draft","param_l90":"maintenance","prop_z17":null,"prop_t78":"2025-02-01T06:43:00Z"} |
TASK repair_structured_output
SPEC
FIELD attr_m60 TYPE integer REQUIRED yes
FIELD key_e06 TYPE null REQUIRED no
FIELD attr_l83 TYPE integer REQUIRED no
FIELD field_m75 TYPE integer REQUIRED no
FIELD val_r11 TYPE string REQUIRED yes
FIELD param_n92.prop_q85.field_k14 TYPE boolean REQUIRED yes
FIELD param_n92.prop_q85.v... | {"attr_m60":937,"key_e06":null,"field_m75":968,"val_r11":"Diana","dim_l45":"admin@example.com"} | number_with_unit | {
"type": "object",
"properties": {
"attr_m60": {
"type": "integer"
},
"key_e06": {
"type": "null"
},
"attr_l83": {
"type": "integer"
},
"field_m75": {
"type": "integer"
},
"val_r11": {
"type": "string"
},
"param_n92": {
"type": "object... | {"attr_m60": "937px", "key_e06": null, "field_m75": 968, "val_r11": "Diana", "dim_l45": "admin@example.com"} | Field 'attr_m60' must be number, got string with unit | {"attr_m60":937,"key_e06":null,"field_m75":968,"val_r11":"Diana","dim_l45":"admin@example.com"} |
TASK repair_structured_output
SPEC
FIELD strand TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD yield_pct TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD consignee TYPE null REQUIRED yes
BROKEN_OUTPUT
{"strand":"level_1","yield_pct":"option_a","consignee":null} | {"strand":"level_1","yield_pct":"option_a","consignee":null} | missing_bracket | {
"type": "object",
"properties": {
"strand": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"yield_pct": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"consignee": {
"type": "null"... | {"strand":"level_1","yield_pct":"option_a","consignee":null} | Missing closing bracket | {"strand":"level_1","yield_pct":"option_a","consignee":null} |
TASK repair_structured_output
SPEC
FIELD id TYPE string_email REQUIRED no
FIELD priority TYPE boolean REQUIRED yes
FIELD feedback TYPE string REQUIRED no
FIELD paragraph[] TYPE string_date-time REQUIRED no
FIELD salinity[].run_id TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD salinity[].cargo_ty... | {"priority":false,"paragraph":["2022-01-18T07:51:00Z","2023-02-12T22:34:00Z","2025-04-17T16:44:00Z"],"salinity":[{"run_id":"closed","build_status":206,"nickname":"mode_c","isotope":"user@domain.com"},{"cargo_type":"option_a","build_status":770,"nickname":"mode_c","isotope":"QC-07"},{"run_id":"resolved","cargo_type":"op... | truncated_object | {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "email"
},
"priority": {
"type": "boolean"
},
"feedback": {
"type": "string"
},
"paragraph": {
"type": "array",
"items": {
"type": "string",
"format": "date-time"
... | {"priority":false,"paragraph":["2022-01-18T07:51:00Z","2023-02-12T22:34:00Z","2025-04-17T16:44:00Z"],"salinity":[{"run_id":"closed","build_status":206,"nickname":"mode_c","isotope":"user@domain.com"},{"cargo_type":"option_a","build_status":770,"nickname":"mode_c","isotope":"QC-07"},{"run_id":"resolved","cargo_type":"op... | Unexpected end of JSON input — truncated object | {"priority":false,"paragraph":["2022-01-18T07:51:00Z","2023-02-12T22:34:00Z","2025-04-17T16:44:00Z"],"salinity":[{"run_id":"closed","build_status":206,"nickname":"mode_c","isotope":"user@domain.com"},{"cargo_type":"option_a","build_status":770,"nickname":"mode_c","isotope":"QC-07"},{"run_id":"resolved","cargo_type":"op... |
TASK repair_structured_output
SPEC
FIELD crew_id.step.price TYPE integer REQUIRED no
FIELD crew_id.step.hazmat_code TYPE number REQUIRED yes
FIELD crew_id.step.city TYPE boolean REQUIRED yes
FIELD crew_id.step.message TYPE boolean REQUIRED yes
FIELD crew_id.step.level TYPE string_date-time REQUIRED no
FIELD crew_id.st... | {"crew_id":{"step":{"price":12,"hazmat_code":755.16,"city":false,"message":false,"level":"2022-05-23T23:55:00Z","interest_rate":false},"city":{"length":"hemizygous","count":"returned","score":884.31},"isotope":944,"maturity_date":{"organism":361,"company":"editor","trace_id":"Berlin","batch_code":"MV-Evergreen-01","ite... | tool_call_text_mix | {
"type": "object",
"properties": {
"crew_id": {
"type": "object",
"properties": {
"step": {
"type": "object",
"properties": {
"price": {
"type": "integer"
},
"hazmat_code": {
"type": "number"
},
... | I'll query our database.
<tool_call name="queue_sequencing_run">
{"crew_id":{"step":{"price":12,"hazmat_code":755.16,"city":false,"message":false,"level":"2022-05-23T23:55:00Z","interest_rate":false},"city":{"length":"hemizygous","count":"returned","score":884.31},"isotope":944,"maturity_date":{"organism":361,"company"... | Agent response mixes reasoning text with tool call | {"crew_id":{"step":{"price":12,"hazmat_code":755.16,"city":false,"message":false,"level":"2022-05-23T23:55:00Z","interest_rate":false},"city":{"length":"hemizygous","count":"returned","score":884.31},"isotope":944,"maturity_date":{"organism":361,"company":"editor","trace_id":"Berlin","batch_code":"MV-Evergreen-01","ite... |
TASK repair_structured_output
SPEC
FIELD dim_p15 TYPE string_uri REQUIRED yes
FIELD col_e92 TYPE integer REQUIRED yes
FIELD param_e83 TYPE string REQUIRED yes
BROKEN_OUTPUT
Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"dim_p15":"https://www.org/api","col_e92":133,"param_e8... | {"dim_p15":"https://www.org/api","col_e92":133,"param_e83":"cancelled"} | thought_process | {
"type": "object",
"properties": {
"dim_p15": {
"type": "string",
"format": "uri"
},
"col_e92": {
"type": "integer"
},
"param_e83": {
"type": "string"
}
},
"required": [
"col_e92",
"param_e83",
"dim_p15"
]
} | Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"dim_p15":"https://www.org/api","col_e92":133,"param_e83":"cancelled"} | Output contains chain-of-thought reasoning before JSON | {"dim_p15":"https://www.org/api","col_e92":133,"param_e83":"cancelled"} |
TASK repair_structured_output
SPEC
FIELD decay_rate TYPE string REQUIRED yes
FIELD tags TYPE integer REQUIRED no
FIELD brake_pressure TYPE string REQUIRED no
FIELD comments TYPE string REQUIRED yes
FIELD annotation TYPE string_date-time REQUIRED yes
FIELD step TYPE string VALUES single|married|divorced REQUIRED yes
B... | {"decay_rate":"GRCh38","tags":461,"brake_pressure":"Bob","comments":"London","annotation":"2023-09-24T12:20:00Z","step":"married"} | markdown_explanation | {
"type": "object",
"properties": {
"decay_rate": {
"type": "string"
},
"tags": {
"type": "integer"
},
"brake_pressure": {
"type": "string"
},
"comments": {
"type": "string"
},
"annotation": {
"type": "string",
"format": "date-time"
},
... | Let me provide the data in JSON format:
```json
{"decay_rate":"GRCh38","tags":461,"brake_pressure":"Bob","comments":"London","annotation":"2023-09-24T12:20:00Z","step":"married"}
```
I've ensured all required fields are present. | Output contains markdown and explanatory text around JSON | {"decay_rate":"GRCh38","tags":461,"brake_pressure":"Bob","comments":"London","annotation":"2023-09-24T12:20:00Z","step":"married"} |
TASK repair_structured_output
SPEC
FIELD col_o15 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD col_l39 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD prop_u64 TYPE string REQUIRED no
BROKEN_OUTPUT
<functioncall> assign_berth
{col_o15: "underway", col_l39: "cat_b"} | {"col_o15":"underway","col_l39":"cat_b"} | tool_call_bad_format | {
"type": "object",
"properties": {
"col_o15": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"col_l39": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
... | <functioncall> assign_berth
{col_o15: "underway", col_l39: "cat_b"} | Tool call has malformed arguments — unquoted keys in function parameters | {"col_o15":"underway","col_l39":"cat_b"} |
TASK repair_structured_output
SPEC
FIELD subject TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD dosage TYPE boolean REQUIRED no
FIELD shift_code TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD user_id TYPE string REQUIRED yes
FIELD status TYPE string_uri REQUIRED no
FIELD start_date TYPE str... | {"subject":"red","dosage":false,"shift_code":"email","user_id":"Bob","status":"https://example.com/v1","label":false,"index":816} | truncated_object | {
"type": "object",
"properties": {
"subject": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"dosage": {
"type": "boolean"
},
"shift_code": {
"type": "string",
"enum": [
"email",
... | {"subject":"red","dosage":false,"shift_code":"email","user_id":"Bob","status":"https://example.com/v1","label":false,"index":816 | Unexpected end of JSON input — truncated object | {"subject":"red","dosage":false,"shift_code":"email","user_id":"Bob","status":"https://example.com/v1","label":false,"index":816} |
TASK repair_structured_output
SPEC
FIELD col_l70 TYPE string_uri REQUIRED no
FIELD param_x58 TYPE integer REQUIRED yes
FIELD field_y72 TYPE string_email REQUIRED yes
FIELD field_x02 TYPE number REQUIRED no
FIELD dim_u21[] TYPE string_date-time REQUIRED no
BROKEN_OUTPUT
<functioncall> query_port_status
{col_l70: "http... | {"col_l70":"https://example.com/v1","param_x58":730,"field_y72":"admin@example.com","field_x02":560.82} | tool_call_bad_format | {
"type": "object",
"properties": {
"col_l70": {
"type": "string",
"format": "uri"
},
"param_x58": {
"type": "integer"
},
"field_y72": {
"type": "string",
"format": "email"
},
"field_x02": {
"type": "number"
},
"dim_u21": {
"type": "array... | <functioncall> query_port_status
{col_l70: "https://example.com/v1", param_x58: 730, field_y72: "admin@example.com", field_x02: 560.82} | Tool call has malformed arguments — unquoted keys in function parameters | {"col_l70":"https://example.com/v1","param_x58":730,"field_y72":"admin@example.com","field_x02":560.82} |
TASK repair_structured_output
SPEC
FIELD attr_g70 TYPE string REQUIRED no
FIELD attr_s09 TYPE string REQUIRED no
FIELD field_o51 TYPE null REQUIRED yes
FIELD param_k14 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD param_o44[].col_b46 TYPE string REQUIRED yes
FIELD param_o44[].prop_w45 TY... | {"attr_g70":"Berlin","field_o51":null,"param_k14":"level_2","param_o44":[{"col_b46":"2023-12-25","prop_w45":"2024-01-15","param_y99":"user@domain.com"},{"col_b46":"qux","prop_w45":"Santos","param_y99":"REV"},{"col_b46":"baz","param_y99":"Santos"},{"col_b46":"2023-12-25","param_y99":"inactive"}]} | extra_field | {
"type": "object",
"properties": {
"attr_g70": {
"type": "string"
},
"attr_s09": {
"type": "string"
},
"field_o51": {
"type": "null"
},
"param_k14": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
... | {"attr_g70": "Berlin", "field_o51": null, "param_k14": "level_2", "param_o44": [{"col_b46": "2023-12-25", "prop_w45": "2024-01-15", "param_y99": "user@domain.com"}, {"col_b46": "qux", "prop_w45": "Santos", "param_y99": "REV"}, {"col_b46": "baz", "param_y99": "Santos"}, {"col_b46": "2023-12-25", "param_y99": "inactive"}... | Unknown field 'extra_data_8707' not defined in schema | {"attr_g70":"Berlin","field_o51":null,"param_k14":"level_2","param_o44":[{"col_b46":"2023-12-25","prop_w45":"2024-01-15","param_y99":"user@domain.com"},{"col_b46":"qux","prop_w45":"Santos","param_y99":"REV"},{"col_b46":"baz","param_y99":"Santos"},{"col_b46":"2023-12-25","param_y99":"inactive"}]} |
TASK repair_structured_output
SPEC
FIELD col_x98 TYPE number REQUIRED no
FIELD attr_f73.val_h69 TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD attr_f73.dim_e61 TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD attr_f73.col_b37 TYPE string REQUIRED yes
FIELD attr_f73.key_h27 TYPE integer REQUIRED no
FIELD para... | {"col_x98":836.53,"param_s73":"cat_f"} | truncated_array | {
"type": "object",
"properties": {
"col_x98": {
"type": "number"
},
"attr_f73": {
"type": "object",
"properties": {
"val_h69": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"dim_e61": {
"... | {"col_x98":836.53,"param_s73":"cat_f" | Unexpected end of JSON input — truncated object | {"col_x98":836.53,"param_s73":"cat_f"} |
TASK repair_structured_output
SPEC
FIELD length TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD country TYPE string REQUIRED no
FIELD port_code TYPE integer REQUIRED no
FIELD run_id TYPE integer REQUIRED no
FIELD index TYPE string_email REQUIRED no
FIELD step TYPE number REQUIRED yes
FIELD longitude T... | {"length":"mode_c","run_id":472,"step":308.86,"longitude":420} | tool_call_python_syntax | {
"type": "object",
"properties": {
"length": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d"
]
},
"country": {
"type": "string"
},
"port_code": {
"type": "integer"
},
"run_id": {
"type": "integer"
... | lookup_customer(length='mode_c', run_id=472, step=308.86, longitude=420) | Tool call uses Python syntax instead of JSON | {"length":"mode_c","run_id":472,"step":308.86,"longitude":420} |
TASK repair_structured_output
SPEC
FIELD patient_id TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD frequency_hz TYPE string REQUIRED yes
FIELD coverage[].catalyst TYPE boolean REQUIRED yes
FIELD coverage[].timezone TYPE number REQUIRED no
FIELD coverage[].reagent TYPE integer REQUIRED no
FIEL... | {"patient_id":"heterozygous","frequency_hz":"bar","coverage":[{"catalyst":false,"timezone":736.7,"reagent":898,"features":"confirmed"}]} | tool_call_bad_format | {
"type": "object",
"properties": {
"patient_id": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"frequency_hz": {
"type": "string"
},
"coverage": {
"type": "array",
"items": {
"type": "object",
... | <functioncall> get_weather
{patient_id: "heterozygous", frequency_hz: "bar", coverage: [{catalyst: false, timezone: 736.7, reagent: 898, features: "confirmed"}]} | Tool call has malformed arguments — unquoted keys in function parameters | {"patient_id":"heterozygous","frequency_hz":"bar","coverage":[{"catalyst":false,"timezone":736.7,"reagent":898,"features":"confirmed"}]} |
TASK repair_structured_output
SPEC
FIELD key_y93.param_a61 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no
FIELD key_y93.col_t96 TYPE boolean REQUIRED yes
FIELD key_y93.key_r84 TYPE string REQUIRED no
FIELD col_k91 TYPE integer REQUIRED yes
FIELD param_y30 TYPE boolean REQUIRED no
... | {"key_y93":{"col_t96":false,"key_r84":"QC-07"},"col_k91":232,"param_y30":true,"col_b52":"This is a test value.","attr_a36":"pending"} | tool_call_text_mix | {
"type": "object",
"properties": {
"key_y93": {
"type": "object",
"properties": {
"param_a61": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e",
"option_f"
... | Processing the request now.
<tool_call name="validate_sample">
{"key_y93":{"col_t96":false,"key_r84":"QC-07"},"col_k91":232,"param_y30":true,"col_b52":"This is a test value.","attr_a36":"pending"}
</tool_call. | Agent response mixes reasoning text with tool call | {"key_y93":{"col_t96":false,"key_r84":"QC-07"},"col_k91":232,"param_y30":true,"col_b52":"This is a test value.","attr_a36":"pending"} |
TASK repair_structured_output
SPEC
FIELD website TYPE null REQUIRED yes
FIELD vessel_name TYPE string VALUES level_1|level_2|level_3 REQUIRED yes
FIELD transaction_id.dissolved_oxygen TYPE integer REQUIRED yes
FIELD transaction_id.bearing TYPE number REQUIRED yes
FIELD transaction_id.thumbnail TYPE string VALUES cat_a... | {"website":null,"vessel_name":"level_2","transaction_id":{"dissolved_oxygen":288,"bearing":343.69,"thumbnail":"cat_d"},"sensor_id":"mode_b"} | unquoted_keys | {
"type": "object",
"properties": {
"website": {
"type": "null"
},
"vessel_name": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3"
]
},
"transaction_id": {
"type": "object",
"properties": {
"dissolved_oxygen": {
... | {website:null,vessel_name:"level_2",transaction_id:{dissolved_oxygen:288,bearing:343.69,thumbnail:"cat_d"},sensor_id:"mode_b"} | Expecting property name enclosed in double quotes | {"website":null,"vessel_name":"level_2","transaction_id":{"dissolved_oxygen":288,"bearing":343.69,"thumbnail":"cat_d"},"sensor_id":"mode_b"} |
TASK repair_structured_output
SPEC
FIELD dissolved_oxygen TYPE integer REQUIRED yes
FIELD id TYPE integer REQUIRED yes
FIELD humidity_pct.items TYPE integer REQUIRED yes
FIELD humidity_pct.invoice_id TYPE string REQUIRED yes
FIELD humidity_pct.full_name TYPE string_email REQUIRED no
FIELD city TYPE null REQUIRED no
FI... | {"dissolved_oxygen":947,"id":268,"humidity_pct":{"items":237,"invoice_id":"This is a test value.","full_name":"info@test.io"},"city":null,"insurance_id":"EUR"} | agent_chain | {
"type": "object",
"properties": {
"dissolved_oxygen": {
"type": "integer"
},
"id": {
"type": "integer"
},
"humidity_pct": {
"type": "object",
"properties": {
"items": {
"type": "integer"
},
"invoice_id": {
"type": "string"
... | Let me check the system.
Action: query_port_status
Result: {"dissolved_oxygen": 947, "id": 268, "humidity_pct": {"items": 237, "invoice_id": "This is a test value.", "full_name": "info@test.io"}, "city": null}
Processing the request now.
Action: search
Result: | Agent multi-step chain with truncated tool output | {"dissolved_oxygen":947,"id":268,"humidity_pct":{"items":237,"invoice_id":"This is a test value.","full_name":"info@test.io"},"city":null,"insurance_id":"EUR"} |
TASK repair_structured_output
SPEC
FIELD voltage TYPE integer REQUIRED yes
FIELD latitude TYPE string REQUIRED no
FIELD total TYPE string REQUIRED yes
FIELD branch.medication TYPE string_date-time REQUIRED no
FIELD branch.weight TYPE string REQUIRED yes
FIELD branch.repository TYPE string REQUIRED no
FIELD branch.temp... | {"voltage":510,"latitude":"Jane","total":"user@domain.com","branch":{"medication":"2022-11-26T18:28:00Z","weight":"GRCh38","temp_celsius":"Charlie","features":false}} | extra_text_before | {
"type": "object",
"properties": {
"voltage": {
"type": "integer"
},
"latitude": {
"type": "string"
},
"total": {
"type": "string"
},
"branch": {
"type": "object",
"properties": {
"medication": {
"type": "string",
"format": "date... | Here is the response in the requested format:
{"voltage":510,"latitude":"Jane","total":"user@domain.com","branch":{"medication":"2022-11-26T18:28:00Z","weight":"GRCh38","temp_celsius":"Charlie","features":false}} | Output contains non-JSON text before the object | {"voltage":510,"latitude":"Jane","total":"user@domain.com","branch":{"medication":"2022-11-26T18:28:00Z","weight":"GRCh38","temp_celsius":"Charlie","features":false}} |
TASK repair_structured_output
SPEC
FIELD dim_q73 TYPE string REQUIRED no
FIELD prop_h50 TYPE string REQUIRED no
FIELD col_s85.attr_i28 TYPE string REQUIRED no
FIELD col_s85.field_q92 TYPE null REQUIRED yes
FIELD col_s85.val_s06[] TYPE integer REQUIRED yes
FIELD dim_h13.val_t51 TYPE boolean REQUIRED no
FIELD dim_h13.pr... | {"dim_q73":"chr1","prop_h50":"qux","col_s85":{"field_q92":null,"val_s06":[881,750,317,399]}} | missing_required | {
"type": "object",
"properties": {
"dim_q73": {
"type": "string"
},
"prop_h50": {
"type": "string"
},
"col_s85": {
"type": "object",
"properties": {
"attr_i28": {
"type": "string"
},
"field_q92": {
"type": "null"
},
... | {"dim_q73": "chr1", "prop_h50": "qux"} | Required field 'col_s85' is missing | {"dim_q73":"chr1","prop_h50":"qux","col_s85":{"field_q92":null,"val_s06":[881,750,317,399]}} |
TASK repair_structured_output
SPEC
FIELD phone.address TYPE integer REQUIRED yes
FIELD phone.maturity_date TYPE string REQUIRED yes
FIELD phone.sensor_id TYPE null REQUIRED no
FIELD phone.longitude TYPE string REQUIRED no
FIELD phone.trace_id TYPE integer REQUIRED no
FIELD phone.dissolved_oxygen TYPE boolean REQUIRED ... | {"phone":{"address":371,"maturity_date":"https://example.com","sensor_id":null,"trace_id":784},"subject":{"company":"type_b","lab_result":"mode_b","hazmat_code":"GRCh38","bill_of_lading":"mode_a","gene_id":78,"product_id":"mode_c"},"loan_amount":"admin@test.io","website":false} | thought_process | {
"type": "object",
"properties": {
"phone": {
"type": "object",
"properties": {
"address": {
"type": "integer"
},
"maturity_date": {
"type": "string"
},
"sensor_id": {
"type": "null"
},
"longitude": {
"t... | Let me analyze the request and generate the appropriate JSON.
The user wants a structured object with specific fields.
{"phone":{"address":371,"maturity_date":"https://example.com","sensor_id":null,"trace_id":784},"subject":{"company":"type_b","lab_result":"mode_b","hazmat_code":"GRCh38","bill_of_lading":"mode_a","gen... | Output contains chain-of-thought reasoning before JSON | {"phone":{"address":371,"maturity_date":"https://example.com","sensor_id":null,"trace_id":784},"subject":{"company":"type_b","lab_result":"mode_b","hazmat_code":"GRCh38","bill_of_lading":"mode_a","gene_id":78,"product_id":"mode_c"},"loan_amount":"admin@test.io","website":false} |
TASK repair_structured_output
SPEC
FIELD transaction_id TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD brake_pressure TYPE integer REQUIRED yes
FIELD score TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD credit_score TYPE integer REQUIRED no
FIELD span_id TYPE nu... | {"transaction_id":"frameshift","brake_pressure":523,"score":"homozygous","credit_score":7,"span_id":745.29} | agent_chain | {
"type": "object",
"properties": {
"transaction_id": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"brake_pressure": {
"type": "integer"
},
"score": {
"type": "string",
"enum": [
... | Let me check the system.
Action: call_variants
Result: {"brake_pressure": 523, "score": "homozygous", "credit_score": 7, "span_id": 745.29}
Processing the request now.
Action: process_payment
Result: | Agent multi-step chain with truncated tool output | {"transaction_id":"frameshift","brake_pressure":523,"score":"homozygous","credit_score":7,"span_id":745.29} |
TASK repair_structured_output
SPEC
FIELD col_l16 TYPE boolean REQUIRED yes
FIELD col_f19 TYPE string REQUIRED yes
FIELD param_q79 TYPE string REQUIRED no
FIELD attr_u46[] TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD col_t26[] TYPE string_date-time REQUIRED no
BROKEN_OUTPUT
{"col_l16":true,"col_f1... | {"col_l16":true,"col_f19":"QC-07","param_q79":"Diana","attr_u46":["type_c"]} | truncated_object | {
"type": "object",
"properties": {
"col_l16": {
"type": "boolean"
},
"col_f19": {
"type": "string"
},
"param_q79": {
"type": "string"
},
"attr_u46": {
"type": "array",
"items": {
"type": "string",
"enum": [
"type_a",
"typ... | {"col_l16":true,"col_f19":"QC-07","param_q79":"Diana","attr_u46":["type_c"] | Unexpected end of JSON input — truncated object | {"col_l16":true,"col_f19":"QC-07","param_q79":"Diana","attr_u46":["type_c"]} |
TASK repair_structured_output
SPEC
FIELD prop_d72 TYPE string REQUIRED yes
FIELD prop_b03 TYPE integer REQUIRED no
FIELD prop_y60 TYPE string_date-time REQUIRED yes
FIELD col_q96.dim_z73.col_t90 TYPE string_date-time REQUIRED no
FIELD col_q96.dim_z73.prop_x06 TYPE string REQUIRED no
FIELD col_q96.dim_z73.key_s69 TYPE ... | {"prop_d72":"chr1","prop_b03":991,"prop_y60":"2021-06-19T07:54:00Z","col_q96":{"dim_z73":{"param_q06":null,"val_m12":"option_d","key_s45":915,"val_y95":"pending"},"field_o61":{"field_o42":"new","prop_v69":"basic","col_e49":798,"dim_p23":"Smith","prop_x43":true,"key_t91":"level_1","val_z75":541.62},"prop_w59":{"attr_a63... | null_required | {
"type": "object",
"properties": {
"prop_d72": {
"type": "string"
},
"prop_b03": {
"type": "integer"
},
"prop_y60": {
"type": "string",
"format": "date-time"
},
"col_q96": {
"type": "object",
"properties": {
"dim_z73": {
"type": "obj... | {"prop_d72": null, "prop_b03": 991, "prop_y60": "2021-06-19T07:54:00Z", "col_q96": {"dim_z73": {"param_q06": null, "val_m12": "option_d", "key_s45": 915, "val_y95": "pending"}, "field_o61": {"field_o42": "new", "prop_v69": "basic", "col_e49": 798, "dim_p23": "Smith", "prop_x43": true, "key_t91": "level_1", "val_z75": 5... | Required field 'prop_d72' is null | {"prop_d72":"chr1","prop_b03":991,"prop_y60":"2021-06-19T07:54:00Z","col_q96":{"dim_z73":{"param_q06":null,"val_m12":"option_d","key_s45":915,"val_y95":"pending"},"field_o61":{"field_o42":"new","prop_v69":"basic","col_e49":798,"dim_p23":"Smith","prop_x43":true,"key_t91":"level_1","val_z75":541.62},"prop_w59":{"attr_a63... |
TASK repair_structured_output
SPEC
FIELD gene_id TYPE number REQUIRED yes
FIELD deploy_target TYPE integer REQUIRED no
FIELD port_code TYPE string_date-time REQUIRED yes
FIELD category[].options TYPE string REQUIRED no
FIELD category[].end_date TYPE number REQUIRED yes
FIELD category[].berth_slot TYPE integer REQUIRED... | {"gene_id":183.82,"deploy_target":519,"port_code":"2020-07-19T11:26:00Z","category":[{"end_date":943.18,"berth_slot":49},{"options":"test","end_date":193.9,"berth_slot":918}]} | extra_text_before | {
"type": "object",
"properties": {
"gene_id": {
"type": "number"
},
"deploy_target": {
"type": "integer"
},
"port_code": {
"type": "string",
"format": "date-time"
},
"category": {
"type": "array",
"items": {
"type": "object",
"properti... | Sensor output follows:
{"gene_id":183.82,"deploy_target":519,"port_code":"2020-07-19T11:26:00Z","category":[{"end_date":943.18,"berth_slot":49},{"options":"test","end_date":193.9,"berth_slot":918}]} | Output contains non-JSON text before the object | {"gene_id":183.82,"deploy_target":519,"port_code":"2020-07-19T11:26:00Z","category":[{"end_date":943.18,"berth_slot":49},{"options":"test","end_date":193.9,"berth_slot":918}]} |
TASK repair_structured_output
SPEC
FIELD lab_result TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD dissolved_oxygen TYPE string REQUIRED yes
FIELD medication TYPE boolean REQUIRED no
FIELD salinity[].phone TYPE integer REQUIRED no
FIELD salinity[].country TYPE boolean REQUIRED yes
FIELD salinity[].ph_level T... | {"lab_result":"editor","dissolved_oxygen":"Sao Paulo","salinity":[{"phone":64,"country":true,"email":720.86,"tax":"arctic"},{"phone":559,"country":false,"ph_level":false,"email":734.8,"wavelength":"Charlie"}],"ph_level":[{"discount":false,"price":680,"repository":629.57,"organism":"pro","created_at":false},{"price":263... | truncated_object | {
"type": "object",
"properties": {
"lab_result": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"dissolved_oxygen": {
"type": "string"
},
"medication": {
"type": "boolean"
},
"salinity": {
"type": "array",
... | {"lab_result":"editor","dissolved_oxygen":"Sao Paulo","salinity":[{"phone":64,"country":true,"email":720.86,"tax":"arctic"},{"phone":559,"country":false,"ph_level":false,"email":734.8,"wavelength":"Charlie"}],"ph_level":[{"discount":false,"price":680,"repository":629.57,"organism":"pro","created_at":false},{"price":263... | Unexpected end of JSON input — truncated object | {"lab_result":"editor","dissolved_oxygen":"Sao Paulo","salinity":[{"phone":64,"country":true,"email":720.86,"tax":"arctic"},{"phone":559,"country":false,"ph_level":false,"email":734.8,"wavelength":"Charlie"}],"ph_level":[{"discount":false,"price":680,"repository":629.57,"organism":"pro","created_at":false},{"price":263... |
TASK repair_structured_output
SPEC
FIELD chromosome TYPE string_email REQUIRED no
FIELD notes TYPE integer REQUIRED no
FIELD duration_ms TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD lane TYPE string_email REQUIRED no
FIELD port_code TYPE integer REQUIRED yes
FIELD feedback TYPE string VALUES level_1|leve... | {"chromosome":"admin@domain.org","notes":553,"duration_ms":"type_b","lane":"user@domain.org","port_code":755,"feedback":"level_2"} | agent_chain | {
"type": "object",
"properties": {
"chromosome": {
"type": "string",
"format": "email"
},
"notes": {
"type": "integer"
},
"duration_ms": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"lane": {
"type": "s... | I need to look up the information first.
Action: create_order
Result: {"chromosome": "admin@domain.org", "notes": 553, "duration_ms": "type_b", "lane": "user@domain.org", "feedback": "level_2"}
Processing the request now.
Action: annotate_mutation
Result: | Agent multi-step chain with truncated tool output | {"chromosome":"admin@domain.org","notes":553,"duration_ms":"type_b","lane":"user@domain.org","port_code":755,"feedback":"level_2"} |
TASK repair_structured_output
SPEC
FIELD dim_q35 TYPE number REQUIRED yes
FIELD col_s25 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD dim_o00.param_u65 TYPE integer REQUIRED no
FIELD dim_o00.col_t15 TYPE integer REQUIRED no
FIELD dim_o00.field_x56 TYPE string REQUIRED no
FIELD dim_o00.col_x4... | {"dim_q35":698.97,"col_s25":"option_d","dim_p77":false} | markdown_fences | {
"type": "object",
"properties": {
"dim_q35": {
"type": "number"
},
"col_s25": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d"
]
},
"dim_o00": {
"type": "object",
"properties": {
"param_u65"... | ```json
{"dim_q35":698.97,"col_s25":"option_d","dim_p77":false}
``` | Output contains markdown code fences | {"dim_q35":698.97,"col_s25":"option_d","dim_p77":false} |
TASK repair_structured_output
SPEC
FIELD field_h77 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD field_w95 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD key_b98.field_q21 TYPE string REQUIRED yes
FIELD key_b98.col_v93 TYPE string_email REQUIRED yes
FIELD key_b98.prop_c06 TYPE boolean REQUIRED ... | {"field_h77":"viewer","field_w95":"xl","key_b98":{"field_q21":"Alice","col_v93":"info@domain.org","prop_c06":true,"param_e78":"https://api.org/data","field_s63":null},"param_o53":"Paris","col_u84":"underway","val_i75":"inactive"} | unquoted_keys | {
"type": "object",
"properties": {
"field_h77": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"field_w95": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"key_b98": ... | {field_h77:"viewer",field_w95:"xl",key_b98:{field_q21:"Alice",col_v93:"info@domain.org",prop_c06:true,param_e78:"https://api.org/data",field_s63:null},param_o53:"Paris",col_u84:"underway",val_i75:"inactive"} | Expecting property name enclosed in double quotes | {"field_h77":"viewer","field_w95":"xl","key_b98":{"field_q21":"Alice","col_v93":"info@domain.org","prop_c06":true,"param_e78":"https://api.org/data","field_s63":null},"param_o53":"Paris","col_u84":"underway","val_i75":"inactive"} |
TASK repair_structured_output
SPEC
FIELD val_o63.attr_n07 TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD val_o63.attr_u14 TYPE string REQUIRED yes
FIELD val_o63.val_v77 TYPE string REQUIRED no
FIELD val_o63.col_p02 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD val_o63.dim_n55.dim_... | {"val_o63":{"attr_n07":"level_1","attr_u14":"https://example.com","col_p02":"nonsense"},"prop_w17":507.17,"prop_w65":43,"param_l71":"Jane","attr_u44":369} | extra_field | {
"type": "object",
"properties": {
"val_o63": {
"type": "object",
"properties": {
"attr_n07": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"attr_u14": {
"type": "string"
},
"val_v77": ... | {"val_o63": {"attr_n07": "level_1", "attr_u14": "https://example.com", "col_p02": "nonsense"}, "prop_w17": 507.17, "prop_w65": 43, "param_l71": "Jane", "attr_u44": 369, "extra_value_9852": true} | Unknown field 'extra_value_9852' not defined in schema | {"val_o63":{"attr_n07":"level_1","attr_u14":"https://example.com","col_p02":"nonsense"},"prop_w17":507.17,"prop_w65":43,"param_l71":"Jane","attr_u44":369} |
TASK repair_structured_output
SPEC
FIELD position TYPE number REQUIRED no
FIELD city TYPE integer REQUIRED yes
FIELD transaction_id TYPE string REQUIRED no
FIELD company[] TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD section[].date TYPE number REQUIRED yes
FIELD section[].product_id TYPE str... | {"position":671.07,"city":582,"transaction_id":"foo","company":["mode_a","mode_c","mode_c"],"section":[{"date":691.75,"product_id":"ops@example.com","phenotype":[718,389,829,701]},{"date":780.02,"product_id":"user@test.io","order_id":"A short description.","phenotype":[847,123,238]}]} | tool_call_bad_format | {
"type": "object",
"properties": {
"position": {
"type": "number"
},
"city": {
"type": "integer"
},
"transaction_id": {
"type": "string"
},
"company": {
"type": "array",
"items": {
"type": "string",
"enum": [
"mode_a",
"m... | <functioncall> calculate_docking_fee
{position: 671.07, city: 582, transaction_id: "foo", company: ["mode_a", "mode_c", "mode_c"], section: [{date: 691.75, product_id: "ops@example.com", phenotype: [718, 389, 829, 701]}, {date: 780.02, product_id: "user@test.io", order_id: "A short description.", phenotype: [847, 123, ... | Tool call has malformed arguments — unquoted keys in function parameters | {"position":671.07,"city":582,"transaction_id":"foo","company":["mode_a","mode_c","mode_c"],"section":[{"date":691.75,"product_id":"ops@example.com","phenotype":[718,389,829,701]},{"date":780.02,"product_id":"user@test.io","order_id":"A short description.","phenotype":[847,123,238]}]} |
TASK repair_structured_output
SPEC
FIELD attr_n73 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD param_v50 TYPE string VALUES single|married|divorced REQUIRED no
FIELD prop_y96.param_c57 TYPE string_date-time REQUIRED no
FIELD prop_y96.dim_r89 TYPE integer REQUIRED yes
FIELD prop_y96.fiel... | {"attr_n73":"synonymous","param_v50":"married","prop_y96":{"param_c57":"2023-12-21T06:50:00Z","dim_r89":298,"field_p11":218,"param_w35":"2024-06-30","col_z32":"completed"},"field_e68":913} | thought_process | {
"type": "object",
"properties": {
"attr_n73": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"param_v50": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
... | I need to check the port status before assigning the berth.
Let me verify the cargo manifest.
{"attr_n73":"synonymous","param_v50":"married","prop_y96":{"param_c57":"2023-12-21T06:50:00Z","dim_r89":298,"field_p11":218,"param_w35":"2024-06-30","col_z32":"completed"},"field_e68":913} | Output contains chain-of-thought reasoning before JSON | {"attr_n73":"synonymous","param_v50":"married","prop_y96":{"param_c57":"2023-12-21T06:50:00Z","dim_r89":298,"field_p11":218,"param_w35":"2024-06-30","col_z32":"completed"},"field_e68":913} |
TASK repair_structured_output
SPEC
FIELD dim_y47 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD key_l97 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD val_p88 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD attr_a37 TYPE string REQUIRED no
FIELD dim_n02 TYPE string REQUIRED... | {"key_l97":"push","val_p88":"resolved","val_f59":"QC-07","dim_b38":"quux","col_h32":146} | tool_call_python_syntax | {
"type": "object",
"properties": {
"dim_y47": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"key_l97": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"val... | search(key_l97='push', val_p88='resolved', val_f59='QC-07', dim_b38='quux', col_h32=146) | Tool call uses Python syntax instead of JSON | {"key_l97":"push","val_p88":"resolved","val_f59":"QC-07","dim_b38":"quux","col_h32":146} |
TASK repair_structured_output
SPEC
FIELD dim_t52 TYPE string REQUIRED yes
FIELD val_v56 TYPE string REQUIRED no
FIELD prop_g69.col_l72 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD prop_g69.dim_n86 TYPE string VALUES single|married|divorced REQUIRED no
FIELD prop_g69.field_q57 TYPE string VAL... | {"dim_t52":"Johnson","prop_g69":{"col_l72":"returned","dim_n86":"single","field_q57":"white","col_z71":763,"prop_x48":"published"}} | missing_bracket | {
"type": "object",
"properties": {
"dim_t52": {
"type": "string"
},
"val_v56": {
"type": "string"
},
"prop_g69": {
"type": "object",
"properties": {
"col_l72": {
"type": "string",
"enum": [
"new",
"in_transit",
... | {"dim_t52":"Johnson","prop_g69":{"col_l72":"returned","dim_n86":"single","field_q57":"white","col_z71":763,"prop_x48":"published"}} | Missing closing bracket | {"dim_t52":"Johnson","prop_g69":{"col_l72":"returned","dim_n86":"single","field_q57":"white","col_z71":763,"prop_x48":"published"}} |
TASK repair_structured_output
SPEC
FIELD end_date TYPE integer REQUIRED no
FIELD yield_pct TYPE string REQUIRED no
FIELD status TYPE string REQUIRED no
FIELD published TYPE string REQUIRED yes
FIELD branch TYPE number REQUIRED no
FIELD image_url TYPE string REQUIRED no
FIELD position TYPE number REQUIRED no
BROKEN_OU... | {"end_date":332,"yield_pct":"example","published":"cancelled","image_url":"Smith"} | number_with_unit | {
"type": "object",
"properties": {
"end_date": {
"type": "integer"
},
"yield_pct": {
"type": "string"
},
"status": {
"type": "string"
},
"published": {
"type": "string"
},
"branch": {
"type": "number"
},
"image_url": {
"type": "string"... | {"end_date": "332kg", "yield_pct": "example", "published": "cancelled", "image_url": "Smith"} | Field 'end_date' must be number, got string with unit | {"end_date":332,"yield_pct":"example","published":"cancelled","image_url":"Smith"} |
TASK repair_structured_output
SPEC
FIELD width TYPE integer REQUIRED yes
FIELD features TYPE boolean REQUIRED yes
FIELD created_at TYPE integer REQUIRED no
FIELD status.dosage TYPE string REQUIRED yes
FIELD status.enabled TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD status.first_name.order_id TYPE string R... | {"width":996,"features":false,"created_at":727,"status":{"dosage":"2023-12-25","enabled":"JPY","first_name":{"shipping":"cat_a","index":474,"hazmat_code":"cat_b"},"feedback":{"trace_id":"synonymous","temp_celsius":"coastal","enabled":"admin@domain.org"}},"turbidity":"2021-03-02T05:05:00Z"} | markdown_fences | {
"type": "object",
"properties": {
"width": {
"type": "integer"
},
"features": {
"type": "boolean"
},
"created_at": {
"type": "integer"
},
"status": {
"type": "object",
"properties": {
"dosage": {
"type": "string"
},
"enabl... | ```json
{"width":996,"features":false,"created_at":727,"status":{"dosage":"2023-12-25","enabled":"JPY","first_name":{"shipping":"cat_a","index":474,"hazmat_code":"cat_b"},"feedback":{"trace_id":"synonymous","temp_celsius":"coastal","enabled":"admin@domain.org"}},"turbidity":"2021-03-02T05:05:00Z"}
``` | Output contains markdown code fences | {"width":996,"features":false,"created_at":727,"status":{"dosage":"2023-12-25","enabled":"JPY","first_name":{"shipping":"cat_a","index":474,"hazmat_code":"cat_b"},"feedback":{"trace_id":"synonymous","temp_celsius":"coastal","enabled":"admin@domain.org"}},"turbidity":"2021-03-02T05:05:00Z"} |
TASK repair_structured_output
SPEC
FIELD attr_z82 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD col_y36 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD dim_x46 TYPE string VALUES red|blue|green|black|white REQUIRED yes
BROKEN_OUTPUT
```json
{"attr_z82":"nonsense","col_y36":"GB... | {"attr_z82":"nonsense","col_y36":"GBP","dim_x46":"red"} | markdown_fences | {
"type": "object",
"properties": {
"attr_z82": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"col_y36": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
... | ```json
{"attr_z82":"nonsense","col_y36":"GBP","dim_x46":"red"}
``` | Output contains markdown code fences | {"attr_z82":"nonsense","col_y36":"GBP","dim_x46":"red"} |
TASK repair_structured_output
SPEC
FIELD port_code TYPE string REQUIRED no
FIELD brake_pressure TYPE boolean REQUIRED no
FIELD fleet_number TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD yield_pct TYPE boolean REQUIRED no
FIELD published TYPE integer REQUIRED yes
FIELD comments TYPE integ... | {"port_code":"REV","brake_pressure":false,"yield_pct":true,"published":740,"comments":500} | truncated_array | {
"type": "object",
"properties": {
"port_code": {
"type": "string"
},
"brake_pressure": {
"type": "boolean"
},
"fleet_number": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"... | {"port_code":"REV","brake_pressure":false,"yield_pct":true,"published":740,"comments":500 | Unexpected end of JSON input — truncated object | {"port_code":"REV","brake_pressure":false,"yield_pct":true,"published":740,"comments":500} |
TASK repair_structured_output
SPEC
FIELD user_id TYPE string REQUIRED yes
FIELD bill_of_lading TYPE string REQUIRED no
FIELD ph_level TYPE string REQUIRED yes
FIELD last_name[] TYPE integer REQUIRED yes
BROKEN_OUTPUT
{'user_id':'bar','ph_level':'https://api.example.com/v1','last_name':[557,740,614]} | {"user_id":"bar","ph_level":"https://api.example.com/v1","last_name":[557,740,614]} | single_quotes | {
"type": "object",
"properties": {
"user_id": {
"type": "string"
},
"bill_of_lading": {
"type": "string"
},
"ph_level": {
"type": "string"
},
"last_name": {
"type": "array",
"items": {
"type": "integer"
}
}
},
"required": [
"ph_lev... | {'user_id':'bar','ph_level':'https://api.example.com/v1','last_name':[557,740,614]} | Expecting property name enclosed in double quotes | {"user_id":"bar","ph_level":"https://api.example.com/v1","last_name":[557,740,614]} |
TASK repair_structured_output
SPEC
FIELD section TYPE string REQUIRED no
FIELD maturity_date TYPE integer REQUIRED no
FIELD tags TYPE boolean REQUIRED yes
FIELD language TYPE integer REQUIRED no
FIELD image_url TYPE string REQUIRED yes
FIELD total TYPE number REQUIRED yes
BROKEN_OUTPUT
{"maturity_date": 424, "tags": ... | {"maturity_date":424,"tags":true,"image_url":"A short description.","total":979.02} | boolean_as_string | {
"type": "object",
"properties": {
"section": {
"type": "string"
},
"maturity_date": {
"type": "integer"
},
"tags": {
"type": "boolean"
},
"language": {
"type": "integer"
},
"image_url": {
"type": "string"
},
"total": {
"type": "number... | {"maturity_date": 424, "tags": "no", "image_url": "A short description.", "total": 979.02} | Field 'tags' must be boolean, got string | {"maturity_date":424,"tags":true,"image_url":"A short description.","total":979.02} |
TASK repair_structured_output
SPEC
FIELD prop_s39 TYPE boolean REQUIRED no
FIELD key_o97 TYPE string REQUIRED no
FIELD param_c45 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED no
FIELD field_u05 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"key_o97": "Oliveira", "param_c45": "type_d"} | {"key_o97":"Oliveira","param_c45":"type_d","field_u05":111} | missing_required | {
"type": "object",
"properties": {
"prop_s39": {
"type": "boolean"
},
"key_o97": {
"type": "string"
},
"param_c45": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e",
"type_f"
]
},
... | {"key_o97": "Oliveira", "param_c45": "type_d"} | Required field 'field_u05' is missing | {"key_o97":"Oliveira","param_c45":"type_d","field_u05":111} |
TASK repair_structured_output
SPEC
FIELD invoice_id TYPE string_date-time REQUIRED yes
FIELD vessel_name TYPE number REQUIRED no
FIELD humidity_pct TYPE string REQUIRED yes
FIELD amount.commit_hash TYPE string_uri REQUIRED yes
FIELD amount.crew_id TYPE string REQUIRED yes
FIELD amount.paragraph TYPE string VALUES leve... | {"invoice_id":"2024-07-27T07:11:00Z","vessel_name":707.44,"humidity_pct":"bar"} | truncated_array | {
"type": "object",
"properties": {
"invoice_id": {
"type": "string",
"format": "date-time"
},
"vessel_name": {
"type": "number"
},
"humidity_pct": {
"type": "string"
},
"amount": {
"type": "object",
"properties": {
"commit_hash": {
"... | {"invoice_id":"2024-07-27T07:11:00Z","vessel_name":707.44,"humidity_pct":"bar" | Unexpected end of JSON input — truncated object | {"invoice_id":"2024-07-27T07:11:00Z","vessel_name":707.44,"humidity_pct":"bar"} |
TASK repair_structured_output
SPEC
FIELD attr_w89 TYPE number REQUIRED no
FIELD prop_o47 TYPE string REQUIRED yes
FIELD key_s23 TYPE string REQUIRED yes
FIELD col_t85 TYPE boolean REQUIRED yes
FIELD param_w16 TYPE string_email REQUIRED no
FIELD attr_t69 TYPE string REQUIRED no
BROKEN_OUTPUT
Tool: check_availability
P... | {"attr_w89":933.42,"prop_o47":"2024-06-30","key_s23":"Charlie","col_t85":false,"param_w16":"test@domain.org","attr_t69":"Luis"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"attr_w89": {
"type": "number"
},
"prop_o47": {
"type": "string"
},
"key_s23": {
"type": "string"
},
"col_t85": {
"type": "boolean"
},
"param_w16": {
"type": "string",
"format": "email"
},
"attr_t69":... | Tool: check_availability
Params: {"attr_w89": 933.42, "prop_o47": "2024-06-30", "col_t85": false, "param_w16": "test@domain.org", "attr_t69": "Luis", "key_s23_new": "Charlie"} | Agent used wrong parameter name 'key_s23_new' instead of 'key_s23' | {"attr_w89":933.42,"prop_o47":"2024-06-30","key_s23":"Charlie","col_t85":false,"param_w16":"test@domain.org","attr_t69":"Luis"} |
TASK repair_structured_output
SPEC
FIELD dim_g86 TYPE string REQUIRED yes
FIELD key_k61 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD val_f29 TYPE number REQUIRED no
FIELD attr_z70 TYPE string REQUIRED yes
FIELD param_e01 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no
FIELD field_y90.d... | {"dim_g86":"demo","key_k61":"mode_c","attr_z70":"active","param_e01":"cat_e","key_x96":"Maria"} | invalid_enum | {
"type": "object",
"properties": {
"dim_g86": {
"type": "string"
},
"key_k61": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d"
]
},
"val_f29": {
"type": "number"
},
"attr_z70": {
"type": "string"
... | {"dim_g86": "demo", "key_k61": "mode_c", "attr_z70": "active", "param_e01": "invalid_choice_188", "key_x96": "Maria"} | Field 'param_e01' has invalid enum value 'invalid_choice_188', expected one of ['cat_a', 'cat_b', 'cat_c', 'cat_d', 'cat_e'] | {"dim_g86":"demo","key_k61":"mode_c","attr_z70":"active","param_e01":"cat_e","key_x96":"Maria"} |
TASK repair_structured_output
SPEC
FIELD discount TYPE string VALUES single|married|divorced REQUIRED no
FIELD consignee TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD item_id TYPE number REQUIRED no
FIELD tile TYPE integer REQUIRED no
FIELD message TYPE integer REQUIRED yes
FIELD url TY... | {"discount":"married","consignee":"synonymous","item_id":246.67,"tile":486,"message":368,"url":"RTG-04"} | missing_required | {
"type": "object",
"properties": {
"discount": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"consignee": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
... | {"discount": "married", "item_id": 246.67, "tile": 486, "message": 368, "url": "RTG-04"} | Required field 'consignee' is missing | {"discount":"married","consignee":"synonymous","item_id":246.67,"tile":486,"message":368,"url":"RTG-04"} |
TASK repair_structured_output
SPEC
FIELD prop_d39 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD val_r99 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD col_q12 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD field_b30 TYPE string_uri REQUIRED no
FIELD attr_z43... | {"prop_d39":"free","col_q12":"USD","field_b30":"https://www.io/v1","attr_z43":"in_transit"} | extra_text_after | {
"type": "object",
"properties": {
"prop_d39": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"val_r99": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escal... | {"prop_d39":"free","col_q12":"USD","field_b30":"https://www.io/v1","attr_z43":"in_transit"}
Hope this helps! | Output contains non-JSON text after the object | {"prop_d39":"free","col_q12":"USD","field_b30":"https://www.io/v1","attr_z43":"in_transit"} |
TASK repair_structured_output
SPEC
FIELD active TYPE boolean REQUIRED yes
FIELD phone TYPE string_uri REQUIRED no
FIELD batch_code.aligned_pct TYPE string REQUIRED yes
FIELD batch_code.voltage.discount TYPE string REQUIRED no
FIELD batch_code.voltage.allele TYPE string REQUIRED yes
FIELD batch_code.voltage.altitude TY... | {"active":false,"phone":"https://data.io/api","batch_code":{"aligned_pct":"London","voltage":{"allele":"Sao Paulo","altitude":"sms","crew_id":null},"priority":{"procedure_code":"Bob","salinity":"New York","section":"mode_d","version":"ops@example.com"}},"footnote":"open"} | wrong_type | {
"type": "object",
"properties": {
"active": {
"type": "boolean"
},
"phone": {
"type": "string",
"format": "uri"
},
"batch_code": {
"type": "object",
"properties": {
"aligned_pct": {
"type": "string"
},
"voltage": {
"type... | {"active": "\"no\"", "phone": "https://data.io/api", "batch_code": {"aligned_pct": "London", "voltage": {"allele": "Sao Paulo", "altitude": "sms", "crew_id": null}, "priority": {"procedure_code": "Bob", "salinity": "New York", "section": "mode_d", "version": "ops@example.com"}}, "footnote": "open"} | Field 'active' must be boolean, got string | {"active":false,"phone":"https://data.io/api","batch_code":{"aligned_pct":"London","voltage":{"allele":"Sao Paulo","altitude":"sms","crew_id":null},"priority":{"procedure_code":"Bob","salinity":"New York","section":"mode_d","version":"ops@example.com"}},"footnote":"open"} |
TASK repair_structured_output
SPEC
FIELD port_code TYPE string REQUIRED yes
FIELD yield_pct TYPE boolean REQUIRED no
FIELD tile TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD manifest_ref TYPE boolean REQUIRED yes
FIELD city TYPE integer REQUIRED no
FIELD id TYPE string REQUIRED no
BROKEN_OUTPUT
... | {"port_code":"John","yield_pct":false,"tile":"reliable","manifest_ref":true,"city":585,"id":"Hapag-Lloyd-Express"} | thought_process | {
"type": "object",
"properties": {
"port_code": {
"type": "string"
},
"yield_pct": {
"type": "boolean"
},
"tile": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"manifest_ref": {
"type": "boolean"
... | Let me analyze the request and generate the appropriate JSON.
The user wants a structured object with specific fields.
{"port_code":"John","yield_pct":false,"tile":"reliable","manifest_ref":true,"city":585,"id":"Hapag-Lloyd-Express"} | Output contains chain-of-thought reasoning before JSON | {"port_code":"John","yield_pct":false,"tile":"reliable","manifest_ref":true,"city":585,"id":"Hapag-Lloyd-Express"} |
TASK repair_structured_output
SPEC
FIELD key_c22 TYPE string REQUIRED no
FIELD attr_u08 TYPE boolean REQUIRED yes
FIELD prop_m07 TYPE string REQUIRED yes
FIELD dim_q49 TYPE string REQUIRED yes
FIELD param_n61.col_t69 TYPE null REQUIRED yes
FIELD param_n61.field_l41.field_i25 TYPE boolean REQUIRED yes
FIELD param_n61.f... | {"attr_u08":false,"prop_m07":"Maria","dim_q49":"Maria"} | tool_call_bad_format | {
"type": "object",
"properties": {
"key_c22": {
"type": "string"
},
"attr_u08": {
"type": "boolean"
},
"prop_m07": {
"type": "string"
},
"dim_q49": {
"type": "string"
},
"param_n61": {
"type": "object",
"properties": {
"col_t69": {
... | <functioncall> search
{attr_u08: false, prop_m07: "Maria", dim_q49: "Maria"} | Tool call has malformed arguments — unquoted keys in function parameters | {"attr_u08":false,"prop_m07":"Maria","dim_q49":"Maria"} |
TASK repair_structured_output
SPEC
FIELD key_o80 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD dim_w82 TYPE integer REQUIRED no
FIELD val_b27 TYPE string REQUIRED no
FIELD attr_y36.param_k68 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD attr_y36.param_x05 TYPE string REQUIRED ye... | {"key_o80":"arctic","dim_w82":839,"val_b27":"quux","attr_y36":{"param_k68":"red","param_x05":"world","prop_q31":[{"key_v17":274,"attr_m12":"Berlin","key_d23":"active","dim_k40":"https://example.com/api"},{"key_v17":838,"key_d23":"active","dim_k40":"https://www.com/v1"}]}} | extra_field | {
"type": "object",
"properties": {
"key_o80": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"dim_w82": {
"type": "integer"
},
"val_b27": {
"type": "string"
},
"attr_y36": {
"type": "object"... | {"key_o80": "arctic", "dim_w82": 839, "val_b27": "quux", "attr_y36": {"param_k68": "red", "param_x05": "world", "prop_q31": [{"key_v17": 274, "attr_m12": "Berlin", "key_d23": "active", "dim_k40": "https://example.com/api"}, {"key_v17": 838, "key_d23": "active", "dim_k40": "https://www.com/v1"}]}, "extra_value_9541": 42... | Unknown field 'extra_value_9541' not defined in schema | {"key_o80":"arctic","dim_w82":839,"val_b27":"quux","attr_y36":{"param_k68":"red","param_x05":"world","prop_q31":[{"key_v17":274,"attr_m12":"Berlin","key_d23":"active","dim_k40":"https://example.com/api"},{"key_v17":838,"key_d23":"active","dim_k40":"https://www.com/v1"}]}} |
TASK repair_structured_output
SPEC
FIELD bearing TYPE string REQUIRED yes
FIELD freight_class TYPE number REQUIRED no
FIELD bed_number[].brake_pressure TYPE string REQUIRED no
FIELD bed_number[].isotope TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD bed_number[].notes TYPE string REQUIRED yes
FIELD bed... | {"bearing":"A short description.","freight_class":115.68,"start_date":["2023-01-04T08:28:00Z"]} | agent_chain | {
"type": "object",
"properties": {
"bearing": {
"type": "string"
},
"freight_class": {
"type": "number"
},
"bed_number": {
"type": "array",
"items": {
"type": "object",
"properties": {
"brake_pressure": {
"type": "string"
}... | I need to look up the information first.
Action: track_vessel
Result: {"bearing": "A short description.", "freight_class": 115.68}
I'll query our database.
Action: process_payment
Result: | Agent multi-step chain with truncated tool output | {"bearing":"A short description.","freight_class":115.68,"start_date":["2023-01-04T08:28:00Z"]} |
TASK repair_structured_output
SPEC
FIELD dim_c19 TYPE string REQUIRED yes
FIELD col_w76 TYPE integer REQUIRED no
FIELD attr_h44 TYPE number REQUIRED yes
FIELD param_j23 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
BROKEN_OUTPUT
{dim_c19:"Paris",col_w76:616,attr_h44:940.21,param_j23:"framesh... | {"dim_c19":"Paris","col_w76":616,"attr_h44":940.21,"param_j23":"frameshift"} | unquoted_keys | {
"type": "object",
"properties": {
"dim_c19": {
"type": "string"
},
"col_w76": {
"type": "integer"
},
"attr_h44": {
"type": "number"
},
"param_j23": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"framesh... | {dim_c19:"Paris",col_w76:616,attr_h44:940.21,param_j23:"frameshift"} | Expecting property name enclosed in double quotes | {"dim_c19":"Paris","col_w76":616,"attr_h44":940.21,"param_j23":"frameshift"} |
TASK repair_structured_output
SPEC
FIELD attr_e06 TYPE string REQUIRED yes
FIELD field_z18 TYPE boolean REQUIRED yes
FIELD prop_i58 TYPE integer REQUIRED no
FIELD field_g52 TYPE number REQUIRED yes
FIELD col_m28[] TYPE null REQUIRED no
BROKEN_OUTPUT
{attr_e06:"Charlie",field_z18:false,field_g52:725.29,col_m28:[null,n... | {"attr_e06":"Charlie","field_z18":false,"field_g52":725.29,"col_m28":[null,null,null,null]} | unquoted_keys | {
"type": "object",
"properties": {
"attr_e06": {
"type": "string"
},
"field_z18": {
"type": "boolean"
},
"prop_i58": {
"type": "integer"
},
"field_g52": {
"type": "number"
},
"col_m28": {
"type": "array",
"items": {
"type": "null"
... | {attr_e06:"Charlie",field_z18:false,field_g52:725.29,col_m28:[null,null,null,null]} | Expecting property name enclosed in double quotes | {"attr_e06":"Charlie","field_z18":false,"field_g52":725.29,"col_m28":[null,null,null,null]} |
TASK repair_structured_output
SPEC
FIELD lab_result TYPE integer REQUIRED yes
FIELD bill_of_lading.bearing TYPE boolean REQUIRED yes
FIELD bill_of_lading.start_date TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD bill_of_lading.barcode TYPE number REQUIRED yes
FIELD bill_of_lading.berth_slot TY... | {"lab_result":97,"bill_of_lading":{"bearing":true,"start_date":"delivered","barcode":799.3,"berth_slot":970,"half_life":false,"width":false,"ward":"bar"},"allele":"level_2","first_name":{"length":"GRCh38","phone":true,"quantity":931.74,"gene_id":"active"}} | unquoted_keys | {
"type": "object",
"properties": {
"lab_result": {
"type": "integer"
},
"bill_of_lading": {
"type": "object",
"properties": {
"bearing": {
"type": "boolean"
},
"start_date": {
"type": "string",
"enum": [
"new",
... | {lab_result:97,bill_of_lading:{bearing:true,start_date:"delivered",barcode:799.3,berth_slot:970,half_life:false,width:false,ward:"bar"},allele:"level_2",first_name:{length:"GRCh38",phone:true,quantity:931.74,gene_id:"active"}} | Expecting property name enclosed in double quotes | {"lab_result":97,"bill_of_lading":{"bearing":true,"start_date":"delivered","barcode":799.3,"berth_slot":970,"half_life":false,"width":false,"ward":"bar"},"allele":"level_2","first_name":{"length":"GRCh38","phone":true,"quantity":931.74,"gene_id":"active"}} |
TASK repair_structured_output
SPEC
FIELD terminal_id TYPE string_email REQUIRED yes
FIELD priority TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD amount TYPE string REQUIRED no
FIELD isotope TYPE string REQUIRED no
BROKEN_OUTPUT
<functioncall> process_payment
{terminal_id: "ops@domain.org", amo... | {"terminal_id":"ops@domain.org","amount":"approved"} | tool_call_bad_format | {
"type": "object",
"properties": {
"terminal_id": {
"type": "string",
"format": "email"
},
"priority": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"amount": {
"type": "string"
},
"isot... | <functioncall> process_payment
{terminal_id: "ops@domain.org", amount: "approved"} | Tool call has malformed arguments — unquoted keys in function parameters | {"terminal_id":"ops@domain.org","amount":"approved"} |
TASK repair_structured_output
SPEC
FIELD vital_sign TYPE number REQUIRED yes
FIELD medication TYPE string REQUIRED yes
FIELD start_date TYPE boolean REQUIRED no
FIELD temp_celsius TYPE integer REQUIRED no
FIELD phenotype TYPE integer REQUIRED no
FIELD account_id TYPE integer REQUIRED no
FIELD insurance_id.transaction_... | {"vital_sign":405.25,"medication":"hello","phenotype":503,"account_id":283,"insurance_id":{"transaction_id":609,"state":"active","trace_id":null,"product_id":"pending","repository":false,"ward":198}} | markdown_explanation | {
"type": "object",
"properties": {
"vital_sign": {
"type": "number"
},
"medication": {
"type": "string"
},
"start_date": {
"type": "boolean"
},
"temp_celsius": {
"type": "integer"
},
"phenotype": {
"type": "integer"
},
"account_id": {
... | Based on your request, here is the data:
```json
{"vital_sign":405.25,"medication":"hello","phenotype":503,"account_id":283,"insurance_id":{"transaction_id":609,"state":"active","trace_id":null,"product_id":"pending","repository":false,"ward":198}}
```
Let me know if you need anything else! | Output contains markdown and explanatory text around JSON | {"vital_sign":405.25,"medication":"hello","phenotype":503,"account_id":283,"insurance_id":{"transaction_id":609,"state":"active","trace_id":null,"product_id":"pending","repository":false,"ward":198}} |
TASK repair_structured_output
SPEC
FIELD product_id TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD first_name TYPE string VALUES draft|published|archived REQUIRED no
FIELD quality_score TYPE number REQUIRED no
BROKEN_OUTPUT
Pipeline result:
{"product_id":"basic"} | {"product_id":"basic"} | extra_text_before | {
"type": "object",
"properties": {
"product_id": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"first_name": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
... | Pipeline result:
{"product_id":"basic"} | Output contains non-JSON text before the object | {"product_id":"basic"} |
TASK repair_structured_output
SPEC
FIELD prop_o06 TYPE string REQUIRED yes
FIELD param_r87 TYPE boolean REQUIRED yes
FIELD param_l73.val_t43 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD param_l73.key_k75 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD param_l73.dim_n00 ... | {"prop_o06":"A short description.","param_r87":true,"param_l73":{"val_t43":"info","key_k75":"offline","dim_n00":710,"dim_u17":"missense","col_m89":"rejected","key_t42":"A short description.","key_i20":"mode_c"}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"prop_o06": {
"type": "string"
},
"param_r87": {
"type": "boolean"
},
"param_l73": {
"type": "object",
"properties": {
"val_t43": {
"type": "string",
"enum": [
"success",
"error",
... | search(prop_o06='A short description.', param_r87=True, param_l73={'val_t43': 'info', 'key_k75': 'offline', 'dim_n00': 710, 'dim_u17': 'missense', 'col_m89': 'rejected', 'key_t42': 'A short description.', 'key_i20': 'mode_c'}) | Tool call uses Python syntax instead of JSON | {"prop_o06":"A short description.","param_r87":true,"param_l73":{"val_t43":"info","key_k75":"offline","dim_n00":710,"dim_u17":"missense","col_m89":"rejected","key_t42":"A short description.","key_i20":"mode_c"}} |
TASK repair_structured_output
SPEC
FIELD latitude TYPE integer REQUIRED no
FIELD feedback TYPE boolean REQUIRED no
FIELD subtotal.vital_sign TYPE number REQUIRED yes
FIELD subtotal.isotope.shift_code TYPE boolean REQUIRED no
FIELD subtotal.isotope.title TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no
FIEL... | {"latitude":181,"feedback":true,"lane":723,"terminal_id":true,"diagnosis_code":126.31,"end_date":"2022-04-11T14:58:00Z"} | truncated_array | {
"type": "object",
"properties": {
"latitude": {
"type": "integer"
},
"feedback": {
"type": "boolean"
},
"subtotal": {
"type": "object",
"properties": {
"vital_sign": {
"type": "number"
},
"isotope": {
"type": "object",
... | {"latitude":181,"feedback":true,"lane":723,"terminal_id":true,"diagnosis_code":126.31,"end_date":"2022-04-11T14:58:00Z" | Unexpected end of JSON input — truncated object | {"latitude":181,"feedback":true,"lane":723,"terminal_id":true,"diagnosis_code":126.31,"end_date":"2022-04-11T14:58:00Z"} |
TASK repair_structured_output
SPEC
FIELD prop_j42 TYPE string VALUES draft|published|archived REQUIRED no
FIELD param_b47.param_q18 TYPE string REQUIRED no
FIELD param_b47.prop_j88 TYPE string REQUIRED no
FIELD param_b47.prop_z10[].dim_j81 TYPE integer REQUIRED yes
FIELD param_b47.prop_z10[].val_k00 TYPE string VALUES... | {"prop_j42":"published","param_b47":{"param_q18":"Sao Paulo","prop_z10":[{"dim_j81":525,"val_k00":"frameshift","col_o82":208.69},{"dim_j81":177,"val_k00":"missense","col_o82":899.78}]},"field_w53":"RTG-04"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"prop_j42": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"param_b47": {
"type": "object",
"properties": {
"param_q18": {
"type": "string"
},
"prop_j88": {
... | Tool: book_appointment
Params: {"prop_j42": "published", "param_b47": {"param_q18": "Sao Paulo", "prop_z10": [{"dim_j81": 525, "val_k00": "frameshift", "col_o82": 208.69}, {"dim_j81": 177, "val_k00": "missense", "col_o82": 899.78}]}, "field_w53_new": "RTG-04"} | Agent used wrong parameter name 'field_w53_new' instead of 'field_w53' | {"prop_j42":"published","param_b47":{"param_q18":"Sao Paulo","prop_z10":[{"dim_j81":525,"val_k00":"frameshift","col_o82":208.69},{"dim_j81":177,"val_k00":"missense","col_o82":899.78}]},"field_w53":"RTG-04"} |
TASK repair_structured_output
SPEC
FIELD values TYPE string REQUIRED no
FIELD enabled TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD medication TYPE string VALUES red|blue|green|black|white REQUIRED yes
BROKEN_OUTPUT
Processing the request now.
I'll validate against the schema.
{"values":"qux","enabled":... | {"values":"qux","enabled":"email","medication":"blue"} | thought_process | {
"type": "object",
"properties": {
"values": {
"type": "string"
},
"enabled": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"medication": {
"type": "string",
"enum": [
"red",
"blue",
... | Processing the request now.
I'll validate against the schema.
{"values":"qux","enabled":"email","medication":"blue"} | Output contains chain-of-thought reasoning before JSON | {"values":"qux","enabled":"email","medication":"blue"} |
TASK repair_structured_output
SPEC
FIELD aligned_pct TYPE number REQUIRED no
FIELD payment_status TYPE integer REQUIRED no
FIELD discount TYPE boolean REQUIRED yes
FIELD bearing.longitude TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD bearing.username TYPE integer REQUIRED no
FIELD bearing.age TYPE integer ... | {"payment_status":351,"discount":false,"bearing":{"longitude":"EUR","age":743,"weight":"GRCh38"},"product_id":{"ph_level":742.93,"collateral":381,"account_id":608.82,"pressure_kpa":"underway"}} | missing_required | {
"type": "object",
"properties": {
"aligned_pct": {
"type": "number"
},
"payment_status": {
"type": "integer"
},
"discount": {
"type": "boolean"
},
"bearing": {
"type": "object",
"properties": {
"longitude": {
"type": "string",
"... | {"payment_status": 351, "discount": false, "bearing": {"longitude": "EUR", "age": 743, "weight": "GRCh38"}} | Required field 'product_id' is missing | {"payment_status":351,"discount":false,"bearing":{"longitude":"EUR","age":743,"weight":"GRCh38"},"product_id":{"ph_level":742.93,"collateral":381,"account_id":608.82,"pressure_kpa":"underway"}} |
TASK repair_structured_output
SPEC
FIELD velocity TYPE boolean REQUIRED yes
FIELD full_name TYPE string_date-time REQUIRED yes
FIELD interest_rate TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD patient_id TYPE string REQUIRED no
BROKEN_OUTPUT
{"velocity":false,"full_name":"2026-02-18T10:03:00Z","... | {"velocity":false,"full_name":"2026-02-18T10:03:00Z","interest_rate":"arctic","patient_id":"hello"} | truncated_object | {
"type": "object",
"properties": {
"velocity": {
"type": "boolean"
},
"full_name": {
"type": "string",
"format": "date-time"
},
"interest_rate": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
... | {"velocity":false,"full_name":"2026-02-18T10:03:00Z","interest_rate":"arctic","patient_id":"hello" | Unexpected end of JSON input — truncated object | {"velocity":false,"full_name":"2026-02-18T10:03:00Z","interest_rate":"arctic","patient_id":"hello"} |
TASK repair_structured_output
SPEC
FIELD param_t93 TYPE boolean REQUIRED yes
FIELD field_c00 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD col_e39 TYPE string_email REQUIRED no
BROKEN_OUTPUT
{"param_t93": null, "field_c00": "level_4"} | {"param_t93":false,"field_c00":"level_4"} | null_required | {
"type": "object",
"properties": {
"param_t93": {
"type": "boolean"
},
"field_c00": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
]
},
"col_e39": {
"type": "string",
"format": "email"
}
},
"re... | {"param_t93": null, "field_c00": "level_4"} | Required field 'param_t93' is null | {"param_t93":false,"field_c00":"level_4"} |
TASK repair_structured_output
SPEC
FIELD attr_x07 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD val_b39 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD col_y30 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD key_p66 TYPE string REQUIRED no
BROKEN_OUTPUT
Analyzin... | {"attr_x07":"anchored","val_b39":"in_progress"} | thought_process | {
"type": "object",
"properties": {
"attr_x07": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"val_b39": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed... | Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"attr_x07":"anchored","val_b39":"in_progress"} | Output contains chain-of-thought reasoning before JSON | {"attr_x07":"anchored","val_b39":"in_progress"} |
TASK repair_structured_output
SPEC
FIELD val_g87 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD field_e41 TYPE string REQUIRED yes
FIELD param_v37.dim_x95 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD param_v37.prop_v91 TYPE integer REQUIRED yes
FIELD param_v37.val_n16 TYP... | {"val_g87":"escalated","field_e41":"Jane","param_v37":{"prop_v91":300,"val_n16":false,"dim_j47":"resolved","attr_f33":{"key_v46":"xl","dim_c05":"https://www.org/data","col_r76":null,"dim_g42":"heterozygous","param_j41":216},"attr_q86":"Paris"},"field_z32":"basic"} | null_required | {
"type": "object",
"properties": {
"val_g87": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"field_e41": {
"type": "string"
},
"param_v37": {
"type": "object",
"properties": {
... | {"val_g87": "escalated", "field_e41": "Jane", "param_v37": {"prop_v91": 300, "val_n16": false, "dim_j47": "resolved", "attr_f33": {"key_v46": "xl", "dim_c05": "https://www.org/data", "col_r76": null, "dim_g42": "heterozygous", "param_j41": 216}, "attr_q86": "Paris"}, "field_z32": null} | Required field 'field_z32' is null | {"val_g87":"escalated","field_e41":"Jane","param_v37":{"prop_v91":300,"val_n16":false,"dim_j47":"resolved","attr_f33":{"key_v46":"xl","dim_c05":"https://www.org/data","col_r76":null,"dim_g42":"heterozygous","param_j41":216},"attr_q86":"Paris"},"field_z32":"basic"} |
TASK repair_structured_output
SPEC
FIELD prop_w05 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD col_i40 TYPE string REQUIRED yes
FIELD prop_l78 TYPE string_email REQUIRED yes
FIELD val_r82 TYPE number REQUIRED no
FIELD col_f97 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD key_e96... | {"prop_w05":"green","col_i40":"user@domain.com","prop_l78":"user@example.com","val_r82":452.56,"col_f97":"coastal","key_e96":129.64} | missing_brace | {
"type": "object",
"properties": {
"prop_w05": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"col_i40": {
"type": "string"
},
"prop_l78": {
"type": "string",
"format": "email"
},
"v... | "prop_w05":"green","col_i40":"user@domain.com","prop_l78":"user@example.com","val_r82":452.56,"col_f97":"coastal","key_e96":129.64} | Missing closing brace | {"prop_w05":"green","col_i40":"user@domain.com","prop_l78":"user@example.com","val_r82":452.56,"col_f97":"coastal","key_e96":129.64} |
TASK repair_structured_output
SPEC
FIELD dim_p12 TYPE integer REQUIRED yes
FIELD prop_j40 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED no
FIELD key_s39[].dim_f36 TYPE number REQUIRED yes
FIELD key_s39[].dim_i46 TYPE integer REQUIRED no
FIELD key_s39[].dim_o87 TYPE string REQUIRED yes
BROKEN_O... | {"dim_p12":535,"prop_j40":"type_e","key_s39":[{"dim_f36":966.53,"dim_o87":"chrX"},{"dim_f36":969.24,"dim_o87":"Jane"},{"dim_f36":597.13,"dim_i46":901,"dim_o87":"Santos"}]} | markdown_explanation | {
"type": "object",
"properties": {
"dim_p12": {
"type": "integer"
},
"prop_j40": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e",
"type_f"
]
},
"key_s39": {
"type": "array",
"items... | Sure, here's the result:
```json
{"dim_p12":535,"prop_j40":"type_e","key_s39":[{"dim_f36":966.53,"dim_o87":"chrX"},{"dim_f36":969.24,"dim_o87":"Jane"},{"dim_f36":597.13,"dim_i46":901,"dim_o87":"Santos"}]}
```
I've ensured all required fields are present. | Output contains markdown and explanatory text around JSON | {"dim_p12":535,"prop_j40":"type_e","key_s39":[{"dim_f36":966.53,"dim_o87":"chrX"},{"dim_f36":969.24,"dim_o87":"Jane"},{"dim_f36":597.13,"dim_i46":901,"dim_o87":"Santos"}]} |
TASK repair_structured_output
SPEC
FIELD values TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD last_name TYPE integer REQUIRED no
FIELD color.age TYPE string REQUIRED yes
FIELD color.image_url TYPE number REQUIRED no
FIELD color.zip_code TYPE string REQUIRED yes
FIELD category TYPE string REQUI... | {"values":"resolved","last_name":600,"color":{"age":"example","image_url":890.75,"zip_code":"Berlin"},"category":"bar","brake_pressure":764.91} | tool_call_python_syntax | {
"type": "object",
"properties": {
"values": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"last_name": {
"type": "integer"
},
"color": {
"type": "object",
"properties": {
"age": {
... | calculate_price(values='resolved', last_name=600, color={'age': 'example', 'image_url': 890.75, 'zip_code': 'Berlin'}, category='bar', brake_pressure=764.91) | Tool call uses Python syntax instead of JSON | {"values":"resolved","last_name":600,"color":{"age":"example","image_url":890.75,"zip_code":"Berlin"},"category":"bar","brake_pressure":764.91} |
TASK repair_structured_output
SPEC
FIELD prop_s00 TYPE integer REQUIRED yes
FIELD attr_e55 TYPE string REQUIRED no
FIELD col_x34 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD val_f90 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD field_j78.field_u32 TYPE string_date-time REQUIRED no
... | {"prop_s00":952,"attr_e55":"chr1","col_x34":"unstable","val_f90":"mode_c","field_j78":{"field_u32":"2026-05-16T19:14:00Z","param_w99":"Tokyo","val_x09":{"key_p18":58,"val_a86":351,"dim_w38":"archived","prop_t83":null},"col_c33":"https://www.org/v1","prop_g64":{"val_c69":"test@domain.org","param_x29":"2023-12-25","dim_h... | unquoted_keys | {
"type": "object",
"properties": {
"prop_s00": {
"type": "integer"
},
"attr_e55": {
"type": "string"
},
"col_x34": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"val_f90": {
"type": "string",
"... | {prop_s00:952,attr_e55:"chr1",col_x34:"unstable",val_f90:"mode_c",field_j78:{field_u32:"2026-05-16T19:14:00Z",param_w99:"Tokyo",val_x09:{key_p18:58,val_a86:351,dim_w38:"archived",prop_t83:null},col_c33:"https://www.org/v1",prop_g64:{val_c69:"test@domain.org",param_x29:"2023-12-25",dim_h39:"Maria",attr_n72:360}}} | Expecting property name enclosed in double quotes | {"prop_s00":952,"attr_e55":"chr1","col_x34":"unstable","val_f90":"mode_c","field_j78":{"field_u32":"2026-05-16T19:14:00Z","param_w99":"Tokyo","val_x09":{"key_p18":58,"val_a86":351,"dim_w38":"archived","prop_t83":null},"col_c33":"https://www.org/v1","prop_g64":{"val_c69":"test@domain.org","param_x29":"2023-12-25","dim_h... |
TASK repair_structured_output
SPEC
FIELD quality_score TYPE number REQUIRED yes
FIELD tags TYPE null REQUIRED yes
FIELD tax TYPE integer REQUIRED yes
FIELD filter_flag TYPE string REQUIRED no
FIELD version TYPE string VALUES admin|editor|viewer REQUIRED no
BROKEN_OUTPUT
```json
{"quality_score":382.39,"tags":null,"ta... | {"quality_score":382.39,"tags":null,"tax":359,"filter_flag":"world"} | markdown_fences | {
"type": "object",
"properties": {
"quality_score": {
"type": "number"
},
"tags": {
"type": "null"
},
"tax": {
"type": "integer"
},
"filter_flag": {
"type": "string"
},
"version": {
"type": "string",
"enum": [
"admin",
"editor"... | ```json
{"quality_score":382.39,"tags":null,"tax":359,"filter_flag":"world"}
``` | Output contains markdown code fences | {"quality_score":382.39,"tags":null,"tax":359,"filter_flag":"world"} |
TASK repair_structured_output
SPEC
FIELD col_f16 TYPE boolean REQUIRED yes
FIELD col_z06 TYPE integer REQUIRED yes
FIELD field_y14 TYPE string REQUIRED no
FIELD param_y32 TYPE null REQUIRED yes
FIELD col_u64 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD val_t49 TYPE string REQUIRED n... | {"col_f16":false,"col_z06":270,"field_y14":"cancelled","param_y32":null,"col_u64":"confirmed","val_t49":"Smith"} | tool_call_partial_args | {
"type": "object",
"properties": {
"col_f16": {
"type": "boolean"
},
"col_z06": {
"type": "integer"
},
"field_y14": {
"type": "string"
},
"param_y32": {
"type": "null"
},
"col_u64": {
"type": "string",
"enum": [
"pending_review",
... | I need to look up the information first.
Action: call_variants
Arguments: {"col_f16": false, "col_z06": 270, "field_y14": "cancelled", "col_u64": "confirmed", "val_t49": "Smith"} | Agent tool call missing required parameter 'param_y32' | {"col_f16":false,"col_z06":270,"field_y14":"cancelled","param_y32":null,"col_u64":"confirmed","val_t49":"Smith"} |
TASK repair_structured_output
SPEC
FIELD transaction_id TYPE string_email REQUIRED yes
FIELD options TYPE string REQUIRED yes
FIELD wavelength TYPE string VALUES level_1|level_2|level_3 REQUIRED yes
BROKEN_OUTPUT
{"transaction_id":"info@domain.org","options":"completed","wavelength":"level_1" | {"transaction_id":"info@domain.org","options":"completed","wavelength":"level_1"} | truncated_array | {
"type": "object",
"properties": {
"transaction_id": {
"type": "string",
"format": "email"
},
"options": {
"type": "string"
},
"wavelength": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3"
]
}
},
"required": [
... | {"transaction_id":"info@domain.org","options":"completed","wavelength":"level_1" | Unexpected end of JSON input — truncated object | {"transaction_id":"info@domain.org","options":"completed","wavelength":"level_1"} |
TASK repair_structured_output
SPEC
FIELD span_id TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD format TYPE string_uri REQUIRED no
FIELD last_name.active TYPE string VALUES draft|published|archived REQUIRED yes
FIELD last_name.patient_id TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD last_... | {"format":"https://data.com/api","last_name":{"active":"archived","patient_id":"type_d","lane":"published","description":true}} | unquoted_keys | {
"type": "object",
"properties": {
"span_id": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"format": {
"type": "string",
"format": "uri"
},
"last_name": {
"type": "object",
"properties": {
"active": {
... | {format:"https://data.com/api",last_name:{active:"archived",patient_id:"type_d",lane:"published",description:true}} | Expecting property name enclosed in double quotes | {"format":"https://data.com/api","last_name":{"active":"archived","patient_id":"type_d","lane":"published","description":true}} |
TASK repair_structured_output
SPEC
FIELD col_v32 TYPE string_date-time REQUIRED yes
FIELD col_x15 TYPE string REQUIRED no
FIELD attr_j96 TYPE number REQUIRED no
FIELD key_h35 TYPE string REQUIRED yes
FIELD col_y72 TYPE string REQUIRED no
FIELD col_c68 TYPE number REQUIRED no
FIELD val_q43 TYPE number REQUIRED yes
FIEL... | {"col_v32":"2025-11-26T07:31:00Z","col_x15":"Bob","attr_j96":470.04,"key_h35":"qux","col_y72":"https://example.com","col_c68":667.13,"val_q43":885.05,"attr_u92":"phone"} | truncated_array | {
"type": "object",
"properties": {
"col_v32": {
"type": "string",
"format": "date-time"
},
"col_x15": {
"type": "string"
},
"attr_j96": {
"type": "number"
},
"key_h35": {
"type": "string"
},
"col_y72": {
"type": "string"
},
"col_c68": ... | {"col_v32":"2025-11-26T07:31:00Z","col_x15":"Bob","attr_j96":470.04,"key_h35":"qux","col_y72":"https://example.com","col_c68":667.13,"val_q43":885.05,"attr_u92":"phone" | Unexpected end of JSON input — truncated object | {"col_v32":"2025-11-26T07:31:00Z","col_x15":"Bob","attr_j96":470.04,"key_h35":"qux","col_y72":"https://example.com","col_c68":667.13,"val_q43":885.05,"attr_u92":"phone"} |
TASK repair_structured_output
SPEC
FIELD attr_u10 TYPE integer REQUIRED yes
FIELD col_f42 TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD attr_s23[].field_r81 TYPE string REQUIRED yes
FIELD attr_s23[].col_i91 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD attr_s23[].attr_g12 TYP... | {"attr_u10":359,"col_f42":"type_a","attr_s23":[{"field_r81":"Alice","col_i91":"underway","attr_g12":791.09,"param_u98":798},{"field_r81":"Alice","param_u98":898},{"field_r81":"Bob","col_i91":"berthed","param_u98":735}],"val_c91":[280,873,289]} | missing_bracket | {
"type": "object",
"properties": {
"attr_u10": {
"type": "integer"
},
"col_f42": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"attr_s23": {
"type": "array",
"items": {
"type": "object",
... | {"attr_u10":359,"col_f42":"type_a","attr_s23":{"field_r81":"Alice","col_i91":"underway","attr_g12":791.09,"param_u98":798},{"field_r81":"Alice","param_u98":898},{"field_r81":"Bob","col_i91":"berthed","param_u98":735}],"val_c91":[280,873,289]} | Missing closing bracket | {"attr_u10":359,"col_f42":"type_a","attr_s23":[{"field_r81":"Alice","col_i91":"underway","attr_g12":791.09,"param_u98":798},{"field_r81":"Alice","param_u98":898},{"field_r81":"Bob","col_i91":"berthed","param_u98":735}],"val_c91":[280,873,289]} |
TASK repair_structured_output
SPEC
FIELD val_t72 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD dim_y98 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD param_c72 TYPE string REQUIRED no
FIELD val_m95 TYPE number REQUIRED no
FIELD dim_b67 TYPE string_uri REQUIRED yes
FIELD... | {"val_t72":"in_transit","dim_y98":"in_progress","param_c72":"Sao Paulo","dim_b67":"https://example.io/data","prop_e38":"open"} | thought_process | {
"type": "object",
"properties": {
"val_t72": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"dim_y98": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed... | Let me construct this step by step.
First, I'll identify the required fields, then fill in the values.
{"val_t72":"in_transit","dim_y98":"in_progress","param_c72":"Sao Paulo","dim_b67":"https://example.io/data","prop_e38":"open"} | Output contains chain-of-thought reasoning before JSON | {"val_t72":"in_transit","dim_y98":"in_progress","param_c72":"Sao Paulo","dim_b67":"https://example.io/data","prop_e38":"open"} |
TASK repair_structured_output
SPEC
FIELD dim_o31.param_v48 TYPE string_email REQUIRED no
FIELD dim_o31.attr_q09 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD dim_o31.key_w27 TYPE number REQUIRED yes
FIELD dim_o31.dim_v92 TYPE boolean REQUIRED yes
FIELD dim_o31.param_t14 TYPE null REQUIRED yes
FIELD val_l42... | {"dim_o31":{"param_v48":"info@test.io","key_w27":133.93,"dim_v92":true,"param_t14":null},"val_l42":"approved","field_b73":{"prop_j08":209.63,"key_h76":"test@example.com","field_r04":42,"field_c25":{"prop_j59":"type_a","param_t13":"black","prop_p50":"option_a"}},"key_t67":"https://api.example.com/v1","prop_v98":"active"... | extra_field | {
"type": "object",
"properties": {
"dim_o31": {
"type": "object",
"properties": {
"param_v48": {
"type": "string",
"format": "email"
},
"attr_q09": {
"type": "string",
"enum": [
"email",
"phone",
"sm... | {"dim_o31": {"param_v48": "info@test.io", "key_w27": 133.93, "dim_v92": true, "param_t14": null}, "val_l42": "approved", "field_b73": {"prop_j08": 209.63, "key_h76": "test@example.com", "field_r04": 42, "field_c25": {"prop_j59": "type_a", "param_t13": "black", "prop_p50": "option_a"}}, "key_t67": "https://api.example.c... | Unknown field 'extra_value_4017' not defined in schema | {"dim_o31":{"param_v48":"info@test.io","key_w27":133.93,"dim_v92":true,"param_t14":null},"val_l42":"approved","field_b73":{"prop_j08":209.63,"key_h76":"test@example.com","field_r04":42,"field_c25":{"prop_j59":"type_a","param_t13":"black","prop_p50":"option_a"}},"key_t67":"https://api.example.com/v1","prop_v98":"active"... |
TASK repair_structured_output
SPEC
FIELD message TYPE string REQUIRED no
FIELD color TYPE number REQUIRED yes
FIELD lab_result[] TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
BROKEN_OUTPUT
Breaking down the requirements:
- Must include all required fields
- Types must match the schema
- Values shou... | {"message":"Jane","color":881.7,"lab_result":["returned","new"]} | thought_process | {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"color": {
"type": "number"
},
"lab_result": {
"type": "array",
"items": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"... | Breaking down the requirements:
- Must include all required fields
- Types must match the schema
- Values should be realistic
{"message":"Jane","color":881.7,"lab_result":["returned","new"]} | Output contains chain-of-thought reasoning before JSON | {"message":"Jane","color":881.7,"lab_result":["returned","new"]} |
TASK repair_structured_output
SPEC
FIELD dim_w67 TYPE string_date-time REQUIRED no
FIELD val_i23 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD param_x19 TYPE boolean REQUIRED no
FIELD attr_v36[] TYPE number REQUIRED no
BROKEN_OUTPUT
{'val_i23':'offline'} | {"val_i23":"offline"} | single_quotes | {
"type": "object",
"properties": {
"dim_w67": {
"type": "string",
"format": "date-time"
},
"val_i23": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"param_x19": {
"type": "boolean"
}... | {'val_i23':'offline'} | Expecting property name enclosed in double quotes | {"val_i23":"offline"} |
TASK repair_structured_output
SPEC
FIELD col_o17 TYPE integer REQUIRED yes
FIELD dim_p94 TYPE integer REQUIRED yes
FIELD attr_n40 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD dim_e57 TYPE number REQUIRED yes
FIELD dim_i24.dim_q74 TYPE string_date-time REQUIRED no
FIELD dim_i24.param_u48 TYPE s... | {"col_o17":647,"dim_p94":71,"attr_n40":"moored","dim_e57":176.49} | tool_call_python_syntax | {
"type": "object",
"properties": {
"col_o17": {
"type": "integer"
},
"dim_p94": {
"type": "integer"
},
"attr_n40": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"dim_e57": {
"type": "num... | apply_discount(col_o17=647, dim_p94=71, attr_n40='moored', dim_e57=176.49) | Tool call uses Python syntax instead of JSON | {"col_o17":647,"dim_p94":71,"attr_n40":"moored","dim_e57":176.49} |
TASK repair_structured_output
SPEC
FIELD conductivity TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD organism TYPE boolean REQUIRED no
FIELD date TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD log_level.run_id TYPE boolean REQUIRED yes
FIELD log_level.active TYPE nul... | {"conductivity":"synonymous","organism":true,"date":"unstable","log_level":{"run_id":true,"active":null,"language":"https://data.com/v1"},"footnote":"open","umi":25} | truncated_object | {
"type": "object",
"properties": {
"conductivity": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"organism": {
"type": "boolean"
},
"date": {
"type": "string",
"enum": [
"reliable... | {"conductivity":"synonymous","organism":true,"date":"unstable","log_level":{"run_id":true,"active":null,"language":"https://data.com/v1"},"footnote":"open","umi":25 | Unexpected end of JSON input — truncated object | {"conductivity":"synonymous","organism":true,"date":"unstable","log_level":{"run_id":true,"active":null,"language":"https://data.com/v1"},"footnote":"open","umi":25} |
TASK repair_structured_output
SPEC
FIELD enabled TYPE string REQUIRED no
FIELD level TYPE integer REQUIRED no
FIELD duration_ms TYPE string_email REQUIRED no
FIELD patient_id.compound TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD patient_id.loan_amount.company TYPE string VALUES type_a|type_b... | {"enabled":"Maria","level":665,"patient_id":{"compound":"heterozygous","loan_amount":{"company":"type_c","chapter":"Jane","tags":true,"description":"https://www.io/api","insurance_id":"Paris"},"tile":"2025-12-20T13:12:00Z"}} | wrong_type | {
"type": "object",
"properties": {
"enabled": {
"type": "string"
},
"level": {
"type": "integer"
},
"duration_ms": {
"type": "string",
"format": "email"
},
"patient_id": {
"type": "object",
"properties": {
"compound": {
"type": "stri... | {"enabled": "Maria", "level": "\"665\"", "patient_id": {"compound": "heterozygous", "loan_amount": {"company": "type_c", "chapter": "Jane", "tags": true, "description": "https://www.io/api", "insurance_id": "Paris"}, "tile": "2025-12-20T13:12:00Z"}} | Field 'level' must be integer, got string | {"enabled":"Maria","level":665,"patient_id":{"compound":"heterozygous","loan_amount":{"company":"type_c","chapter":"Jane","tags":true,"description":"https://www.io/api","insurance_id":"Paris"},"tile":"2025-12-20T13:12:00Z"}} |
TASK repair_structured_output
SPEC
FIELD diagnosis_code TYPE integer REQUIRED yes
FIELD shift_code TYPE number REQUIRED yes
FIELD level TYPE null REQUIRED no
FIELD chapter TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD updated_at TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED... | {"diagnosis_code":869,"shift_code":948.71,"level":null,"chapter":"mode_b","updated_at":"cat_b","thumbnail":"Diana","description":"option_c"} | invalid_enum | {
"type": "object",
"properties": {
"diagnosis_code": {
"type": "integer"
},
"shift_code": {
"type": "number"
},
"level": {
"type": "null"
},
"chapter": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
... | {"diagnosis_code": 869, "shift_code": 948.71, "level": null, "chapter": "invalid_value_489", "updated_at": "cat_b", "thumbnail": "Diana", "description": "option_c"} | Field 'chapter' has invalid enum value 'invalid_value_489', expected one of ['mode_a', 'mode_b', 'mode_c', 'mode_d', 'mode_e'] | {"diagnosis_code":869,"shift_code":948.71,"level":null,"chapter":"mode_b","updated_at":"cat_b","thumbnail":"Diana","description":"option_c"} |
TASK repair_structured_output
SPEC
FIELD step TYPE integer REQUIRED yes
FIELD email TYPE string REQUIRED no
FIELD section TYPE boolean REQUIRED no
BROKEN_OUTPUT
I found that step should be 184. {"step":184,"email":"London"} | {"step":184,"email":"London"} | partial_structure | {
"type": "object",
"properties": {
"step": {
"type": "integer"
},
"email": {
"type": "string"
},
"section": {
"type": "boolean"
}
},
"required": [
"step"
]
} | I found that step should be 184. {"step":184,"email":"London"} | Output mixes natural language with JSON | {"step":184,"email":"London"} |
TASK repair_structured_output
SPEC
FIELD color TYPE integer REQUIRED yes
FIELD length TYPE boolean REQUIRED no
FIELD amount TYPE integer REQUIRED no
FIELD voltage TYPE boolean REQUIRED no
FIELD url TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD frequency_hz TYPE string VALUES synonymous|missense|nonsense... | {"color":31,"length":false,"amount":708,"url":"cat_d","frequency_hz":"synonymous","values":{"status":"Santos","procedure_code":{"notes":"test@example.com","options":"option_a","compound":"MV-Evergreen-01","crew_id":776},"chapter":50,"state":182,"dissolved_oxygen":261.19}} | missing_required | {
"type": "object",
"properties": {
"color": {
"type": "integer"
},
"length": {
"type": "boolean"
},
"amount": {
"type": "integer"
},
"voltage": {
"type": "boolean"
},
"url": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
... | {"length": false, "amount": 708, "url": "cat_d", "frequency_hz": "synonymous", "values": {"status": "Santos", "procedure_code": {"notes": "test@example.com", "options": "option_a", "compound": "MV-Evergreen-01", "crew_id": 776}, "chapter": 50, "state": 182, "dissolved_oxygen": 261.19}} | Required field 'color' is missing | {"color":31,"length":false,"amount":708,"url":"cat_d","frequency_hz":"synonymous","values":{"status":"Santos","procedure_code":{"notes":"test@example.com","options":"option_a","compound":"MV-Evergreen-01","crew_id":776},"chapter":50,"state":182,"dissolved_oxygen":261.19}} |
TASK repair_structured_output
SPEC
FIELD attr_s53 TYPE null REQUIRED yes
FIELD key_l50 TYPE integer REQUIRED no
FIELD key_r91 TYPE string REQUIRED no
FIELD col_i94.key_w08 TYPE number REQUIRED yes
FIELD col_i94.attr_w04 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD col_i94.col_a26 TYPE strin... | {"attr_s53":null,"key_r91":"pending","col_i94":{"key_w08":966.17,"attr_w04":"mode_d","col_a26":"2021-07-07T17:02:00Z","col_s87":[false]}} | truncated_object | {
"type": "object",
"properties": {
"attr_s53": {
"type": "null"
},
"key_l50": {
"type": "integer"
},
"key_r91": {
"type": "string"
},
"col_i94": {
"type": "object",
"properties": {
"key_w08": {
"type": "number"
},
"attr_w04... | {"attr_s53":null,"key_r91":"pending","col_i94":{"key_w08":966.17,"attr_w04":"mode_d","col_a26":"2021-07-07T17:02:00Z","col_s87":[false]} | Unexpected end of JSON input — truncated object | {"attr_s53":null,"key_r91":"pending","col_i94":{"key_w08":966.17,"attr_w04":"mode_d","col_a26":"2021-07-07T17:02:00Z","col_s87":[false]}} |
TASK repair_structured_output
SPEC
FIELD amplitude TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD duration_ms TYPE number REQUIRED no
FIELD salinity TYPE null REQUIRED yes
FIELD latitude TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD bed_number TYPE string VALUES level_1|lev... | {"amplitude":"type_a","duration_ms":508.03,"salinity":null,"latitude":"hemizygous","position":"A short description."} | null_required | {
"type": "object",
"properties": {
"amplitude": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"duration_ms": {
"type": "number"
},
"salinity": {
"type": "null"
},
"latitude": {
"type": "strin... | {"amplitude": "type_a", "duration_ms": 508.03, "salinity": null, "latitude": "hemizygous", "position": "A short description."} | Required field 'salinity' is null | {"amplitude":"type_a","duration_ms":508.03,"salinity":null,"latitude":"hemizygous","position":"A short description."} |
TASK repair_structured_output
SPEC
FIELD dim_e45 TYPE string REQUIRED yes
FIELD key_c66 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD val_j88 TYPE integer REQUIRED yes
FIELD attr_z80 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD val_a35.param_g19 TYPE string VALUES ... | {"dim_e45":"Smith","key_c66":"level_3","val_j88":229,"attr_z80":"cat_a","val_a35":{"param_g19":"info","dim_w15":"2024-02-26T02:30:00Z","prop_d99":{"val_c09":397,"dim_w69":"EUR","attr_k41":243.7,"attr_t05":269},"prop_l54":{"col_p68":"info@test.io","field_x75":"2021-11-22T12:38:00Z","attr_b96":["REV","REV"],"attr_v90":["... | tool_call_text_mix | {
"type": "object",
"properties": {
"dim_e45": {
"type": "string"
},
"key_c66": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"val_j88": {
"type": "integer"
},
"attr_z80": {
... | Let me check the system.
<tool_call name="get_weather">
{"dim_e45":"Smith","key_c66":"level_3","val_j88":229,"attr_z80":"cat_a","val_a35":{"param_g19":"info","dim_w15":"2024-02-26T02:30:00Z","prop_d99":{"val_c09":397,"dim_w69":"EUR","attr_k41":243.7,"attr_t05":269},"prop_l54":{"col_p68":"info@test.io","field_x75":"2021... | Agent response mixes reasoning text with tool call | {"dim_e45":"Smith","key_c66":"level_3","val_j88":229,"attr_z80":"cat_a","val_a35":{"param_g19":"info","dim_w15":"2024-02-26T02:30:00Z","prop_d99":{"val_c09":397,"dim_w69":"EUR","attr_k41":243.7,"attr_t05":269},"prop_l54":{"col_p68":"info@test.io","field_x75":"2021-11-22T12:38:00Z","attr_b96":["REV","REV"],"attr_v90":["... |
TASK repair_structured_output
SPEC
FIELD attr_p87 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD col_l86 TYPE integer REQUIRED yes
FIELD dim_g86 TYPE null REQUIRED yes
FIELD field_e68 TYPE string VALUES small|medium|large|xl REQUIRED yes
BROKEN_OUTPUT
{"attr_p87": null, "col_l86": 795, "dim_g86": null, "fi... | {"attr_p87":"GBP","col_l86":795,"dim_g86":null,"field_e68":"small"} | null_required | {
"type": "object",
"properties": {
"attr_p87": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"col_l86": {
"type": "integer"
},
"dim_g86": {
"type": "null"
},
"field_e68": {
"type": "string... | {"attr_p87": null, "col_l86": 795, "dim_g86": null, "field_e68": "small"} | Required field 'attr_p87' is null | {"attr_p87":"GBP","col_l86":795,"dim_g86":null,"field_e68":"small"} |
TASK repair_structured_output
SPEC
FIELD field_x39 TYPE string VALUES type_a|type_b REQUIRED no
FIELD dim_m82 TYPE number REQUIRED no
FIELD key_d25 TYPE string_date-time REQUIRED no
FIELD key_f30 TYPE string REQUIRED no
FIELD param_l16 TYPE string REQUIRED yes
FIELD param_t65 TYPE integer REQUIRED yes
FIELD prop_r57 T... | {"key_d25":"2023-09-02T20:49:00Z","key_f30":"https://example.com","param_l16":"pending","param_t65":399,"prop_r57":779.76} | extra_field | {
"type": "object",
"properties": {
"field_x39": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"dim_m82": {
"type": "number"
},
"key_d25": {
"type": "string",
"format": "date-time"
},
"key_f30": {
"type": "string"
},
... | {"key_d25": "2023-09-02T20:49:00Z", "key_f30": "https://example.com", "param_l16": "pending", "param_t65": 399, "prop_r57": 779.76, "extra_field_1264": 42} | Unknown field 'extra_field_1264' not defined in schema | {"key_d25":"2023-09-02T20:49:00Z","key_f30":"https://example.com","param_l16":"pending","param_t65":399,"prop_r57":779.76} |
TASK repair_structured_output
SPEC
FIELD company TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD quantity TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED yes
FIELD created_at TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD size TYPE string REQUIRED no
FIELD role TYPE st... | {"company":"mode_a","quantity":"level_6","created_at":"phone","size":"QC-07","role":"mode_b","email":null,"score":"https://api.io/v1"} | invalid_enum | {
"type": "object",
"properties": {
"company": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"quantity": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
... | {"company": "mode_a", "quantity": "invalid_choice_81", "created_at": "phone", "size": "QC-07", "role": "mode_b", "email": null, "score": "https://api.io/v1"} | Field 'quantity' has invalid enum value 'invalid_choice_81', expected one of ['level_1', 'level_2', 'level_3', 'level_4', 'level_5', 'level_6'] | {"company":"mode_a","quantity":"level_6","created_at":"phone","size":"QC-07","role":"mode_b","email":null,"score":"https://api.io/v1"} |
TASK repair_structured_output
SPEC
FIELD key_q56 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD dim_f02 TYPE boolean REQUIRED no
FIELD attr_n34 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD col_v70 TYPE string_email REQUIRED yes
FIELD field_j73 TYPE string_email REQUIRED no
FIELD param_f12 ... | {"key_q56":"critical","dim_f02":false,"attr_n34":"small","col_v70":"test@test.io","field_j73":"admin@test.io","param_f12":"low","key_w99":"Tokyo"} | missing_required | {
"type": "object",
"properties": {
"key_q56": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"dim_f02": {
"type": "boolean"
},
"attr_n34": {
"type": "string",
"enum": [
"small",
"medium",... | {"key_q56": "critical", "dim_f02": false, "attr_n34": "small", "col_v70": "test@test.io", "field_j73": "admin@test.io", "param_f12": "low"} | Required field 'key_w99' is missing | {"key_q56":"critical","dim_f02":false,"attr_n34":"small","col_v70":"test@test.io","field_j73":"admin@test.io","param_f12":"low","key_w99":"Tokyo"} |
TASK repair_structured_output
SPEC
FIELD prop_o08 TYPE string REQUIRED no
FIELD dim_r61 TYPE string_date-time REQUIRED no
FIELD prop_x67 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD attr_n74 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD col_w79 TYPE number REQUIRED no
FIELD d... | {"prop_o08":"Tokyo","dim_r61":"2024-10-20T10:39:00Z","prop_x67":"inactive","dim_d65":"cat_a","val_w95":"intermittent"} | truncated_object | {
"type": "object",
"properties": {
"prop_o08": {
"type": "string"
},
"dim_r61": {
"type": "string",
"format": "date-time"
},
"prop_x67": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"attr_n74": {
"ty... | {"prop_o08":"Tokyo","dim_r61":"2024-10-20T10:39:00Z","prop_x67":"inactive","dim_d65":"cat_a","val_w95":"intermittent" | Unexpected end of JSON input — truncated object | {"prop_o08":"Tokyo","dim_r61":"2024-10-20T10:39:00Z","prop_x67":"inactive","dim_d65":"cat_a","val_w95":"intermittent"} |
TASK repair_structured_output
SPEC
FIELD shipping TYPE integer REQUIRED no
FIELD voltage TYPE integer REQUIRED no
FIELD invoice_id TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD width TYPE string_uri REQUIRED no
BROKEN_OUTPUT
{"shipping":214,"voltage":609,"invoice_id":"type_a" | {"shipping":214,"voltage":609,"invoice_id":"type_a"} | truncated_array | {
"type": "object",
"properties": {
"shipping": {
"type": "integer"
},
"voltage": {
"type": "integer"
},
"invoice_id": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"width": {
"type": "string"... | {"shipping":214,"voltage":609,"invoice_id":"type_a" | Unexpected end of JSON input — truncated object | {"shipping":214,"voltage":609,"invoice_id":"type_a"} |
TASK repair_structured_output
SPEC
FIELD val_w29 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD key_h14 TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD col_n42 TYPE string REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: process_payment
Result: {"key_h14": "type_b", "col_... | {"val_w29":"in_transit","key_h14":"type_b","col_n42":"example"} | agent_chain | {
"type": "object",
"properties": {
"val_w29": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"key_h14": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"c... | Let me check the system.
Action: process_payment
Result: {"key_h14": "type_b", "col_n42": "example"}
I'll query our database.
Action: calculate_docking_fee
Result: | Agent multi-step chain with truncated tool output | {"val_w29":"in_transit","key_h14":"type_b","col_n42":"example"} |
TASK repair_structured_output
SPEC
FIELD duration_ms TYPE integer REQUIRED no
FIELD thumbnail TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD branch TYPE string_email REQUIRED no
BROKEN_OUTPUT
queue_sequencing_run(thumbnail='medium') | {"thumbnail":"medium"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"duration_ms": {
"type": "integer"
},
"thumbnail": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"branch": {
"type": "string",
"format": "email"
}
},
"required... | queue_sequencing_run(thumbnail='medium') | Tool call uses Python syntax instead of JSON | {"thumbnail":"medium"} |
TASK repair_structured_output
SPEC
FIELD end_date TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD position TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD company TYPE string_email REQUIRED yes
BROKEN_OUTPUT
Tool: transfer_call
Params: {"position": "mode_a", "company2": "info@test.io"} | {"position":"mode_a","company":"info@test.io"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"end_date": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"position": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"company":... | Tool: transfer_call
Params: {"position": "mode_a", "company2": "info@test.io"} | Agent used wrong parameter name 'company2' instead of 'company' | {"position":"mode_a","company":"info@test.io"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.