addedInput schema / properties / request / properties / chosen_field
Added value: +{
+ "default": "chosen",
+ "minLength": 1,
+ "type": "string"
+}
addedInput schema / properties / request / properties / invalid_record_policy
Added value: +{
+ "default": "error",
+ "description": "Fail on invalid rows, or skip them and report removal counts",
+ "enum": [
+ "error",
+ "skip"
+ ],
+ "type": "string"
+}
addedInput schema / properties / request / properties / preference_prompt_field
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Row field for the shared preference prompt, e.g. 'instruction'"
+}
addedInput schema / properties / request / properties / rejected_field
Added value: +{
+ "default": "rejected",
+ "minLength": 1,
+ "type": "string"
+}
addedInput schema / properties / request / properties / tool_calls_field
Added value: +{
+ "anyOf": [
+ {
+ "minLength": 1,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Row field containing target function calls, including raw xLAM answers"
+}
addedInput schema / properties / request / properties / tools_field
Added value: +{
+ "anyOf": [
+ {
+ "minLength": 1,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Row field containing OpenAI or raw function declarations, including JSON text"
+}