changedInput schema / properties / params / description
Previous value: -"Model-specific parameters as key-value pairs. Use get_model_schema to discover available parameters. For file parameters (fileinput, multifileinput, combinefileinput), pass URLs directly — no upload needed. For combinefileinput, pass an array of URLs."New value: +"Model-specific parameters as key-value pairs. Use get_model_schema to discover available parameters. Pass json and json-array parameters as structured JSON values in this same object. Continue a completed turn with previousTaskToken: add toolOutputs rows with call_id and output for tool results, or provide exactly one new prompt or non-empty messages value for a stateful next turn. For file parameters (fileinput, multifileinput, combinefileinput), pass URLs directly — no upload needed. For combinefileinput, pass an array of URLs."
addedOutput schema / properties / outputs / items / properties / finishreason
Added value: +{
+ "enum": [
+ "stop",
+ "tool_calls",
+ "length",
+ "content_filter",
+ "error"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / outputs / items / properties / segments
Added value: +{
+ "items": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "text": {
+ "type": "string"
+ },
+ "type": {
+ "enum": [
+ "thinking",
+ "answer"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "text"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "arguments": {
+ "type": "string"
+ },
+ "call_id": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "in_progress",
+ "completed",
+ "incomplete"
+ ],
+ "type": "string"
+ },
+ "type": {
+ "const": "function_call",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "id",
+ "call_id",
+ "name",
+ "arguments",
+ "status"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "call_id": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "input": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "status": {
+ "$ref": "#/properties/outputs/items/properties/segments/items/anyOf/1/properties/status"
+ },
+ "type": {
+ "const": "custom_tool_call",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "id",
+ "call_id",
+ "name",
+ "input",
+ "status"
+ ],
+ "type": "object"
+ }
+ ]
+ },
+ "type": "array"
+}
addedOutput schema / properties / outputs / items / properties / usage
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "input_tokens": {
+ "maximum": 1000000000000000,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "input_tokens_details": {
+ "additionalProperties": false,
+ "properties": {
+ "audio_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "cache_write_1h_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "cache_write_5m_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "cache_write_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "cached_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "image_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "text_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "video_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ }
+ },
+ "type": "object"
+ },
+ "output_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "output_tokens_details": {
+ "additionalProperties": false,
+ "properties": {
+ "accepted_prediction_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "audio_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "image_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "reasoning_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "rejected_prediction_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "text_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "video_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ }
+ },
+ "type": "object"
+ },
+ "server_tool_use": {
+ "additionalProperties": false,
+ "properties": {
+ "bash_code_execution_requests": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "code_execution_requests": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "computer_use_requests": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "file_search_requests": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "image_generation_requests": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "text_editor_code_execution_requests": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "web_fetch_requests": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ },
+ "web_search_requests": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ }
+ },
+ "type": "object"
+ },
+ "total_tokens": {
+ "$ref": "#/properties/outputs/items/properties/usage/properties/input_tokens"
+ }
+ },
+ "required": [
+ "input_tokens",
+ "output_tokens",
+ "total_tokens"
+ ],
+ "type": "object"
+}