addedInput schema / properties / request / properties / chosen_field
Added value: +{
+ "default": "chosen",
+ "minLength": 1,
+ "type": "string"
+}
addedInput schema / properties / request / properties / inline_records
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "maxItems": 1000,
+ "minItems": 1,
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Inline synthetic or user-authored records to validate and persist without a server-local file"
+}
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"
+}