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 attr_k66 TYPE boolean REQUIRED no
FIELD val_c87 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD val_e94 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD field_m40[].prop_j95 TYPE number REQUIRED yes
FIELD field_m40[].dim_t58 TYP... | {"attr_k66":true,"val_c87":"maintenance","val_e94":"reliable","field_m40":[{"prop_j95":870.46,"attr_v32":680.94,"val_p11":887},{"prop_j95":778.43,"dim_t58":"FWD","attr_v32":456.28,"val_n27":76}]} | extra_text_before | {
"type": "object",
"properties": {
"attr_k66": {
"type": "boolean"
},
"val_c87": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"val_e94": {
"type": "string",
"enum": [
"reliable"... | Here is the response in the requested format:
{"attr_k66":true,"val_c87":"maintenance","val_e94":"reliable","field_m40":[{"prop_j95":870.46,"attr_v32":680.94,"val_p11":887},{"prop_j95":778.43,"dim_t58":"FWD","attr_v32":456.28,"val_n27":76}]} | Output contains non-JSON text before the object | {"attr_k66":true,"val_c87":"maintenance","val_e94":"reliable","field_m40":[{"prop_j95":870.46,"attr_v32":680.94,"val_p11":887},{"prop_j95":778.43,"dim_t58":"FWD","attr_v32":456.28,"val_n27":76}]} |
TASK repair_structured_output
SPEC
FIELD attr_z73 TYPE integer REQUIRED no
FIELD key_v62 TYPE string_email REQUIRED yes
FIELD prop_f61 TYPE string_email REQUIRED yes
FIELD field_a27.field_t00 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD field_a27.key_g70 TYPE string VALUES pending_review|confirmed|rejected... | {"attr_z73":177,"key_v62":"admin@example.com","prop_f61":"info@example.com","field_a27":{"field_t00":"USD","col_v17":"foo"}} | trailing_comma | {
"type": "object",
"properties": {
"attr_z73": {
"type": "integer"
},
"key_v62": {
"type": "string",
"format": "email"
},
"prop_f61": {
"type": "string",
"format": "email"
},
"field_a27": {
"type": "object",
"properties": {
"field_t00": ... | {"attr_z73":177,"key_v62":"admin@example.com","prop_f61":"info@example.com","field_a27":{"field_t00":"USD","col_v17":"foo",}} | Unexpected trailing comma | {"attr_z73":177,"key_v62":"admin@example.com","prop_f61":"info@example.com","field_a27":{"field_t00":"USD","col_v17":"foo"}} |
TASK repair_structured_output
SPEC
FIELD tile TYPE string_date-time REQUIRED yes
FIELD cargo_type TYPE null REQUIRED yes
FIELD dosage TYPE integer REQUIRED yes
FIELD notes TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
BROKEN_OUTPUT
{"tile": "2022-08-01T16:57:00", "cargo_type": null, "dosage": 123... | {"tile":"2022-08-01T16:57:00Z","cargo_type":null,"dosage":123,"notes":"homozygous"} | date_format_error | {
"type": "object",
"properties": {
"tile": {
"type": "string",
"format": "date-time"
},
"cargo_type": {
"type": "null"
},
"dosage": {
"type": "integer"
},
"notes": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"he... | {"tile": "2022-08-01T16:57:00", "cargo_type": null, "dosage": 123, "notes": "homozygous"} | Field 'tile' has invalid date format | {"tile":"2022-08-01T16:57:00Z","cargo_type":null,"dosage":123,"notes":"homozygous"} |
TASK repair_structured_output
SPEC
FIELD col_n43 TYPE string_email REQUIRED no
FIELD param_e18 TYPE string REQUIRED no
FIELD key_d82 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
FIELD param_x64 TYPE number REQUIRED no
BROKEN_OUTPUT
{"col_n43": "ops@test.io", "param_e18": "QC-07", "key_d82... | {"col_n43":"ops@test.io","param_e18":"QC-07","key_d82":"mode_a","param_x64":1.57} | invalid_enum | {
"type": "object",
"properties": {
"col_n43": {
"type": "string",
"format": "email"
},
"param_e18": {
"type": "string"
},
"key_d82": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mod... | {"col_n43": "ops@test.io", "param_e18": "QC-07", "key_d82": "invalid_option_269", "param_x64": 1.57} | Field 'key_d82' has invalid enum value 'invalid_option_269', expected one of ['mode_a', 'mode_b', 'mode_c', 'mode_d', 'mode_e', 'mode_f'] | {"col_n43":"ops@test.io","param_e18":"QC-07","key_d82":"mode_a","param_x64":1.57} |
TASK repair_structured_output
SPEC
FIELD options TYPE null REQUIRED yes
FIELD maturity_date TYPE integer REQUIRED no
FIELD yield_pct TYPE string_email REQUIRED no
FIELD date[] TYPE integer REQUIRED no
BROKEN_OUTPUT
{"options":null,"maturity_date":640,"yield_pct":"user@example.com" | {"options":null,"maturity_date":640,"yield_pct":"user@example.com"} | truncated_object | {
"type": "object",
"properties": {
"options": {
"type": "null"
},
"maturity_date": {
"type": "integer"
},
"yield_pct": {
"type": "string",
"format": "email"
},
"date": {
"type": "array",
"items": {
"type": "integer"
}
}
},
"requi... | {"options":null,"maturity_date":640,"yield_pct":"user@example.com" | Unexpected end of JSON input — truncated object | {"options":null,"maturity_date":640,"yield_pct":"user@example.com"} |
TASK repair_structured_output
SPEC
FIELD feedback TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD procedure_code TYPE string REQUIRED yes
FIELD ph_level TYPE string REQUIRED yes
BROKEN_OUTPUT
The procedure_code is user@domain.com and {"feedback":"high","procedure_code":"user@domain.com","ph_level":"htt... | {"feedback":"high","procedure_code":"user@domain.com","ph_level":"https://example.com"} | partial_structure | {
"type": "object",
"properties": {
"feedback": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"procedure_code": {
"type": "string"
},
"ph_level": {
"type": "string"
}
},
"required": [
"procedure_co... | The procedure_code is user@domain.com and {"feedback":"high","procedure_code":"user@domain.com","ph_level":"https://example.com"} | Output mixes natural language with JSON | {"feedback":"high","procedure_code":"user@domain.com","ph_level":"https://example.com"} |
TASK repair_structured_output
SPEC
FIELD param_u95 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD col_h93 TYPE string REQUIRED no
FIELD col_k16 TYPE integer REQUIRED yes
FIELD field_i86 TYPE boolean REQUIRED yes
FIELD param_f90 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD col_k82 TYPE str... | {"param_u95":"mode_d","col_k16":232,"field_i86":true,"param_f90":"BRL","col_k82":"https://example.org/v1","attr_d13":"pending"} | partial_structure | {
"type": "object",
"properties": {
"param_u95": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d"
]
},
"col_h93": {
"type": "string"
},
"col_k16": {
"type": "integer"
},
"field_i86": {
"type": "boolea... | Based on the data, attr_d13 is pending. {"param_u95":"mode_d","col_k16":232,"field_i86":true,"param_f90":"BRL","col_k82":"https://example.org/v1","attr_d13":"pending"} | Output mixes natural language with JSON | {"param_u95":"mode_d","col_k16":232,"field_i86":true,"param_f90":"BRL","col_k82":"https://example.org/v1","attr_d13":"pending"} |
TASK repair_structured_output
SPEC
FIELD col_e66 TYPE string REQUIRED yes
FIELD key_p81 TYPE string REQUIRED no
FIELD col_l74 TYPE string REQUIRED yes
FIELD key_z80 TYPE string_email REQUIRED yes
FIELD attr_q24 TYPE number REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: lookup_customer
Arguments: {"col_e6... | {"col_e66":"Berlin","key_p81":"Paris","col_l74":"Tokyo","key_z80":"admin@test.io","attr_q24":639.57} | tool_call_partial_args | {
"type": "object",
"properties": {
"col_e66": {
"type": "string"
},
"key_p81": {
"type": "string"
},
"col_l74": {
"type": "string"
},
"key_z80": {
"type": "string",
"format": "email"
},
"attr_q24": {
"type": "number"
}
},
"required": [... | Let me check the system.
Action: lookup_customer
Arguments: {"col_e66": "Berlin", "key_p81": "Paris", "key_z80": "admin@test.io", "attr_q24": 639.57} | Agent tool call missing required parameter 'col_l74' | {"col_e66":"Berlin","key_p81":"Paris","col_l74":"Tokyo","key_z80":"admin@test.io","attr_q24":639.57} |
TASK repair_structured_output
SPEC
FIELD field_b66.param_o38 TYPE string REQUIRED yes
FIELD field_b66.val_c75 TYPE string_uri REQUIRED no
FIELD field_b66.field_v22 TYPE string REQUIRED no
FIELD field_b66.dim_r31 TYPE string REQUIRED no
FIELD field_b66.param_m95 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD ... | {"field_b66":{"param_o38":"demo","val_c75":"https://example.com/api","field_v22":"New York","dim_r31":"quux","param_m95":"BRL"},"attr_f77":954.58,"param_w21":{"key_j27":105.35,"field_f09":false,"val_k57":[337.03,599.74,313.37]},"val_h21":"phone","field_k69":"unstable","field_d71":562.93,"col_i54":false} | agent_chain | {
"type": "object",
"properties": {
"field_b66": {
"type": "object",
"properties": {
"param_o38": {
"type": "string"
},
"val_c75": {
"type": "string",
"format": "uri"
},
"field_v22": {
"type": "string"
},
... | I need to look up the information first.
Action: validate_sample
Result: {"field_b66": {"param_o38": "demo", "val_c75": "https://example.com/api", "field_v22": "New York", "dim_r31": "quux", "param_m95": "BRL"}, "param_w21": {"key_j27": 105.35, "field_f09": false, "val_k57": [337.03, 599.74, 313.37]}, "val_h21": "phone... | Agent multi-step chain with truncated tool output | {"field_b66":{"param_o38":"demo","val_c75":"https://example.com/api","field_v22":"New York","dim_r31":"quux","param_m95":"BRL"},"attr_f77":954.58,"param_w21":{"key_j27":105.35,"field_f09":false,"val_k57":[337.03,599.74,313.37]},"val_h21":"phone","field_k69":"unstable","field_d71":562.93,"col_i54":false} |
TASK repair_structured_output
SPEC
FIELD dim_i22 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD key_r53 TYPE integer REQUIRED no
FIELD col_h50 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD attr_s98 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
BROKEN_OUTP... | {"dim_i22":"pro","key_r53":976,"col_h50":"hemizygous","attr_s98":"type_d"} | trailing_comma | {
"type": "object",
"properties": {
"dim_i22": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"key_r53": {
"type": "integer"
},
"col_h50": {
"type": "string",
"enum": [
"homozygous",
"het... | {"dim_i22":"pro","key_r53":976,"col_h50":"hemizygous","attr_s98":"type_d",} | Unexpected trailing comma | {"dim_i22":"pro","key_r53":976,"col_h50":"hemizygous","attr_s98":"type_d"} |
TASK repair_structured_output
SPEC
FIELD prop_l06 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes
FIELD dim_v44 TYPE number REQUIRED no
FIELD val_n87[] TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD param_o49[] TYPE number REQUIRED no
BROKEN_OUTPUT
{"prop_l0... | {"prop_l06":"option_a","dim_v44":472.87,"param_o49":[603.22,956.91,717.98]} | missing_brace | {
"type": "object",
"properties": {
"prop_l06": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e",
"option_f"
]
},
"dim_v44": {
"type": "number"
},
"val_n87": {
"type": "array",
... | {"prop_l06":"option_a","dim_v44":472.87,"param_o49":[603.22,956.91,717.98] | Missing closing brace | {"prop_l06":"option_a","dim_v44":472.87,"param_o49":[603.22,956.91,717.98]} |
TASK repair_structured_output
SPEC
FIELD yield_pct TYPE integer REQUIRED no
FIELD decay_rate.values TYPE integer REQUIRED yes
FIELD decay_rate.commit_hash TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD decay_rate.phenotype TYPE string_email REQUIRED no
FIELD diagnosis_code TYPE string_email REQ... | {"yield_pct":529,"decay_rate":{"values":286,"commit_hash":"new","phenotype":"admin@domain.org"},"diagnosis_code":"admin@example.com","email":"quux","due_date":"large"} | tool_call_partial_args | {
"type": "object",
"properties": {
"yield_pct": {
"type": "integer"
},
"decay_rate": {
"type": "object",
"properties": {
"values": {
"type": "integer"
},
"commit_hash": {
"type": "string",
"enum": [
"new",
"... | I need to look up the information first.
Action: get_account
Arguments: {"yield_pct": 529, "decay_rate": {"values": 286, "commit_hash": "new", "phenotype": "admin@domain.org"}, "diagnosis_code": "admin@example.com", "due_date": "large"} | Agent tool call missing required parameter 'email' | {"yield_pct":529,"decay_rate":{"values":286,"commit_hash":"new","phenotype":"admin@domain.org"},"diagnosis_code":"admin@example.com","email":"quux","due_date":"large"} |
TASK repair_structured_output
SPEC
FIELD prop_r15 TYPE string REQUIRED no
FIELD param_q04 TYPE boolean REQUIRED no
FIELD col_g77 TYPE string REQUIRED yes
FIELD field_v27 TYPE string REQUIRED no
FIELD field_a21 TYPE integer REQUIRED yes
FIELD field_a58 TYPE string REQUIRED no
BROKEN_OUTPUT
{"prop_r15":"qux","param_q04... | {"prop_r15":"qux","param_q04":false,"col_g77":"chr1","field_v27":"approved","field_a21":917} | trailing_comma | {
"type": "object",
"properties": {
"prop_r15": {
"type": "string"
},
"param_q04": {
"type": "boolean"
},
"col_g77": {
"type": "string"
},
"field_v27": {
"type": "string"
},
"field_a21": {
"type": "integer"
},
"field_a58": {
"type": "st... | {"prop_r15":"qux","param_q04":false,"col_g77":"chr1","field_v27":"approved","field_a21":917,} | Unexpected trailing comma | {"prop_r15":"qux","param_q04":false,"col_g77":"chr1","field_v27":"approved","field_a21":917} |
TASK repair_structured_output
SPEC
FIELD prop_l21 TYPE string_email REQUIRED no
FIELD val_u18 TYPE string REQUIRED yes
FIELD field_z47.dim_i70 TYPE integer REQUIRED yes
FIELD field_z47.key_j09 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD field_z47.key_u67 TYPE string VALUES synonymous|missense|nonsense|f... | {"prop_l21":"admin@test.io","val_u18":"2023-12-25","field_z47":{"dim_i70":516,"key_j09":"email","key_u67":"frameshift","field_m21":{"val_h86":"ops@example.com","col_e50":"Charlie","attr_y84":"qux","key_c81":912.72,"key_h81":true}}} | tool_call_text_mix | {
"type": "object",
"properties": {
"prop_l21": {
"type": "string",
"format": "email"
},
"val_u18": {
"type": "string"
},
"field_z47": {
"type": "object",
"properties": {
"dim_i70": {
"type": "integer"
},
"key_j09": {
"typ... | Let me check the system.
<tool_call name="generate_report">
{"prop_l21":"admin@test.io","val_u18":"2023-12-25","field_z47":{"dim_i70":516,"key_j09":"email","key_u67":"frameshift","field_m21":{"val_h86":"ops@example.com","col_e50":"Charlie","attr_y84":"qux","key_c81":912.72,"key_h81":true}}}
</tool_call.
Done! | Agent response mixes reasoning text with tool call | {"prop_l21":"admin@test.io","val_u18":"2023-12-25","field_z47":{"dim_i70":516,"key_j09":"email","key_u67":"frameshift","field_m21":{"val_h86":"ops@example.com","col_e50":"Charlie","attr_y84":"qux","key_c81":912.72,"key_h81":true}}} |
TASK repair_structured_output
SPEC
FIELD key_m20 TYPE integer REQUIRED no
FIELD attr_v29 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD val_s45 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD param_g19 TYPE integer REQUIRED yes
FIELD val_v84 TYPE string REQUIRED yes
FIELD dim_u0... | {"attr_v29":"cat_f","param_g19":669,"val_v84":"demo","dim_u07":null,"field_v21":"berthed"} | tool_call_bad_format | {
"type": "object",
"properties": {
"key_m20": {
"type": "integer"
},
"attr_v29": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e",
"cat_f"
]
},
"val_s45": {
"type": "string",
"enum": [
... | <functioncall> delete_item
{attr_v29: "cat_f", param_g19: 669, val_v84: "demo", dim_u07: null, field_v21: "berthed"} | Tool call has malformed arguments — unquoted keys in function parameters | {"attr_v29":"cat_f","param_g19":669,"val_v84":"demo","dim_u07":null,"field_v21":"berthed"} |
TASK repair_structured_output
SPEC
FIELD start_date TYPE string_uri REQUIRED no
FIELD position TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD invoice_id TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD salinity TYPE boolean REQUIRED no
FIELD decay_rate TYPE number REQUIRED no
FIELD cou... | {"start_date":"https://www.com/data","position":"small","salinity":true,"decay_rate":876.47,"country":{"visible":"draft","image_url":"medium","duration_ms":"berthed"},"discount":659.85,"compound":{"bill_of_lading":null,"velocity":"baz","width":"baz","level":"info@test.io","visible":"pending"}} | tool_call_wrong_param | {
"type": "object",
"properties": {
"start_date": {
"type": "string",
"format": "uri"
},
"position": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"invoice_id": {
"type": "string",
"enum": [
"... | Tool: align_reads
Params: {"start_date": "https://www.com/data", "position": "small", "decay_rate": 876.47, "country": {"visible": "draft", "image_url": "medium", "duration_ms": "berthed"}, "discount": 659.85, "compound": {"bill_of_lading": null, "velocity": "baz", "width": "baz", "level": "info@test.io", "visible": "p... | Agent used wrong parameter name 'salinity_name' instead of 'salinity' | {"start_date":"https://www.com/data","position":"small","salinity":true,"decay_rate":876.47,"country":{"visible":"draft","image_url":"medium","duration_ms":"berthed"},"discount":659.85,"compound":{"bill_of_lading":null,"velocity":"baz","width":"baz","level":"info@test.io","visible":"pending"}} |
TASK repair_structured_output
SPEC
FIELD key_g53.param_u13 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD key_g53.val_n98 TYPE boolean REQUIRED yes
FIELD key_g53.val_c98 TYPE null REQUIRED no
FIELD key_g53.key_l38 TYPE string REQUIRED no
FIELD key_g53.prop_z17[].dim_c34 TYPE string_date-time REQUIRED y... | {"key_g53":{"param_u13":"low","val_n98":false,"key_l38":"user@domain.com","prop_z17":[{"dim_c34":"2021-11-09T21:41:00Z","val_h91":"user@domain.com","key_v93":"Santos","col_p53":"2023-12-25","val_k75":["Bob"]}]},"col_k40":"user@domain.com","attr_w78":true,"col_k60":"Oliveira"} | trailing_comma | {
"type": "object",
"properties": {
"key_g53": {
"type": "object",
"properties": {
"param_u13": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"val_n98": {
"type": ... | {"key_g53":{"param_u13":"low","val_n98":false,"key_l38":"user@domain.com","prop_z17":[{"dim_c34":"2021-11-09T21:41:00Z","val_h91":"user@domain.com","key_v93":"Santos","col_p53":"2023-12-25","val_k75":["Bob"]}]},"col_k40":"user@domain.com","attr_w78":true,"col_k60":"Oliveira",} | Unexpected trailing comma | {"key_g53":{"param_u13":"low","val_n98":false,"key_l38":"user@domain.com","prop_z17":[{"dim_c34":"2021-11-09T21:41:00Z","val_h91":"user@domain.com","key_v93":"Santos","col_p53":"2023-12-25","val_k75":["Bob"]}]},"col_k40":"user@domain.com","attr_w78":true,"col_k60":"Oliveira"} |
TASK repair_structured_output
SPEC
FIELD attr_d78 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD key_s01 TYPE string_uri REQUIRED no
FIELD attr_m02 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD key_g24 TYPE number REQUIRED no
FIELD val_a59 TYPE string VALUES coastal|oceanic|inland|arctic R... | {"attr_d78":"viewer","key_s01":"https://example.com/api","attr_m02":"blue","val_a59":"arctic","param_i70":{"col_q66":"MV-Evergreen-01","field_s49":"https://api.example.com/v1","key_z16":"2022-02-07T06:07:00Z","field_j05":"QC-07","field_w92":"2022-12-14T04:15:00Z","col_n34":false,"key_u30":"inactive"},"attr_x65":{"prop_... | extra_text_after | {
"type": "object",
"properties": {
"attr_d78": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"key_s01": {
"type": "string",
"format": "uri"
},
"attr_m02": {
"type": "string",
"enum": [
"red",
"blu... | {"attr_d78":"viewer","key_s01":"https://example.com/api","attr_m02":"blue","val_a59":"arctic","param_i70":{"col_q66":"MV-Evergreen-01","field_s49":"https://api.example.com/v1","key_z16":"2022-02-07T06:07:00Z","field_j05":"QC-07","field_w92":"2022-12-14T04:15:00Z","col_n34":false,"key_u30":"inactive"},"attr_x65":{"prop_... | Output contains non-JSON text after the object | {"attr_d78":"viewer","key_s01":"https://example.com/api","attr_m02":"blue","val_a59":"arctic","param_i70":{"col_q66":"MV-Evergreen-01","field_s49":"https://api.example.com/v1","key_z16":"2022-02-07T06:07:00Z","field_j05":"QC-07","field_w92":"2022-12-14T04:15:00Z","col_n34":false,"key_u30":"inactive"},"attr_x65":{"prop_... |
TASK repair_structured_output
SPEC
FIELD bearing TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD options TYPE string REQUIRED no
FIELD url TYPE integer REQUIRED no
FIELD amount TYPE null REQUIRED no
FIELD altitude TYPE integer REQUIRED no
FIELD type TYPE string REQUIRED yes
FIELD username TYPE string VALUES type_a... | {"bearing":"mode_a","amount":null,"type":"Diana","umi":713} | tool_call_partial_args | {
"type": "object",
"properties": {
"bearing": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"options": {
"type": "string"
},
"url": {
"type": "integer"
},
"amount": {
"type": "null"
},
"altitude": {
"type": "integ... | I need to look up the information first.
Action: calibrate_instrument
Arguments: {"amount": null, "type": "Diana", "umi": 713} | Agent tool call missing required parameter 'bearing' | {"bearing":"mode_a","amount":null,"type":"Diana","umi":713} |
TASK repair_structured_output
SPEC
FIELD key_o40 TYPE boolean REQUIRED yes
FIELD field_u12 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes
FIELD attr_n33 TYPE null REQUIRED yes
FIELD field_a19 TYPE string REQUIRED no
BROKEN_OUTPUT
{"key_o40": false, "field_u12": "option_c", "fiel... | {"key_o40":false,"field_u12":"option_c","attr_n33":null,"field_a19":"Sao Paulo"} | missing_required | {
"type": "object",
"properties": {
"key_o40": {
"type": "boolean"
},
"field_u12": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e",
"option_f"
]
},
"attr_n33": {
"type": "null"
... | {"key_o40": false, "field_u12": "option_c", "field_a19": "Sao Paulo"} | Required field 'attr_n33' is missing | {"key_o40":false,"field_u12":"option_c","attr_n33":null,"field_a19":"Sao Paulo"} |
TASK repair_structured_output
SPEC
FIELD key_y94 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD col_f61 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD prop_f21 TYPE boolean REQUIRED no
FIELD col_z82 TYPE integer REQUIRED no
FIELD field_v81 TYPE number REQUIRED no
FIELD col... | {"key_y94":"anchored","col_f61":"level_1","prop_f21":true,"col_z82":918,"field_v81":382.01,"col_f17":46,"prop_x00":"quux","attr_o13":"MV-Evergreen-01"} | truncated_array | {
"type": "object",
"properties": {
"key_y94": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"col_f61": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
... | {"key_y94":"anchored","col_f61":"level_1","prop_f21":true,"col_z82":918,"field_v81":382.01,"col_f17":46,"prop_x00":"quux","attr_o13":"MV-Evergreen-01" | Unexpected end of JSON input — truncated object | {"key_y94":"anchored","col_f61":"level_1","prop_f21":true,"col_z82":918,"field_v81":382.01,"col_f17":46,"prop_x00":"quux","attr_o13":"MV-Evergreen-01"} |
TASK repair_structured_output
SPEC
FIELD param_p88 TYPE integer REQUIRED yes
FIELD field_x14 TYPE string REQUIRED no
FIELD prop_c22 TYPE string REQUIRED no
FIELD attr_r81 TYPE integer REQUIRED yes
FIELD attr_y64[].dim_p15 TYPE string_uri REQUIRED no
FIELD attr_y64[].col_k10 TYPE integer REQUIRED yes
FIELD attr_y64[].f... | {"param_p88":84,"field_x14":"test@example.com","attr_r81":933} | thought_process | {
"type": "object",
"properties": {
"param_p88": {
"type": "integer"
},
"field_x14": {
"type": "string"
},
"prop_c22": {
"type": "string"
},
"attr_r81": {
"type": "integer"
},
"attr_y64": {
"type": "array",
"items": {
"type": "object",
... | Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"param_p88":84,"field_x14":"test@example.com","attr_r81":933} | Output contains chain-of-thought reasoning before JSON | {"param_p88":84,"field_x14":"test@example.com","attr_r81":933} |
TASK repair_structured_output
SPEC
FIELD val_c25 TYPE integer REQUIRED yes
FIELD col_e48 TYPE number REQUIRED yes
FIELD dim_z81 TYPE string REQUIRED no
BROKEN_OUTPUT
{"val_c25": "\"503\"", "col_e48": 808.07, "dim_z81": "Johnson"} | {"val_c25":503,"col_e48":808.07,"dim_z81":"Johnson"} | wrong_type | {
"type": "object",
"properties": {
"val_c25": {
"type": "integer"
},
"col_e48": {
"type": "number"
},
"dim_z81": {
"type": "string"
}
},
"required": [
"col_e48",
"val_c25"
]
} | {"val_c25": "\"503\"", "col_e48": 808.07, "dim_z81": "Johnson"} | Field 'val_c25' must be integer, got string | {"val_c25":503,"col_e48":808.07,"dim_z81":"Johnson"} |
TASK repair_structured_output
SPEC
FIELD balance TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD velocity TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD values TYPE number REQUIRED yes
BROKEN_OUTPUT
transfer_call(balance='blue', velocity='rejected', values=878.05) | {"balance":"blue","velocity":"rejected","values":878.05} | tool_call_python_syntax | {
"type": "object",
"properties": {
"balance": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"velocity": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
... | transfer_call(balance='blue', velocity='rejected', values=878.05) | Tool call uses Python syntax instead of JSON | {"balance":"blue","velocity":"rejected","values":878.05} |
TASK repair_structured_output
SPEC
FIELD published TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD throttle_pos.conductivity TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD throttle_pos.medication TYPE string REQUIRED no
FIELD throttle_pos.umi TYPE string REQUIRED yes
FIELD thr... | {"throttle_pos":{"conductivity":"cat_a","medication":"completed","umi":"PASS","country":[{"wavelength":814,"paragraph":"baz","current_draw":988}],"description":[{"run_id":"foo","isotope":"high","version":385,"procedure_code":"married","vital_sign":[true,false],"berth_slot":[null,null]},{"run_id":"Santos","isotope":"med... | thought_process | {
"type": "object",
"properties": {
"published": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"throttle_pos": {
"type": "object",
"properties": {
"conductivity": {
"type": "string",
"enum... | Let me construct this step by step.
First, I'll identify the required fields, then fill in the values.
{"throttle_pos":{"conductivity":"cat_a","medication":"completed","umi":"PASS","country":[{"wavelength":814,"paragraph":"baz","current_draw":988}],"description":[{"run_id":"foo","isotope":"high","version":385,"procedu... | Output contains chain-of-thought reasoning before JSON | {"throttle_pos":{"conductivity":"cat_a","medication":"completed","umi":"PASS","country":[{"wavelength":814,"paragraph":"baz","current_draw":988}],"description":[{"run_id":"foo","isotope":"high","version":385,"procedure_code":"married","vital_sign":[true,false],"berth_slot":[null,null]},{"run_id":"Santos","isotope":"med... |
TASK repair_structured_output
SPEC
FIELD city TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD aligned_pct.interest_rate TYPE integer REQUIRED yes
FIELD aligned_pct.terminal_id TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD aligned_pct.maturity_date.decay_rate TYPE... | {"city":"pending_review","aligned_pct":{"interest_rate":45,"terminal_id":"cat_c","maturity_date":{"decay_rate":null,"zip_code":"user@test.io","half_life":true},"half_life":{"balance":"cancelled","salinity":"user@example.com","footnote":522}},"allele":405.93,"altitude":"cancelled"} | extra_text_before | {
"type": "object",
"properties": {
"city": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"aligned_pct": {
"type": "object",
"properties": {
"interest_rate": {
"type": "integer"
... | Here is the response in the requested format:
{"city":"pending_review","aligned_pct":{"interest_rate":45,"terminal_id":"cat_c","maturity_date":{"decay_rate":null,"zip_code":"user@test.io","half_life":true},"half_life":{"balance":"cancelled","salinity":"user@example.com","footnote":522}},"allele":405.93,"altitude":"canc... | Output contains non-JSON text before the object | {"city":"pending_review","aligned_pct":{"interest_rate":45,"terminal_id":"cat_c","maturity_date":{"decay_rate":null,"zip_code":"user@test.io","half_life":true},"half_life":{"balance":"cancelled","salinity":"user@example.com","footnote":522}},"allele":405.93,"altitude":"cancelled"} |
TASK repair_structured_output
SPEC
FIELD last_name TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD chapter TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD bill_of_lading TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD medication TYPE integer REQUIRED yes
FIELD t... | {"last_name":"critical","chapter":"editor","bill_of_lading":"rejected","medication":75,"turbidity":"enterprise","berth_slot":"test@example.com","freight_class":"underway"} | missing_required | {
"type": "object",
"properties": {
"last_name": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"chapter": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"bill_of_l... | {"last_name": "critical", "chapter": "editor", "bill_of_lading": "rejected", "medication": 75, "turbidity": "enterprise", "berth_slot": "test@example.com"} | Required field 'freight_class' is missing | {"last_name":"critical","chapter":"editor","bill_of_lading":"rejected","medication":75,"turbidity":"enterprise","berth_slot":"test@example.com","freight_class":"underway"} |
TASK repair_structured_output
SPEC
FIELD status TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD umi TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD title TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD due_date TYPE number REQUIRED no
FI... | {"status":"nonsense","umi":"in_progress","title":"maintenance","due_date":289.79,"total":true,"ward":"Paris","active":494} | agent_chain | {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"umi": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"close... | Let me check the system.
Action: update_record
Result: {"status": "nonsense", "umi": "in_progress", "title": "maintenance", "total": true, "ward": "Paris", "active": 494}
I'll query our database.
Action: validate_sample
Result: | Agent multi-step chain with truncated tool output | {"status":"nonsense","umi":"in_progress","title":"maintenance","due_date":289.79,"total":true,"ward":"Paris","active":494} |
TASK repair_structured_output
SPEC
FIELD attr_z62 TYPE number REQUIRED no
FIELD param_w83 TYPE string REQUIRED no
FIELD dim_r95 TYPE string REQUIRED no
FIELD attr_m49.param_h26 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD attr_m49.dim_u33 TYPE number REQUIRED no
FIELD attr_m49.val_j16 TYPE boolean REQUIRE... | {"param_w83":"QC-07","dim_r95":"Luis","attr_m49":{"param_h26":"BRL","val_j16":true,"prop_o89":"2023-12-25","attr_m54":[{"attr_a31":true,"prop_h10":"black","prop_y61":"large"},{"attr_a31":true,"prop_h10":"blue","prop_y61":"medium"},{"attr_a31":true,"prop_h10":"green","prop_y61":"xl"}]},"key_x25":"viewer","attr_i16":"ope... | partial_structure | {
"type": "object",
"properties": {
"attr_z62": {
"type": "number"
},
"param_w83": {
"type": "string"
},
"dim_r95": {
"type": "string"
},
"attr_m49": {
"type": "object",
"properties": {
"param_h26": {
"type": "string",
"enum": [
... | The attr_m49 is {'param_h26': 'BRL', 'val_j16': True, 'prop_o89': '2023-12-25', 'attr_m54': [{'attr_a31': True, 'prop_h10': 'black', 'prop_y61': 'large'}, {'attr_a31': True, 'prop_h10': 'blue', 'prop_y61': 'medium'}, {'attr_a31': True, 'prop_h10': 'green', 'prop_y61': 'xl'}]} and {"param_w83":"QC-07","dim_r95":"Luis","... | Output mixes natural language with JSON | {"param_w83":"QC-07","dim_r95":"Luis","attr_m49":{"param_h26":"BRL","val_j16":true,"prop_o89":"2023-12-25","attr_m54":[{"attr_a31":true,"prop_h10":"black","prop_y61":"large"},{"attr_a31":true,"prop_h10":"blue","prop_y61":"medium"},{"attr_a31":true,"prop_h10":"green","prop_y61":"xl"}]},"key_x25":"viewer","attr_i16":"ope... |
TASK repair_structured_output
SPEC
FIELD decay_rate TYPE integer REQUIRED no
FIELD website TYPE string REQUIRED no
FIELD quality_score[] TYPE boolean REQUIRED yes
BROKEN_OUTPUT
```json
{"website":"Tokyo","quality_score":[true,false]}
``` | {"website":"Tokyo","quality_score":[true,false]} | markdown_fences | {
"type": "object",
"properties": {
"decay_rate": {
"type": "integer"
},
"website": {
"type": "string"
},
"quality_score": {
"type": "array",
"items": {
"type": "boolean"
}
}
},
"required": [
"quality_score"
]
} | ```json
{"website":"Tokyo","quality_score":[true,false]}
``` | Output contains markdown code fences | {"website":"Tokyo","quality_score":[true,false]} |
TASK repair_structured_output
SPEC
FIELD prop_g97 TYPE string REQUIRED no
FIELD param_s02 TYPE string VALUES cat_a|cat_b REQUIRED yes
FIELD attr_z33 TYPE string REQUIRED yes
FIELD prop_z48 TYPE boolean REQUIRED no
FIELD val_u60 TYPE boolean REQUIRED no
BROKEN_OUTPUT
Sure, here's the result:
```json
{"prop_g97":"A sho... | {"prop_g97":"A short description.","param_s02":"cat_a","attr_z33":"bar","prop_z48":false} | markdown_explanation | {
"type": "object",
"properties": {
"prop_g97": {
"type": "string"
},
"param_s02": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"attr_z33": {
"type": "string"
},
"prop_z48": {
"type": "boolean"
},
"val_u60": {
"type... | Sure, here's the result:
```json
{"prop_g97":"A short description.","param_s02":"cat_a","attr_z33":"bar","prop_z48":false}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"prop_g97":"A short description.","param_s02":"cat_a","attr_z33":"bar","prop_z48":false} |
TASK repair_structured_output
SPEC
FIELD tags TYPE null REQUIRED no
FIELD status TYPE integer REQUIRED yes
FIELD throttle_pos.yield_pct TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD throttle_pos.port_code TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD throttle_pos.hei... | {"tags":null,"status":474,"throttle_pos":{"height":"test@test.io","step":819,"decay_rate":"Luis"},"procedure_code":false,"updated_at":"PASS"} | wrong_type | {
"type": "object",
"properties": {
"tags": {
"type": "null"
},
"status": {
"type": "integer"
},
"throttle_pos": {
"type": "object",
"properties": {
"yield_pct": {
"type": "string",
"enum": [
"synonymous",
"missense",
... | {"tags": null, "status": "\"474\"", "throttle_pos": {"height": "test@test.io", "step": 819, "decay_rate": "Luis"}, "procedure_code": false, "updated_at": "PASS"} | Field 'status' must be integer, got string | {"tags":null,"status":474,"throttle_pos":{"height":"test@test.io","step":819,"decay_rate":"Luis"},"procedure_code":false,"updated_at":"PASS"} |
TASK repair_structured_output
SPEC
FIELD param_m03 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD dim_u31 TYPE integer REQUIRED no
FIELD field_f51 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD param_w73 TYPE integer REQUIRED no
FIELD key_g77 TYPE integer REQUIRED no
FIELD ... | {"param_m03":"escalated","field_f51":"phone","param_w73":477,"key_g77":593,"dim_z12":982} | thought_process | {
"type": "object",
"properties": {
"param_m03": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"dim_u31": {
"type": "integer"
},
"field_f51": {
"type": "string",
"enum": [
"ema... | Analyzing the schema to generate valid JSON...
Checking required fields and types...
{"param_m03":"escalated","field_f51":"phone","param_w73":477,"key_g77":593,"dim_z12":982} | Output contains chain-of-thought reasoning before JSON | {"param_m03":"escalated","field_f51":"phone","param_w73":477,"key_g77":593,"dim_z12":982} |
TASK repair_structured_output
SPEC
FIELD compound TYPE string VALUES success|error|warning|info REQUIRED no
FIELD url TYPE integer REQUIRED yes
FIELD gene_id TYPE number REQUIRED no
BROKEN_OUTPUT
Here is the response in the requested format:
{"compound":"success","url":202,"gene_id":770.2} | {"compound":"success","url":202,"gene_id":770.2} | extra_text_before | {
"type": "object",
"properties": {
"compound": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"url": {
"type": "integer"
},
"gene_id": {
"type": "number"
}
},
"required": [
"url"
]
} | Here is the response in the requested format:
{"compound":"success","url":202,"gene_id":770.2} | Output contains non-JSON text before the object | {"compound":"success","url":202,"gene_id":770.2} |
TASK repair_structured_output
SPEC
FIELD dim_c07 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD prop_b55 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD key_j13 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
BROKEN_OUTPUT
Below is the JSON object:
```json
{"p... | {"prop_b55":"high","key_j13":"missense"} | markdown_explanation | {
"type": "object",
"properties": {
"dim_c07": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"prop_b55": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
... | Below is the JSON object:
```json
{"prop_b55":"high","key_j13":"missense"}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"prop_b55":"high","key_j13":"missense"} |
TASK repair_structured_output
SPEC
FIELD attr_e70 TYPE string REQUIRED yes
FIELD dim_h43.key_x14 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD dim_h43.key_r62 TYPE string REQUIRED yes
FIELD dim_h43.val_o57 TYPE number REQUIRED yes
FIELD dim_h43.val_a96 TYPE integer REQUIRED yes
FIELD prop_f72.... | {"attr_e70":"inactive","dim_h43":{"key_x14":"berthed","key_r62":"world","val_o57":696.69,"val_a96":970},"prop_f72":{"col_z86":"ops@test.io","field_z04":{"field_m73":null,"col_g24":794.08,"attr_a36":"2021-03-19T00:26:00Z","col_o14":232.2,"attr_b16":"critical"},"attr_o49":{"attr_z84":118.66,"dim_r59":"medium"},"col_c33":... | markdown_explanation | {
"type": "object",
"properties": {
"attr_e70": {
"type": "string"
},
"dim_h43": {
"type": "object",
"properties": {
"key_x14": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
... | Based on your request, here is the data:
```json
{"attr_e70":"inactive","dim_h43":{"key_x14":"berthed","key_r62":"world","val_o57":696.69,"val_a96":970},"prop_f72":{"col_z86":"ops@test.io","field_z04":{"field_m73":null,"col_g24":794.08,"attr_a36":"2021-03-19T00:26:00Z","col_o14":232.2,"attr_b16":"critical"},"attr_o49":... | Output contains markdown and explanatory text around JSON | {"attr_e70":"inactive","dim_h43":{"key_x14":"berthed","key_r62":"world","val_o57":696.69,"val_a96":970},"prop_f72":{"col_z86":"ops@test.io","field_z04":{"field_m73":null,"col_g24":794.08,"attr_a36":"2021-03-19T00:26:00Z","col_o14":232.2,"attr_b16":"critical"},"attr_o49":{"attr_z84":118.66,"dim_r59":"medium"},"col_c33":... |
TASK repair_structured_output
SPEC
FIELD dim_k33 TYPE integer REQUIRED yes
FIELD key_p36.prop_v85 TYPE string REQUIRED yes
FIELD key_p36.key_d29 TYPE boolean REQUIRED no
FIELD key_p36.field_n50 TYPE number REQUIRED yes
FIELD key_p36.field_c59[].key_m66 TYPE string VALUES single|married|divorced REQUIRED no
FIELD key_p... | {"dim_k33":716,"param_b50":"mode_b","val_w40":"ops@test.io"} | missing_required | {
"type": "object",
"properties": {
"dim_k33": {
"type": "integer"
},
"key_p36": {
"type": "object",
"properties": {
"prop_v85": {
"type": "string"
},
"key_d29": {
"type": "boolean"
},
"field_n50": {
"type": "number"... | {"param_b50": "mode_b", "val_w40": "ops@test.io"} | Required field 'dim_k33' is missing | {"dim_k33":716,"param_b50":"mode_b","val_w40":"ops@test.io"} |
TASK repair_structured_output
SPEC
FIELD attr_n08 TYPE string_uri REQUIRED no
FIELD attr_d35 TYPE string REQUIRED no
FIELD param_f92 TYPE string REQUIRED no
FIELD prop_d07 TYPE string REQUIRED no
FIELD val_n69 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD key_m17 TYPE null REQUIRED yes
BROK... | {"attr_d35":"foo","param_f92":"completed","prop_d07":"Luis","val_n69":"option_a","key_m17":null} | missing_brace | {
"type": "object",
"properties": {
"attr_n08": {
"type": "string",
"format": "uri"
},
"attr_d35": {
"type": "string"
},
"param_f92": {
"type": "string"
},
"prop_d07": {
"type": "string"
},
"val_n69": {
"type": "string",
"enum": [
... | {"attr_d35":"foo","param_f92":"completed","prop_d07":"Luis","val_n69":"option_a","key_m17":null | Missing closing brace | {"attr_d35":"foo","param_f92":"completed","prop_d07":"Luis","val_n69":"option_a","key_m17":null} |
TASK repair_structured_output
SPEC
FIELD product_id.quantity TYPE boolean REQUIRED yes
FIELD product_id.deploy_target TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD product_id.barcode TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD product_id.discount TYPE integer REQUIRED no
... | {"product_id":{"quantity":false,"discount":304},"enabled":471,"due_date":"https://example.io/v1"} | missing_bracket | {
"type": "object",
"properties": {
"product_id": {
"type": "object",
"properties": {
"quantity": {
"type": "boolean"
},
"deploy_target": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
... | {"product_id":{"quantity":false,"discount":304},"enabled":471,"due_date":"https://example.io/v1"} | Missing closing bracket | {"product_id":{"quantity":false,"discount":304},"enabled":471,"due_date":"https://example.io/v1"} |
TASK repair_structured_output
SPEC
FIELD loan_amount TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD priority TYPE integer REQUIRED yes
FIELD updated_at.subject TYPE integer REQUIRED no
FIELD updated_at.user_id TYPE string REQUIRED no
FIELD updated_at.freight_class TYPE string VALUES open|in_pr... | {"loan_amount":"returned","priority":456,"updated_at":{"subject":834,"turbidity":"admin@example.com","shift_code":"Hapag-Lloyd-Express"}} | tool_call_text_mix | {
"type": "object",
"properties": {
"loan_amount": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"priority": {
"type": "integer"
},
"updated_at": {
"type": "object",
"properties": {
"sub... | Processing the request now.
<tool_call name="fetch_lab_result">
{"loan_amount":"returned","priority":456,"updated_at":{"subject":834,"turbidity":"admin@example.com","shift_code":"Hapag-Lloyd-Express"}}
</tool_call. | Agent response mixes reasoning text with tool call | {"loan_amount":"returned","priority":456,"updated_at":{"subject":834,"turbidity":"admin@example.com","shift_code":"Hapag-Lloyd-Express"}} |
TASK repair_structured_output
SPEC
FIELD prop_i89 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD field_w26 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD attr_d81 TYPE integer REQUIRED yes
FIELD attr_j07.key_i96 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD attr_... | {"prop_i89":"arctic","attr_d81":571,"attr_j07":{"field_m47":"chrX"}} | extra_text_before | {
"type": "object",
"properties": {
"prop_i89": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"field_w26": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"... | Pipeline result:
{"prop_i89":"arctic","attr_d81":571,"attr_j07":{"field_m47":"chrX"}} | Output contains non-JSON text before the object | {"prop_i89":"arctic","attr_d81":571,"attr_j07":{"field_m47":"chrX"}} |
TASK repair_structured_output
SPEC
FIELD organism TYPE integer REQUIRED yes
FIELD turbidity TYPE string_email REQUIRED yes
FIELD diagnosis_code[].footnote TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD diagnosis_code[].bearing TYPE null REQUIRED yes
FIELD diagnosis_code[].subject TYPE string REQUIRED ... | {"organism":302,"turbidity":"test@example.com","diagnosis_code":[{"footnote":"basic","bearing":null,"subject":"test@example.com","image_url":"inactive"},{"footnote":"enterprise","bearing":null,"subject":"completed","image_url":"pending"},{"footnote":"basic","bearing":null,"subject":"test@example.com","image_url":"activ... | tool_call_wrong_param | {
"type": "object",
"properties": {
"organism": {
"type": "integer"
},
"turbidity": {
"type": "string",
"format": "email"
},
"diagnosis_code": {
"type": "array",
"items": {
"type": "object",
"properties": {
"footnote": {
"type":... | Tool: verify_hazmat_compliance
Params: {"organism": 302, "diagnosis_code": [{"footnote": "basic", "bearing": null, "subject": "test@example.com", "image_url": "inactive"}, {"footnote": "enterprise", "bearing": null, "subject": "completed", "image_url": "pending"}, {"footnote": "basic", "bearing": null, "subject": "test... | Agent used wrong parameter name 'turbidity2' instead of 'turbidity' | {"organism":302,"turbidity":"test@example.com","diagnosis_code":[{"footnote":"basic","bearing":null,"subject":"test@example.com","image_url":"inactive"},{"footnote":"enterprise","bearing":null,"subject":"completed","image_url":"pending"},{"footnote":"basic","bearing":null,"subject":"test@example.com","image_url":"activ... |
TASK repair_structured_output
SPEC
FIELD altitude TYPE string REQUIRED no
FIELD notes TYPE string_date-time REQUIRED no
FIELD type TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD build_status TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD bed_number TYPE string REQUIRED no
FIELD ni... | {"altitude":"demo","notes":"2024-06-19T23:13:00Z","type":"admin","build_status":"cat_a","bed_number":"2024-01-15","nickname":"pro","website":"quux"} | tool_call_text_mix | {
"type": "object",
"properties": {
"altitude": {
"type": "string"
},
"notes": {
"type": "string",
"format": "date-time"
},
"type": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"build_status": {
"type": "... | I'll query our database.
<tool_call name="queue_sequencing_run">
{"altitude":"demo","notes":"2024-06-19T23:13:00Z","type":"admin","build_status":"cat_a","bed_number":"2024-01-15","nickname":"pro","website":"quux"}
</tool_call.
The result is ready. | Agent response mixes reasoning text with tool call | {"altitude":"demo","notes":"2024-06-19T23:13:00Z","type":"admin","build_status":"cat_a","bed_number":"2024-01-15","nickname":"pro","website":"quux"} |
TASK repair_structured_output
SPEC
FIELD rating TYPE integer REQUIRED yes
FIELD quality_score TYPE null REQUIRED yes
FIELD notes TYPE number REQUIRED yes
BROKEN_OUTPUT
```json
{"rating":256,"quality_score":null,"notes":251.5}
``` | {"rating":256,"quality_score":null,"notes":251.5} | markdown_fences | {
"type": "object",
"properties": {
"rating": {
"type": "integer"
},
"quality_score": {
"type": "null"
},
"notes": {
"type": "number"
}
},
"required": [
"rating",
"notes",
"quality_score"
]
} | ```json
{"rating":256,"quality_score":null,"notes":251.5}
``` | Output contains markdown code fences | {"rating":256,"quality_score":null,"notes":251.5} |
TASK repair_structured_output
SPEC
FIELD attr_k07 TYPE number REQUIRED yes
FIELD prop_u93 TYPE string REQUIRED yes
FIELD param_w83.val_w94.key_x87 TYPE string REQUIRED yes
FIELD param_w83.val_w94.attr_l42 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD param_w83.val_w94.field_y74 TYPE integer REQUI... | {"attr_k07":823.92,"prop_u93":"user@domain.com","param_w83":{"dim_w28":"chr1","col_l01":true,"key_i52":"GRCh38","key_l36":"https://example.com","attr_x28":849,"field_s37":"phone"}} | agent_chain | {
"type": "object",
"properties": {
"attr_k07": {
"type": "number"
},
"prop_u93": {
"type": "string"
},
"param_w83": {
"type": "object",
"properties": {
"val_w94": {
"type": "object",
"properties": {
"key_x87": {
"type... | I need to look up the information first.
Action: run_diagnostics
Result: {"attr_k07": 823.92, "prop_u93": "user@domain.com"}
I'll query our database.
Action: generate_report
Result: | Agent multi-step chain with truncated tool output | {"attr_k07":823.92,"prop_u93":"user@domain.com","param_w83":{"dim_w28":"chr1","col_l01":true,"key_i52":"GRCh38","key_l36":"https://example.com","attr_x28":849,"field_s37":"phone"}} |
TASK repair_structured_output
SPEC
FIELD cargo_type TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD fleet_number TYPE string REQUIRED no
FIELD state.website TYPE string REQUIRED yes
FIELD state.wavelength TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD state.image_url.turbidity... | {"cargo_type":"level_2","fleet_number":"QC-07","state":{"website":"demo","wavelength":"mode_b","image_url":{"turbidity":"2025-03-20T22:36:00Z","berth_slot":null,"strand":"admin@example.com","transaction_id":"GRCh38","coverage":"mode_d","gene_id":false,"discount":null}},"status_code":40,"lab_result":"MV-Evergreen-01","f... | extra_text_after | {
"type": "object",
"properties": {
"cargo_type": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
"level_6"
]
},
"fleet_number": {
"type": "string"
},
"state": {
"type": "object",
... | {"cargo_type":"level_2","fleet_number":"QC-07","state":{"website":"demo","wavelength":"mode_b","image_url":{"turbidity":"2025-03-20T22:36:00Z","berth_slot":null,"strand":"admin@example.com","transaction_id":"GRCh38","coverage":"mode_d","gene_id":false,"discount":null}},"status_code":40,"lab_result":"MV-Evergreen-01","f... | Output contains non-JSON text after the object | {"cargo_type":"level_2","fleet_number":"QC-07","state":{"website":"demo","wavelength":"mode_b","image_url":{"turbidity":"2025-03-20T22:36:00Z","berth_slot":null,"strand":"admin@example.com","transaction_id":"GRCh38","coverage":"mode_d","gene_id":false,"discount":null}},"status_code":40,"lab_result":"MV-Evergreen-01","f... |
TASK repair_structured_output
SPEC
FIELD prop_g67 TYPE string REQUIRED yes
FIELD prop_x33.key_x36 TYPE string REQUIRED yes
FIELD prop_x33.dim_y02 TYPE string REQUIRED no
FIELD prop_x33.dim_o79 TYPE integer REQUIRED no
FIELD prop_x33.dim_u67.prop_r45 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FI... | {"prop_g67":"A short description.","prop_x33":{"key_x36":"2024-06-30","dim_o79":160},"param_e22":"test@example.com","val_m27":"Charlie","param_y81":320} | tool_call_text_mix | {
"type": "object",
"properties": {
"prop_g67": {
"type": "string"
},
"prop_x33": {
"type": "object",
"properties": {
"key_x36": {
"type": "string"
},
"dim_y02": {
"type": "string"
},
"dim_o79": {
"type": "integer"
... | Processing the request now.
<tool_call name="call_variants">
{"prop_g67":"A short description.","prop_x33":{"key_x36":"2024-06-30","dim_o79":160},"param_e22":"test@example.com","val_m27":"Charlie","param_y81":320}
</tool_call.
The result is ready. | Agent response mixes reasoning text with tool call | {"prop_g67":"A short description.","prop_x33":{"key_x36":"2024-06-30","dim_o79":160},"param_e22":"test@example.com","val_m27":"Charlie","param_y81":320} |
TASK repair_structured_output
SPEC
FIELD catalyst TYPE boolean REQUIRED yes
FIELD length TYPE number REQUIRED yes
FIELD state TYPE number REQUIRED yes
BROKEN_OUTPUT
{catalyst:true,length:302.39,state:509.69} | {"catalyst":true,"length":302.39,"state":509.69} | unquoted_keys | {
"type": "object",
"properties": {
"catalyst": {
"type": "boolean"
},
"length": {
"type": "number"
},
"state": {
"type": "number"
}
},
"required": [
"catalyst",
"length",
"state"
]
} | {catalyst:true,length:302.39,state:509.69} | Expecting property name enclosed in double quotes | {"catalyst":true,"length":302.39,"state":509.69} |
TASK repair_structured_output
SPEC
FIELD dim_d96 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD col_d76 TYPE boolean REQUIRED no
FIELD dim_b43 TYPE integer REQUIRED no
FIELD param_g24 TYPE boolean REQUIRED no
FIELD col_p65.key_u48 TYPE number REQUIRED yes
FIELD col_p65.dim_w92 TYPE integer REQ... | {"dim_d96":"hemizygous","col_d76":false,"dim_b43":457,"param_g24":true,"col_p65":{"key_u48":433.21,"dim_w92":182,"key_h14":616.08,"param_v12":{"param_c51":306.05,"val_b63":923.13,"key_y08":403.22},"val_o88":null}} | tool_call_bad_format | {
"type": "object",
"properties": {
"dim_d96": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"col_d76": {
"type": "boolean"
},
"dim_b43": {
"type": "integer"
},
"param_g24": {
"type": "boolean"
... | <functioncall> queue_sequencing_run
{dim_d96: "hemizygous", col_d76: false, dim_b43: 457, param_g24: true, col_p65: {key_u48: 433.21, dim_w92: 182, key_h14: 616.08, param_v12: {param_c51: 306.05, val_b63: 923.13, key_y08: 403.22}, val_o88: null}} | Tool call has malformed arguments — unquoted keys in function parameters | {"dim_d96":"hemizygous","col_d76":false,"dim_b43":457,"param_g24":true,"col_p65":{"key_u48":433.21,"dim_w92":182,"key_h14":616.08,"param_v12":{"param_c51":306.05,"val_b63":923.13,"key_y08":403.22},"val_o88":null}} |
TASK repair_structured_output
SPEC
FIELD feedback TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD torque_output TYPE string REQUIRED no
FIELD chapter TYPE string REQUIRED no
FIELD due_date TYPE string REQUIRED no
BROKEN_OUTPUT
The parsed result is:
```json
{"feedback":"anchored","torque_output"... | {"feedback":"anchored","torque_output":"GRCh38"} | markdown_explanation | {
"type": "object",
"properties": {
"feedback": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"torque_output": {
"type": "string"
},
"chapter": {
"type": "string"
},
"due_date": {
"type":... | The parsed result is:
```json
{"feedback":"anchored","torque_output":"GRCh38"}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"feedback":"anchored","torque_output":"GRCh38"} |
TASK repair_structured_output
SPEC
FIELD dim_h26 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD param_t41 TYPE integer REQUIRED yes
FIELD param_w23 TYPE string REQUIRED no
FIELD col_g48 TYPE number REQUIRED yes
BROKEN_OUTPUT
Here is the JSON you requested:
```json
{"dim_h26":"large","param_t41":242,"col_g... | {"dim_h26":"large","param_t41":242,"col_g48":963.1} | markdown_explanation | {
"type": "object",
"properties": {
"dim_h26": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"param_t41": {
"type": "integer"
},
"param_w23": {
"type": "string"
},
"col_g48": {
"type": "number"
... | Here is the JSON you requested:
```json
{"dim_h26":"large","param_t41":242,"col_g48":963.1}
```
Data logged successfully. | Output contains markdown and explanatory text around JSON | {"dim_h26":"large","param_t41":242,"col_g48":963.1} |
TASK repair_structured_output
SPEC
FIELD brake_pressure TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD crew_id TYPE integer REQUIRED yes
FIELD footnote TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD count TYPE integer REQUIRED no
FIELD message TYPE string REQUIRED no
FIELD tur... | {"crew_id":829,"footnote":"new","count":493,"values":"https://data.com/data"} | thought_process | {
"type": "object",
"properties": {
"brake_pressure": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"crew_id": {
"type": "integer"
},
"footnote": {
"type": "string",
"enum": [
"new",... | Processing the request now.
I'll validate against the schema.
{"crew_id":829,"footnote":"new","count":493,"values":"https://data.com/data"} | Output contains chain-of-thought reasoning before JSON | {"crew_id":829,"footnote":"new","count":493,"values":"https://data.com/data"} |
TASK repair_structured_output
SPEC
FIELD repository TYPE string REQUIRED yes
FIELD terminal_id TYPE number REQUIRED no
FIELD order_id TYPE string REQUIRED no
FIELD sensor_id TYPE number REQUIRED yes
FIELD visible TYPE integer REQUIRED no
FIELD isotope TYPE integer REQUIRED yes
BROKEN_OUTPUT
I found that visible shoul... | {"repository":"chrX","order_id":"inactive","sensor_id":670.18,"visible":181,"isotope":695} | partial_structure | {
"type": "object",
"properties": {
"repository": {
"type": "string"
},
"terminal_id": {
"type": "number"
},
"order_id": {
"type": "string"
},
"sensor_id": {
"type": "number"
},
"visible": {
"type": "integer"
},
"isotope": {
"type": "in... | I found that visible should be 181. {"repository":"chrX","order_id":"inactive","sensor_id":670.18,"visible":181,"isotope":695} | Output mixes natural language with JSON | {"repository":"chrX","order_id":"inactive","sensor_id":670.18,"visible":181,"isotope":695} |
TASK repair_structured_output
SPEC
FIELD param_j95 TYPE string_date-time REQUIRED no
FIELD attr_t24 TYPE number REQUIRED yes
FIELD dim_d96 TYPE integer REQUIRED no
FIELD field_x41 TYPE number REQUIRED no
FIELD dim_n84[] TYPE string REQUIRED no
FIELD param_k17[] TYPE string VALUES synonymous|missense|nonsense|frameshif... | {"attr_t24":784.29,"dim_d96":955,"field_x41":340.99,"dim_n84":["A short description.","sample","2023-12-25","active"],"param_k17":["nonsense"]} | markdown_explanation | {
"type": "object",
"properties": {
"param_j95": {
"type": "string",
"format": "date-time"
},
"attr_t24": {
"type": "number"
},
"dim_d96": {
"type": "integer"
},
"field_x41": {
"type": "number"
},
"dim_n84": {
"type": "array",
"items": {
... | The parsed result is:
```json
{"attr_t24":784.29,"dim_d96":955,"field_x41":340.99,"dim_n84":["A short description.","sample","2023-12-25","active"],"param_k17":["nonsense"]}
```
This should match the schema you provided. | Output contains markdown and explanatory text around JSON | {"attr_t24":784.29,"dim_d96":955,"field_x41":340.99,"dim_n84":["A short description.","sample","2023-12-25","active"],"param_k17":["nonsense"]} |
TASK repair_structured_output
SPEC
FIELD timezone TYPE integer REQUIRED yes
FIELD yield_pct.temp_celsius TYPE string REQUIRED no
FIELD yield_pct.department TYPE integer REQUIRED yes
FIELD yield_pct.price.decay_rate TYPE string VALUES type_a|type_b REQUIRED no
FIELD yield_pct.price.compound TYPE number REQUIRED yes
FIE... | {"timezone":314,"yield_pct":{"temp_celsius":"hello","department":778,"price":{"decay_rate":"type_a","compound":328.2,"order_id":582,"item_id":340,"position":"Smith","role":"Berlin"}},"level":"reliable","enabled":"Tokyo","frequency_hz":{"filter_flag":"GBP","consignee":"https://api.example.com/v1","chapter":null,"shift_c... | trailing_comma | {
"type": "object",
"properties": {
"timezone": {
"type": "integer"
},
"yield_pct": {
"type": "object",
"properties": {
"temp_celsius": {
"type": "string"
},
"department": {
"type": "integer"
},
"price": {
"type": "o... | {"timezone":314,"yield_pct":{"temp_celsius":"hello","department":778,"price":{"decay_rate":"type_a","compound":328.2,"order_id":582,"item_id":340,"position":"Smith","role":"Berlin",}},"level":"reliable","enabled":"Tokyo","frequency_hz":{"filter_flag":"GBP","consignee":"https://api.example.com/v1","chapter":null,"shift_... | Unexpected trailing comma | {"timezone":314,"yield_pct":{"temp_celsius":"hello","department":778,"price":{"decay_rate":"type_a","compound":328.2,"order_id":582,"item_id":340,"position":"Smith","role":"Berlin"}},"level":"reliable","enabled":"Tokyo","frequency_hz":{"filter_flag":"GBP","consignee":"https://api.example.com/v1","chapter":null,"shift_c... |
TASK repair_structured_output
SPEC
FIELD published TYPE integer REQUIRED yes
FIELD tile.quantity TYPE string REQUIRED no
FIELD tile.options TYPE boolean REQUIRED no
FIELD tile.bearing[].score TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD tile.bearing[].lane TYPE number REQUIRED yes
FIELD tile.bearing... | {"published":330,"tile":{"quantity":"2023-12-25","bearing":[{"score":"free","lane":493.89,"catalyst":"Santos"}]},"maturity_date":"PASS","currency":"option_e"} | extra_field | {
"type": "object",
"properties": {
"published": {
"type": "integer"
},
"tile": {
"type": "object",
"properties": {
"quantity": {
"type": "string"
},
"options": {
"type": "boolean"
},
"bearing": {
"type": "array",
... | {"published": 330, "tile": {"quantity": "2023-12-25", "bearing": [{"score": "free", "lane": 493.89, "catalyst": "Santos"}]}, "maturity_date": "PASS", "currency": "option_e", "extra_field_1920": "unexpected"} | Unknown field 'extra_field_1920' not defined in schema | {"published":330,"tile":{"quantity":"2023-12-25","bearing":[{"score":"free","lane":493.89,"catalyst":"Santos"}]},"maturity_date":"PASS","currency":"option_e"} |
TASK repair_structured_output
SPEC
FIELD val_r03 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD dim_g61 TYPE number REQUIRED no
FIELD field_c80.key_z98 TYPE string_uri REQUIRED no
FIELD field_c80.attr_o32 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD field... | {"val_r03":"operational","dim_g61":459.0,"field_c80":{"attr_o32":"frameshift","prop_o76":999,"prop_f68":"returned","field_m50":"Santos","attr_l72":true},"param_t62":419.84,"param_w95":607.12,"key_d86":"bar"} | thought_process | {
"type": "object",
"properties": {
"val_r03": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"dim_g61": {
"type": "number"
},
"field_c80": {
"type": "object",
"properties": {
"key... | Let me analyze the request and generate the appropriate JSON.
The user wants a structured object with specific fields.
{"val_r03":"operational","dim_g61":459.0,"field_c80":{"attr_o32":"frameshift","prop_o76":999,"prop_f68":"returned","field_m50":"Santos","attr_l72":true},"param_t62":419.84,"param_w95":607.12,"key_d86"... | Output contains chain-of-thought reasoning before JSON | {"val_r03":"operational","dim_g61":459.0,"field_c80":{"attr_o32":"frameshift","prop_o76":999,"prop_f68":"returned","field_m50":"Santos","attr_l72":true},"param_t62":419.84,"param_w95":607.12,"key_d86":"bar"} |
TASK repair_structured_output
SPEC
FIELD department TYPE null REQUIRED no
FIELD id TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD color TYPE string_email REQUIRED yes
FIELD commit_hash TYPE string REQUIRED yes
BROKEN_OUTPUT
Here is the response in the requested format:
```json
{"id":"level_1","color":"admin@ex... | {"id":"level_1","color":"admin@example.com","commit_hash":"GRCh38"} | markdown_explanation | {
"type": "object",
"properties": {
"department": {
"type": "null"
},
"id": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"color": {
"type": "string",
"format": "email"
},
"commit_hash": {
"type": "string"
}
},
"... | Here is the response in the requested format:
```json
{"id":"level_1","color":"admin@example.com","commit_hash":"GRCh38"}
```
Let me know if you need anything else! | Output contains markdown and explanatory text around JSON | {"id":"level_1","color":"admin@example.com","commit_hash":"GRCh38"} |
TASK repair_structured_output
SPEC
FIELD filter_flag TYPE number REQUIRED yes
FIELD version TYPE string_date-time REQUIRED no
FIELD zip_code TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD title.company.published TYPE string_date-time REQUIRED no
FIELD title.company.medication TYPE boolean REQUI... | {"filter_flag":469.5,"zip_code":"open","title":{"company":{"published":"2022-12-03T10:31:00Z","medication":true,"payment_status":635},"conductivity":615.28,"bed_number":"berthed","transaction_id":"new","format":"Silva"},"created_at":"Sao Paulo","freight_class":"London","website":"chr1","phone":"intermittent"} | truncated_array | {
"type": "object",
"properties": {
"filter_flag": {
"type": "number"
},
"version": {
"type": "string",
"format": "date-time"
},
"zip_code": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
... | {"filter_flag":469.5,"zip_code":"open","title":{"company":{"published":"2022-12-03T10:31:00Z","medication":true,"payment_status":635},"conductivity":615.28,"bed_number":"berthed","transaction_id":"new","format":"Silva"},"created_at":"Sao Paulo","freight_class":"London","website":"chr1","phone":"intermittent" | Unexpected end of JSON input — truncated object | {"filter_flag":469.5,"zip_code":"open","title":{"company":{"published":"2022-12-03T10:31:00Z","medication":true,"payment_status":635},"conductivity":615.28,"bed_number":"berthed","transaction_id":"new","format":"Silva"},"created_at":"Sao Paulo","freight_class":"London","website":"chr1","phone":"intermittent"} |
TASK repair_structured_output
SPEC
FIELD val_n78 TYPE null REQUIRED no
FIELD val_f72 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes
FIELD param_u79 TYPE number REQUIRED yes
FIELD attr_k07 TYPE string REQUIRED yes
FIELD key_h20 TYPE string_date-time REQUIRED yes
BROKEN_OUTPUT
{"val_n78":null,"val_f72":"cat_a"... | {"val_n78":null,"val_f72":"cat_a","param_u79":714.6,"attr_k07":"QC-07","key_h20":"2021-10-02T11:02:00Z"} | missing_bracket | {
"type": "object",
"properties": {
"val_n78": {
"type": "null"
},
"val_f72": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"param_u79": {
"type": "number"
},
"attr_k07": {
"type": "string"
},... | {"val_n78":null,"val_f72":"cat_a","param_u79":714.6,"attr_k07":"QC-07","key_h20":"2021-10-02T11:02:00Z"} | Missing closing bracket | {"val_n78":null,"val_f72":"cat_a","param_u79":714.6,"attr_k07":"QC-07","key_h20":"2021-10-02T11:02:00Z"} |
TASK repair_structured_output
SPEC
FIELD email TYPE string REQUIRED no
FIELD ward TYPE boolean REQUIRED no
FIELD enabled TYPE boolean REQUIRED yes
FIELD aligned_pct.brake_pressure TYPE integer REQUIRED no
FIELD aligned_pct.paragraph.umi TYPE integer REQUIRED no
FIELD aligned_pct.paragraph.phone TYPE integer REQUIRED y... | {"email":"RTG-04","ward":false,"enabled":true,"aligned_pct":{"brake_pressure":145,"paragraph":{"phone":971,"quantity":"Hapag-Lloyd-Express","berth_slot":482,"throttle_pos":"2024-01-15","amount":"Santos"},"thumbnail":568},"bed_number":497,"username":"medium"} | invalid_enum | {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"ward": {
"type": "boolean"
},
"enabled": {
"type": "boolean"
},
"aligned_pct": {
"type": "object",
"properties": {
"brake_pressure": {
"type": "integer"
},
... | {"email": "RTG-04", "ward": false, "enabled": true, "aligned_pct": {"brake_pressure": 145, "paragraph": {"phone": 971, "quantity": "Hapag-Lloyd-Express", "berth_slot": 482, "throttle_pos": "2024-01-15", "amount": "Santos"}, "thumbnail": 568}, "bed_number": 497, "username": "invalid_choice_10"} | Field 'username' has invalid enum value 'invalid_choice_10', expected one of ['small', 'medium', 'large', 'xl'] | {"email":"RTG-04","ward":false,"enabled":true,"aligned_pct":{"brake_pressure":145,"paragraph":{"phone":971,"quantity":"Hapag-Lloyd-Express","berth_slot":482,"throttle_pos":"2024-01-15","amount":"Santos"},"thumbnail":568},"bed_number":497,"username":"medium"} |
TASK repair_structured_output
SPEC
FIELD wavelength TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD branch TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD diagnosis_code TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD temp_celsius TYPE number REQUIRED no
FIELD... | {"wavelength":"medium","diagnosis_code":"in_progress","temp_celsius":67.35,"name":"2021-10-22T21:49:00Z","title":"Smith","username":58} | number_with_unit | {
"type": "object",
"properties": {
"wavelength": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"branch": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
... | {"wavelength": "medium", "diagnosis_code": "in_progress", "temp_celsius": "67.35px", "name": "2021-10-22T21:49:00Z", "title": "Smith", "username": 58} | Field 'temp_celsius' must be number, got string with unit | {"wavelength":"medium","diagnosis_code":"in_progress","temp_celsius":67.35,"name":"2021-10-22T21:49:00Z","title":"Smith","username":58} |
TASK repair_structured_output
SPEC
FIELD prop_n12 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD param_h27 TYPE number REQUIRED yes
FIELD val_u80 TYPE string REQUIRED yes
FIELD dim_g04 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"prop_n12":"red","param_h27":372.32,"val_u80":"hello","dim_g04":375 | {"prop_n12":"red","param_h27":372.32,"val_u80":"hello","dim_g04":375} | truncated_array | {
"type": "object",
"properties": {
"prop_n12": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"param_h27": {
"type": "number"
},
"val_u80": {
"type": "string"
},
"dim_g04": {
"type":... | {"prop_n12":"red","param_h27":372.32,"val_u80":"hello","dim_g04":375 | Unexpected end of JSON input — truncated object | {"prop_n12":"red","param_h27":372.32,"val_u80":"hello","dim_g04":375} |
TASK repair_structured_output
SPEC
FIELD format TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD quality_score TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD fleet_number TYPE integer REQUIRED no
FIELD shipper_ref.last_name TYPE string VALUES active|inactive|pending REQUIRED no
FIELD shipper_ref.pro... | {"format":"GBP","quality_score":"JPY","fleet_number":513} | invalid_enum | {
"type": "object",
"properties": {
"format": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"quality_score": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY... | {"format": "invalid_choice_317", "quality_score": "JPY", "fleet_number": 513} | Field 'format' has invalid enum value 'invalid_choice_317', expected one of ['USD', 'EUR', 'GBP', 'BRL', 'JPY'] | {"format":"GBP","quality_score":"JPY","fleet_number":513} |
TASK repair_structured_output
SPEC
FIELD field_a72 TYPE string_date-time REQUIRED no
FIELD dim_u49 TYPE string REQUIRED no
FIELD key_s16 TYPE string REQUIRED yes
FIELD col_a84[] TYPE number REQUIRED no
BROKEN_OUTPUT
Processing the request now.
I'll validate against the schema.
{"field_a72":"2025-04-26T00:48:00Z","di... | {"field_a72":"2025-04-26T00:48:00Z","dim_u49":"QC-07","key_s16":"REV"} | thought_process | {
"type": "object",
"properties": {
"field_a72": {
"type": "string",
"format": "date-time"
},
"dim_u49": {
"type": "string"
},
"key_s16": {
"type": "string"
},
"col_a84": {
"type": "array",
"items": {
"type": "number"
}
}
},
"requ... | Processing the request now.
I'll validate against the schema.
{"field_a72":"2025-04-26T00:48:00Z","dim_u49":"QC-07","key_s16":"REV"} | Output contains chain-of-thought reasoning before JSON | {"field_a72":"2025-04-26T00:48:00Z","dim_u49":"QC-07","key_s16":"REV"} |
TASK repair_structured_output
SPEC
FIELD key_u77 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD prop_j75 TYPE string REQUIRED no
FIELD param_m19 TYPE string REQUIRED no
FIELD dim_f37 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"key_u77": "escalated"} | {"key_u77":"escalated","dim_f37":9} | missing_required | {
"type": "object",
"properties": {
"key_u77": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"prop_j75": {
"type": "string"
},
"param_m19": {
"type": "string"
},
"dim_f37": {
"... | {"key_u77": "escalated"} | Required field 'dim_f37' is missing | {"key_u77":"escalated","dim_f37":9} |
TASK repair_structured_output
SPEC
FIELD param_x94 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD dim_g86 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD prop_n20 TYPE string_date-time REQUIRED no
FIELD attr_n13 TYPE string VALUES draft|published|archived REQUIRED no
FIELD c... | {"param_x94":"arctic","dim_g86":"resolved","attr_n13":"published","col_p25":"phone"} | truncated_object | {
"type": "object",
"properties": {
"param_x94": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"dim_g86": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
... | {"param_x94":"arctic","dim_g86":"resolved","attr_n13":"published","col_p25":"phone" | Unexpected end of JSON input — truncated object | {"param_x94":"arctic","dim_g86":"resolved","attr_n13":"published","col_p25":"phone"} |
TASK repair_structured_output
SPEC
FIELD interest_rate.verified TYPE string REQUIRED no
FIELD interest_rate.section TYPE boolean REQUIRED no
FIELD interest_rate.category TYPE string_email REQUIRED no
FIELD interest_rate.batch_code TYPE null REQUIRED no
FIELD interest_rate.thumbnail TYPE integer REQUIRED no
FIELD inter... | {"interest_rate":{"section":false,"category":"test@test.io","thumbnail":515,"id":true},"feedback":"Maria","username":null,"department":"cancelled","product_id":"archived","collateral":"test@example.com"} | tool_call_text_mix | {
"type": "object",
"properties": {
"interest_rate": {
"type": "object",
"properties": {
"verified": {
"type": "string"
},
"section": {
"type": "boolean"
},
"category": {
"type": "string",
"format": "email"
},
... | I'll query our database.
<tool_call name="query_port_status">
{"interest_rate":{"section":false,"category":"test@test.io","thumbnail":515,"id":true},"feedback":"Maria","username":null,"department":"cancelled","product_id":"archived","collateral":"test@example.com"}
</tool_call.
The result is ready. | Agent response mixes reasoning text with tool call | {"interest_rate":{"section":false,"category":"test@test.io","thumbnail":515,"id":true},"feedback":"Maria","username":null,"department":"cancelled","product_id":"archived","collateral":"test@example.com"} |
TASK repair_structured_output
SPEC
FIELD end_date TYPE integer REQUIRED yes
FIELD annotation TYPE string REQUIRED yes
FIELD thumbnail TYPE string REQUIRED no
FIELD nickname TYPE null REQUIRED no
FIELD vessel_name[].age TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD vessel_name[].payment_status TYPE string V... | {"end_date":412,"annotation":"Hapag-Lloyd-Express","thumbnail":"pending","vessel_name":[{"age":"push","payment_status":"enterprise","updated_at":"inactive"},{"age":"email","updated_at":"inactive"},{"updated_at":"inactive"},{"age":"push","payment_status":"enterprise","updated_at":"inactive"}]} | markdown_explanation | {
"type": "object",
"properties": {
"end_date": {
"type": "integer"
},
"annotation": {
"type": "string"
},
"thumbnail": {
"type": "string"
},
"nickname": {
"type": "null"
},
"vessel_name": {
"type": "array",
"items": {
"type": "object",... | Here is the response in the requested format:
```json
{"end_date":412,"annotation":"Hapag-Lloyd-Express","thumbnail":"pending","vessel_name":[{"age":"push","payment_status":"enterprise","updated_at":"inactive"},{"age":"email","updated_at":"inactive"},{"updated_at":"inactive"},{"age":"push","payment_status":"enterprise"... | Output contains markdown and explanatory text around JSON | {"end_date":412,"annotation":"Hapag-Lloyd-Express","thumbnail":"pending","vessel_name":[{"age":"push","payment_status":"enterprise","updated_at":"inactive"},{"age":"email","updated_at":"inactive"},{"updated_at":"inactive"},{"age":"push","payment_status":"enterprise","updated_at":"inactive"}]} |
TASK repair_structured_output
SPEC
FIELD col_r94 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes
FIELD dim_t08 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD val_a58 TYPE string VALUES level_1|level_2 REQUIRED no
BROKEN_OUTPUT
{"val_a58": "level_1"} | {"col_r94":"level_5","val_a58":"level_1"} | missing_required | {
"type": "object",
"properties": {
"col_r94": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"dim_t08": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
... | {"val_a58": "level_1"} | Required field 'col_r94' is missing | {"col_r94":"level_5","val_a58":"level_1"} |
TASK repair_structured_output
SPEC
FIELD attr_e20 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD field_u84 TYPE number REQUIRED no
FIELD val_d68 TYPE integer REQUIRED no
FIELD col_i57 TYPE number REQUIRED no
FIELD val_u66 TYPE integer REQUIRED yes
FIELD dim_f91.val_m21 TYPE string REQUIRED no
FIELD dim_f91.... | {"field_u84":91.82,"val_u66":492,"dim_f91":{"col_k70":"2024-01-15","field_u83":[593.24,451.11],"param_c83":[null,null,null,null]},"key_l48":513,"dim_e89":138} | thought_process | {
"type": "object",
"properties": {
"attr_e20": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"field_u84": {
"type": "number"
},
"val_d68": {
"type": "integer"
},
"col_i57": {
"type": "number"
},... | Analyzing the schema to generate valid JSON...
Checking required fields and types...
{"field_u84":91.82,"val_u66":492,"dim_f91":{"col_k70":"2024-01-15","field_u83":[593.24,451.11],"param_c83":[null,null,null,null]},"key_l48":513,"dim_e89":138} | Output contains chain-of-thought reasoning before JSON | {"field_u84":91.82,"val_u66":492,"dim_f91":{"col_k70":"2024-01-15","field_u83":[593.24,451.11],"param_c83":[null,null,null,null]},"key_l48":513,"dim_e89":138} |
TASK repair_structured_output
SPEC
FIELD prop_u40 TYPE number REQUIRED no
FIELD key_b26 TYPE string REQUIRED yes
FIELD val_v18 TYPE integer REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: get_weather
Arguments: {"prop_u40": 949.61, "key_b26": "Silva"} | {"prop_u40":949.61,"key_b26":"Silva","val_v18":989} | tool_call_partial_args | {
"type": "object",
"properties": {
"prop_u40": {
"type": "number"
},
"key_b26": {
"type": "string"
},
"val_v18": {
"type": "integer"
}
},
"required": [
"val_v18",
"key_b26"
]
} | Let me check the system.
Action: get_weather
Arguments: {"prop_u40": 949.61, "key_b26": "Silva"} | Agent tool call missing required parameter 'val_v18' | {"prop_u40":949.61,"key_b26":"Silva","val_v18":989} |
TASK repair_structured_output
SPEC
FIELD field_r11 TYPE integer REQUIRED yes
FIELD col_n80 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD col_u48 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"field_r11": "902kg", "col_n80": "intermittent", "col_u48": "John"} | {"field_r11":902,"col_n80":"intermittent","col_u48":"John"} | number_with_unit | {
"type": "object",
"properties": {
"field_r11": {
"type": "integer"
},
"col_n80": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"col_u48": {
"type": "string"
}
},
"required": [
"col_n80",
"field_r1... | {"field_r11": "902kg", "col_n80": "intermittent", "col_u48": "John"} | Field 'field_r11' must be number, got string with unit | {"field_r11":902,"col_n80":"intermittent","col_u48":"John"} |
TASK repair_structured_output
SPEC
FIELD tax TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD items TYPE string_email REQUIRED no
FIELD credit_score TYPE integer REQUIRED yes
BROKEN_OUTPUT
Sure, here's the result:
{"items":"info@test.io","credit_score":749} | {"items":"info@test.io","credit_score":749} | extra_text_before | {
"type": "object",
"properties": {
"tax": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"items": {
"type": "string",
"format": "email"
},
"credit_score": {
"type": "integer"
}
},
"required": [
"credit_scor... | Sure, here's the result:
{"items":"info@test.io","credit_score":749} | Output contains non-JSON text before the object | {"items":"info@test.io","credit_score":749} |
TASK repair_structured_output
SPEC
FIELD full_name TYPE string_uri REQUIRED yes
FIELD order_id TYPE number REQUIRED yes
FIELD address.tax.run_id TYPE null REQUIRED no
FIELD address.tax.credit_score TYPE string_email REQUIRED yes
FIELD address.tax.quantity TYPE integer REQUIRED yes
FIELD address.tax.state TYPE string V... | {"full_name":"https://api.com/api","order_id":101.51,"address":{"tax":{"run_id":null,"credit_score":"admin@example.com","quantity":251,"country":677},"account_id":"REV","position":true,"features":{"batch_code":"New York","step":true,"verified":"demo"}},"format":"level_4"} | thought_process | {
"type": "object",
"properties": {
"full_name": {
"type": "string",
"format": "uri"
},
"order_id": {
"type": "number"
},
"address": {
"type": "object",
"properties": {
"tax": {
"type": "object",
"properties": {
"run_id": {
... | Let me construct this step by step.
First, I'll identify the required fields, then fill in the values.
{"full_name":"https://api.com/api","order_id":101.51,"address":{"tax":{"run_id":null,"credit_score":"admin@example.com","quantity":251,"country":677},"account_id":"REV","position":true,"features":{"batch_code":"New Y... | Output contains chain-of-thought reasoning before JSON | {"full_name":"https://api.com/api","order_id":101.51,"address":{"tax":{"run_id":null,"credit_score":"admin@example.com","quantity":251,"country":677},"account_id":"REV","position":true,"features":{"batch_code":"New York","step":true,"verified":"demo"}},"format":"level_4"} |
TASK repair_structured_output
SPEC
FIELD lane TYPE integer REQUIRED yes
FIELD build_status TYPE integer REQUIRED no
FIELD date.category TYPE string REQUIRED yes
FIELD date.vital_sign TYPE integer REQUIRED yes
FIELD date.language TYPE string REQUIRED no
FIELD date.berth_slot TYPE boolean REQUIRED yes
FIELD date.turbidi... | {"lane":299,"build_status":223,"date":{"category":"QC-07","vital_sign":835,"berth_slot":true,"turbidity":"mode_c"}} | agent_chain | {
"type": "object",
"properties": {
"lane": {
"type": "integer"
},
"build_status": {
"type": "integer"
},
"date": {
"type": "object",
"properties": {
"category": {
"type": "string"
},
"vital_sign": {
"type": "integer"
},... | I need to look up the information first.
Action: validate_sample
Result: {"build_status": 223, "date": {"category": "QC-07", "vital_sign": 835, "berth_slot": true, "turbidity": "mode_c"}}
I'll query our database.
Action: filter_variants
Result: | Agent multi-step chain with truncated tool output | {"lane":299,"build_status":223,"date":{"category":"QC-07","vital_sign":835,"berth_slot":true,"turbidity":"mode_c"}} |
TASK repair_structured_output
SPEC
FIELD attr_r83 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD col_d95 TYPE null REQUIRED yes
FIELD col_g36 TYPE string VALUES active|inactive|pending REQUIRED yes
BROKEN_OUTPUT
validate_sample(attr_r83='single', col_d95=None, col_g36='inactive') | {"attr_r83":"single","col_d95":null,"col_g36":"inactive"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"attr_r83": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"col_d95": {
"type": "null"
},
"col_g36": {
"type": "string",
"enum": [
"active",
"inactive",
"pe... | validate_sample(attr_r83='single', col_d95=None, col_g36='inactive') | Tool call uses Python syntax instead of JSON | {"attr_r83":"single","col_d95":null,"col_g36":"inactive"} |
TASK repair_structured_output
SPEC
FIELD param_v62.col_l68 TYPE string REQUIRED yes
FIELD param_v62.key_i68 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD param_v62.prop_j47 TYPE number REQUIRED yes
FIELD key_c04 TYPE null REQUIRED no
FIELD param_f27 TYPE string VALUES mode_a|mode_b|mode_c|mod... | {"param_v62":{"col_l68":"test@example.com","prop_j47":904.9},"key_c04":null,"param_f27":"mode_c","dim_j14":"info@test.io","val_a22":276.32,"param_d08":"mode_d","attr_w15":268} | unquoted_keys | {
"type": "object",
"properties": {
"param_v62": {
"type": "object",
"properties": {
"col_l68": {
"type": "string"
},
"key_i68": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",... | {param_v62:{col_l68:"test@example.com",prop_j47:904.9},key_c04:null,param_f27:"mode_c",dim_j14:"info@test.io",val_a22:276.32,param_d08:"mode_d",attr_w15:268} | Expecting property name enclosed in double quotes | {"param_v62":{"col_l68":"test@example.com","prop_j47":904.9},"key_c04":null,"param_f27":"mode_c","dim_j14":"info@test.io","val_a22":276.32,"param_d08":"mode_d","attr_w15":268} |
TASK repair_structured_output
SPEC
FIELD score TYPE string REQUIRED no
FIELD status TYPE number REQUIRED no
FIELD ward.organism TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD ward.phenotype TYPE number REQUIRED yes
FIELD ward.format TYPE null REQUIRED no
FIELD ward.footnote TYPE string REQUIRED no
FIELD war... | {"score":"PASS","status":351.05,"ward":{"organism":"admin","phenotype":770.51,"format":null,"footnote":"active","shift_code":"This is a test value."},"category":520,"updated_at":63} | truncated_object | {
"type": "object",
"properties": {
"score": {
"type": "string"
},
"status": {
"type": "number"
},
"ward": {
"type": "object",
"properties": {
"organism": {
"type": "string",
"enum": [
"admin",
"editor",
"vie... | {"score":"PASS","status":351.05,"ward":{"organism":"admin","phenotype":770.51,"format":null,"footnote":"active","shift_code":"This is a test value."},"category":520,"updated_at":63 | Unexpected end of JSON input — truncated object | {"score":"PASS","status":351.05,"ward":{"organism":"admin","phenotype":770.51,"format":null,"footnote":"active","shift_code":"This is a test value."},"category":520,"updated_at":63} |
TASK repair_structured_output
SPEC
FIELD discount TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD rating TYPE string VALUES type_a|type_b REQUIRED no
FIELD conductivity TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
FIELD step TYPE string REQUIRED yes
FIELD cargo_type TYPE string V... | {"discount":"type_c","conductivity":"type_d","step":"Paris","cargo_type":"admin"} | missing_bracket | {
"type": "object",
"properties": {
"discount": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"rating": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"conductivity": {
"t... | {"discount":"type_c","conductivity":"type_d","step":"Paris","cargo_type":"admin"} | Missing closing bracket | {"discount":"type_c","conductivity":"type_d","step":"Paris","cargo_type":"admin"} |
TASK repair_structured_output
SPEC
FIELD lane TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD message TYPE string VALUES option_a|option_b REQUIRED no
FIELD payment_status TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes
FIELD language TYPE string_date-time REQUIRED yes
FI... | {"lane":"mode_f","message":"option_b","payment_status":"level_4","language":"2024-05-14T17:15:00Z","strand":"world"} | tool_call_partial_args | {
"type": "object",
"properties": {
"lane": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
},
"message": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
... | I need to look up the information first.
Action: align_reads
Arguments: {"lane": "mode_f", "message": "option_b", "payment_status": "level_4", "language": "2024-05-14T17:15:00Z"} | Agent tool call missing required parameter 'strand' | {"lane":"mode_f","message":"option_b","payment_status":"level_4","language":"2024-05-14T17:15:00Z","strand":"world"} |
TASK repair_structured_output
SPEC
FIELD param_h58 TYPE boolean REQUIRED yes
FIELD param_n65 TYPE boolean REQUIRED no
FIELD param_q47 TYPE boolean REQUIRED yes
FIELD field_p10.val_c62 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
FIELD field_p10.dim_w62 TYPE string REQUIRED no
FIELD field_p10.attr... | {"param_h58":true,"param_q47":false,"key_k54":{"key_k73":"user@test.io","attr_z79":846,"field_w70":"GBP"}} | markdown_explanation | {
"type": "object",
"properties": {
"param_h58": {
"type": "boolean"
},
"param_n65": {
"type": "boolean"
},
"param_q47": {
"type": "boolean"
},
"field_p10": {
"type": "object",
"properties": {
"val_c62": {
"type": "string",
"enum"... | Here's the structured output:
```json
{"param_h58":true,"param_q47":false,"key_k54":{"key_k73":"user@test.io","attr_z79":846,"field_w70":"GBP"}}
```
Feel free to ask if you have questions. | Output contains markdown and explanatory text around JSON | {"param_h58":true,"param_q47":false,"key_k54":{"key_k73":"user@test.io","attr_z79":846,"field_w70":"GBP"}} |
TASK repair_structured_output
SPEC
FIELD lab_result TYPE string REQUIRED yes
FIELD compound.credit_score.length TYPE string_date-time REQUIRED yes
FIELD compound.credit_score.account_id TYPE integer REQUIRED no
FIELD compound.credit_score.language TYPE null REQUIRED yes
FIELD compound.credit_score.department TYPE stri... | {"lab_result":"Silva","compound":{"credit_score":{"length":"2026-02-16T13:23:00Z","account_id":902,"language":null,"wavelength":"synonymous"},"status_code":{"torque_output":"intermittent","aligned_pct":true,"umi":"Johnson","last_name":"single"},"maturity_date":481},"id":"Johnson","nickname":"Tokyo","isotope":{"filter_f... | truncated_array | {
"type": "object",
"properties": {
"lab_result": {
"type": "string"
},
"compound": {
"type": "object",
"properties": {
"credit_score": {
"type": "object",
"properties": {
"length": {
"type": "string",
"format": "date-... | {"lab_result":"Silva","compound":{"credit_score":{"length":"2026-02-16T13:23:00Z","account_id":902,"language":null,"wavelength":"synonymous"},"status_code":{"torque_output":"intermittent","aligned_pct":true,"umi":"Johnson","last_name":"single"},"maturity_date":481},"id":"Johnson","nickname":"Tokyo","isotope":{"filter_f... | Unexpected end of JSON input — truncated object | {"lab_result":"Silva","compound":{"credit_score":{"length":"2026-02-16T13:23:00Z","account_id":902,"language":null,"wavelength":"synonymous"},"status_code":{"torque_output":"intermittent","aligned_pct":true,"umi":"Johnson","last_name":"single"},"maturity_date":481},"id":"Johnson","nickname":"Tokyo","isotope":{"filter_f... |
TASK repair_structured_output
SPEC
FIELD company TYPE string REQUIRED yes
FIELD trace_id TYPE integer REQUIRED yes
FIELD size TYPE string_uri REQUIRED yes
BROKEN_OUTPUT
<functioncall> assign_berth
{company: "Diana", trace_id: 836, size: "https://data.com/v1"} | {"company":"Diana","trace_id":836,"size":"https://data.com/v1"} | tool_call_bad_format | {
"type": "object",
"properties": {
"company": {
"type": "string"
},
"trace_id": {
"type": "integer"
},
"size": {
"type": "string",
"format": "uri"
}
},
"required": [
"size",
"trace_id",
"company"
]
} | <functioncall> assign_berth
{company: "Diana", trace_id: 836, size: "https://data.com/v1"} | Tool call has malformed arguments — unquoted keys in function parameters | {"company":"Diana","trace_id":836,"size":"https://data.com/v1"} |
TASK repair_structured_output
SPEC
FIELD key_j62 TYPE number REQUIRED no
FIELD attr_q85 TYPE integer REQUIRED no
FIELD param_j12 TYPE string_email REQUIRED yes
FIELD attr_o56 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD key_o11 TYPE integer REQUIRED no
FIELD key_r79 TYPE string VALUES level_1|level_2|le... | {"attr_q85":749,"param_j12":"user@example.com","attr_o56":"large","key_o11":559,"key_r79":"level_1","field_c33":"option_a","key_u06":343} | tool_call_text_mix | {
"type": "object",
"properties": {
"key_j62": {
"type": "number"
},
"attr_q85": {
"type": "integer"
},
"param_j12": {
"type": "string",
"format": "email"
},
"attr_o56": {
"type": "string",
"enum": [
"small",
"medium",
"large",
... | I need to look up the information first.
<tool_call name="calculate_docking_fee">
{"attr_q85":749,"param_j12":"user@example.com","attr_o56":"large","key_o11":559,"key_r79":"level_1","field_c33":"option_a","key_u06":343}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"attr_q85":749,"param_j12":"user@example.com","attr_o56":"large","key_o11":559,"key_r79":"level_1","field_c33":"option_a","key_u06":343} |
TASK repair_structured_output
SPEC
FIELD manifest_ref TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD cargo_type TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD size TYPE integer REQUIRED yes
FIELD start_date TYPE boolean REQUIRED no
FIELD last_name TYPE string REQUIRED no
BROKEN_OUTPUT
... | {"manifest_ref":"cat_b","cargo_type":"underway","size":6,"start_date":false,"last_name":"Berlin"} | single_quotes | {
"type": "object",
"properties": {
"manifest_ref": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
},
"cargo_type": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
... | {'manifest_ref':'cat_b','cargo_type':'underway','size':6,'start_date':false,'last_name':'Berlin'} | Expecting property name enclosed in double quotes | {"manifest_ref":"cat_b","cargo_type":"underway","size":6,"start_date":false,"last_name":"Berlin"} |
TASK repair_structured_output
SPEC
FIELD key_j28 TYPE boolean REQUIRED no
FIELD dim_k82 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD prop_x04 TYPE integer REQUIRED no
FIELD attr_y07[] TYPE null REQUIRED yes
FIELD param_a31[].key_q93 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD par... | {"key_j28":false,"dim_k82":"coastal","prop_x04":347,"attr_y07":[null,null,null,null],"param_a31":[{"key_q93":"medium","key_c67":"Bob","key_a04":"black","key_n16":"level_1","col_i87":"inactive"},{"key_q93":"small","key_c67":"Charlie","key_a04":"blue","key_n16":"level_4","col_i87":"pending"},{"key_q93":"medium","key_a04"... | boolean_as_string | {
"type": "object",
"properties": {
"key_j28": {
"type": "boolean"
},
"dim_k82": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"prop_x04": {
"type": "integer"
},
"attr_y07": {
"type": "array... | {"key_j28": "False", "dim_k82": "coastal", "prop_x04": 347, "attr_y07": [null, null, null, null], "param_a31": [{"key_q93": "medium", "key_c67": "Bob", "key_a04": "black", "key_n16": "level_1", "col_i87": "inactive"}, {"key_q93": "small", "key_c67": "Charlie", "key_a04": "blue", "key_n16": "level_4", "col_i87": "pendin... | Field 'key_j28' must be boolean, got string | {"key_j28":false,"dim_k82":"coastal","prop_x04":347,"attr_y07":[null,null,null,null],"param_a31":[{"key_q93":"medium","key_c67":"Bob","key_a04":"black","key_n16":"level_1","col_i87":"inactive"},{"key_q93":"small","key_c67":"Charlie","key_a04":"blue","key_n16":"level_4","col_i87":"pending"},{"key_q93":"medium","key_a04"... |
TASK repair_structured_output
SPEC
FIELD rating TYPE string REQUIRED no
FIELD active TYPE boolean REQUIRED yes
FIELD status.format TYPE integer REQUIRED no
FIELD status.wavelength.chromosome TYPE string REQUIRED no
FIELD status.wavelength.log_level TYPE null REQUIRED yes
FIELD status.wavelength.id TYPE string VALUES e... | {"rating":"Santos","active":true,"status":{"format":716,"wavelength":{"chromosome":"test","log_level":null,"id":"sms"},"batch_code":"https://example.io/data","velocity":"user@domain.com","allele":false},"level":{"status_code":"intermittent","bed_number":"2024-11-20T15:52:00Z","type":846,"position":905.92,"date":"viewer... | missing_bracket | {
"type": "object",
"properties": {
"rating": {
"type": "string"
},
"active": {
"type": "boolean"
},
"status": {
"type": "object",
"properties": {
"format": {
"type": "integer"
},
"wavelength": {
"type": "object",
"pro... | {"rating":"Santos","active":true,"status":{"format":716,"wavelength":{"chromosome":"test","log_level":null,"id":"sms"},"batch_code":"https://example.io/data","velocity":"user@domain.com","allele":false},"level":{"status_code":"intermittent","bed_number":"2024-11-20T15:52:00Z","type":846,"position":905.92,"date":"viewer... | Missing closing bracket | {"rating":"Santos","active":true,"status":{"format":716,"wavelength":{"chromosome":"test","log_level":null,"id":"sms"},"batch_code":"https://example.io/data","velocity":"user@domain.com","allele":false},"level":{"status_code":"intermittent","bed_number":"2024-11-20T15:52:00Z","type":846,"position":905.92,"date":"viewer... |
TASK repair_structured_output
SPEC
FIELD end_date TYPE string REQUIRED no
FIELD balance TYPE integer REQUIRED no
FIELD log_level TYPE integer REQUIRED no
FIELD umi TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD product_id.wavelength TYPE number REQUIRED yes
FIELD product_id.shipping TYPE string_uri REQUIRED ... | {"end_date":"Alice","balance":810,"umi":"BRL","product_id":{"wavelength":617.1,"url":694.73,"last_name":447}} | missing_brace | {
"type": "object",
"properties": {
"end_date": {
"type": "string"
},
"balance": {
"type": "integer"
},
"log_level": {
"type": "integer"
},
"umi": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]... | {"end_date":"Alice","balance":810,"umi":"BRL","product_id":{"wavelength":617.1,"url":694.73,"last_name":447} | Missing closing brace | {"end_date":"Alice","balance":810,"umi":"BRL","product_id":{"wavelength":617.1,"url":694.73,"last_name":447}} |
TASK repair_structured_output
SPEC
FIELD status_code TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD feedback TYPE string REQUIRED no
FIELD turbidity TYPE string REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: annotate_mutation
Result: {"feedback": "cancelled", "turbidity": "2023-12-25"}
Processing... | {"status_code":"level_1","feedback":"cancelled","turbidity":"2023-12-25"} | agent_chain | {
"type": "object",
"properties": {
"status_code": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"feedback": {
"type": "string"
},
"turbidity": {
"type": "string"
}
},
"required": [
"turbidity",
"status_code"
]
} | Let me check the system.
Action: annotate_mutation
Result: {"feedback": "cancelled", "turbidity": "2023-12-25"}
Processing the request now.
Action: calibrate_instrument
Result: | Agent multi-step chain with truncated tool output | {"status_code":"level_1","feedback":"cancelled","turbidity":"2023-12-25"} |
TASK repair_structured_output
SPEC
FIELD enabled TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD bearing TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD shipper_ref TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: generate_... | {"enabled":"mode_b","bearing":"mode_e","shipper_ref":"cat_b"} | tool_call_partial_args | {
"type": "object",
"properties": {
"enabled": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"bearing": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
... | Let me check the system.
Action: generate_report
Arguments: {"bearing": "mode_e", "shipper_ref": "cat_b"} | Agent tool call missing required parameter 'enabled' | {"enabled":"mode_b","bearing":"mode_e","shipper_ref":"cat_b"} |
TASK repair_structured_output
SPEC
FIELD attr_h91 TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD attr_f35 TYPE string_email REQUIRED no
FIELD col_g09 TYPE string REQUIRED yes
FIELD dim_l59 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD dim_s06 TYPE string_uri REQUIRED yes
FIELD prop_q06.prop_v20 TYPE boole... | {"attr_h91":"cat_a","attr_f35":"admin@example.com","col_g09":"chrX","dim_s06":"https://api.org/api","prop_q06":{"prop_v20":true,"val_i08":"JPY","prop_j47":true,"val_i86":"example"},"param_o33":"confirmed"} | missing_required | {
"type": "object",
"properties": {
"attr_h91": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"attr_f35": {
"type": "string",
"format": "email"
},
"col_g09": {
"type": "string"
},
"dim_l59": {
"type": "string",
"enum":... | {"attr_h91": "cat_a", "attr_f35": "admin@example.com", "col_g09": "chrX", "dim_s06": "https://api.org/api", "prop_q06": {"prop_v20": true, "val_i08": "JPY", "prop_j47": true, "val_i86": "example"}} | Required field 'param_o33' is missing | {"attr_h91":"cat_a","attr_f35":"admin@example.com","col_g09":"chrX","dim_s06":"https://api.org/api","prop_q06":{"prop_v20":true,"val_i08":"JPY","prop_j47":true,"val_i86":"example"},"param_o33":"confirmed"} |
TASK repair_structured_output
SPEC
FIELD param_z68.val_l20 TYPE integer REQUIRED yes
FIELD param_z68.param_y47 TYPE string REQUIRED yes
FIELD param_z68.field_r15 TYPE string REQUIRED no
FIELD param_z68.prop_z92 TYPE null REQUIRED no
FIELD param_z68.field_t22 TYPE boolean REQUIRED no
FIELD param_z68.dim_c72 TYPE string... | {"param_z68":{"val_l20":894,"param_y47":"test@example.com","prop_z92":null,"dim_c72":"PASS"},"param_i68":null,"field_n56":"https://data.io/data"} | unquoted_keys | {
"type": "object",
"properties": {
"param_z68": {
"type": "object",
"properties": {
"val_l20": {
"type": "integer"
},
"param_y47": {
"type": "string"
},
"field_r15": {
"type": "string"
},
"prop_z92": {
"... | {param_z68:{val_l20:894,param_y47:"test@example.com",prop_z92:null,dim_c72:"PASS"},param_i68:null,field_n56:"https://data.io/data"} | Expecting property name enclosed in double quotes | {"param_z68":{"val_l20":894,"param_y47":"test@example.com","prop_z92":null,"dim_c72":"PASS"},"param_i68":null,"field_n56":"https://data.io/data"} |
TASK repair_structured_output
SPEC
FIELD param_q77 TYPE integer REQUIRED yes
FIELD prop_i22 TYPE string REQUIRED yes
FIELD field_g77 TYPE integer REQUIRED no
FIELD field_h29 TYPE string_date-time REQUIRED yes
BROKEN_OUTPUT
{"param_q77":320,"prop_i22":"baz","field_g77":930,"field_h29":"2021-02-12T20:27:00Z" | {"param_q77":320,"prop_i22":"baz","field_g77":930,"field_h29":"2021-02-12T20:27:00Z"} | truncated_object | {
"type": "object",
"properties": {
"param_q77": {
"type": "integer"
},
"prop_i22": {
"type": "string"
},
"field_g77": {
"type": "integer"
},
"field_h29": {
"type": "string",
"format": "date-time"
}
},
"required": [
"field_h29",
"prop_i22",
... | {"param_q77":320,"prop_i22":"baz","field_g77":930,"field_h29":"2021-02-12T20:27:00Z" | Unexpected end of JSON input — truncated object | {"param_q77":320,"prop_i22":"baz","field_g77":930,"field_h29":"2021-02-12T20:27:00Z"} |
TASK repair_structured_output
SPEC
FIELD attr_q10 TYPE boolean REQUIRED no
FIELD field_y62 TYPE string_date-time REQUIRED no
FIELD field_h27.col_i07 TYPE string REQUIRED no
FIELD field_h27.attr_b51 TYPE string REQUIRED yes
FIELD field_h27.key_r53[].col_r99 TYPE number REQUIRED yes
FIELD field_h27.key_r53[].field_h63 T... | {"attr_q10":false,"field_y62":"2021-03-11T13:30:00Z","prop_b63":"pending_review","val_y43":"sample","col_y29":385.37} | boolean_as_string | {
"type": "object",
"properties": {
"attr_q10": {
"type": "boolean"
},
"field_y62": {
"type": "string",
"format": "date-time"
},
"field_h27": {
"type": "object",
"properties": {
"col_i07": {
"type": "string"
},
"attr_b51": {
... | {"attr_q10": "False", "field_y62": "2021-03-11T13:30:00Z", "prop_b63": "pending_review", "val_y43": "sample", "col_y29": 385.37} | Field 'attr_q10' must be boolean, got string | {"attr_q10":false,"field_y62":"2021-03-11T13:30:00Z","prop_b63":"pending_review","val_y43":"sample","col_y29":385.37} |
TASK repair_structured_output
SPEC
FIELD section TYPE number REQUIRED no
FIELD status TYPE string_uri REQUIRED yes
FIELD fleet_number TYPE string VALUES type_a|type_b|type_c REQUIRED no
BROKEN_OUTPUT
{"section": 954.08, "status": "https://example.io/api", "fleet_number": "invalid_option_405"} | {"section":954.08,"status":"https://example.io/api","fleet_number":"type_a"} | invalid_enum | {
"type": "object",
"properties": {
"section": {
"type": "number"
},
"status": {
"type": "string",
"format": "uri"
},
"fleet_number": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
}
},
"required": [
"status"
... | {"section": 954.08, "status": "https://example.io/api", "fleet_number": "invalid_option_405"} | Field 'fleet_number' has invalid enum value 'invalid_option_405', expected one of ['type_a', 'type_b', 'type_c'] | {"section":954.08,"status":"https://example.io/api","fleet_number":"type_a"} |
TASK repair_structured_output
SPEC
FIELD vessel_name TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD chapter TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD tax TYPE string VALUES success|error|warning|info REQUIRED no
FIELD bed_number TYPE integer REQUIRED no
BROK... | {"chapter":"delivered","tax":"error","bed_number":714} | missing_brace | {
"type": "object",
"properties": {
"vessel_name": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"chapter": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
... | {"chapter":"delivered","tax":"error","bed_number":714 | Missing closing brace | {"chapter":"delivered","tax":"error","bed_number":714} |
TASK repair_structured_output
SPEC
FIELD dim_r11 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD col_e59 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD prop_u91 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD prop_l08 TYPE string_uri REQUIRED yes
BROKEN_OUTPUT
book_appointment(dim... | {"dim_r11":"USD","col_e59":"large","prop_u91":"green","prop_l08":"https://api.io/data"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"dim_r11": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"col_e59": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
... | book_appointment(dim_r11='USD', col_e59='large', prop_u91='green', prop_l08='https://api.io/data') | Tool call uses Python syntax instead of JSON | {"dim_r11":"USD","col_e59":"large","prop_u91":"green","prop_l08":"https://api.io/data"} |
TASK repair_structured_output
SPEC
FIELD field_i86 TYPE number REQUIRED yes
FIELD key_p82 TYPE number REQUIRED yes
FIELD key_o87 TYPE string_email REQUIRED yes
BROKEN_OUTPUT
{"field_i86":757.5,"key_p82":227.66,"key_o87":"admin@domain.org"} | {"field_i86":757.5,"key_p82":227.66,"key_o87":"admin@domain.org"} | missing_bracket | {
"type": "object",
"properties": {
"field_i86": {
"type": "number"
},
"key_p82": {
"type": "number"
},
"key_o87": {
"type": "string",
"format": "email"
}
},
"required": [
"key_o87",
"field_i86",
"key_p82"
]
} | {"field_i86":757.5,"key_p82":227.66,"key_o87":"admin@domain.org"} | Missing closing bracket | {"field_i86":757.5,"key_p82":227.66,"key_o87":"admin@domain.org"} |
TASK repair_structured_output
SPEC
FIELD consignee TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD log_level TYPE boolean REQUIRED no
FIELD crew_id TYPE integer REQUIRED no
FIELD vessel_name TYPE string VALUES single|married|divorced REQUIRED no
FIELD turbidity TYPE string VALUES type_a|ty... | {"consignee":"nonsense","crew_id":24,"turbidity":"type_e","frequency_hz":873} | wrong_type | {
"type": "object",
"properties": {
"consignee": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"log_level": {
"type": "boolean"
},
"crew_id": {
"type": "integer"
},
"vessel_name": {
... | {"consignee": "nonsense", "crew_id": "\"24\"", "turbidity": "type_e", "frequency_hz": 873} | Field 'crew_id' must be integer, got string | {"consignee":"nonsense","crew_id":24,"turbidity":"type_e","frequency_hz":873} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.