diff --git a/docs/_static/llama-stack-spec.html b/docs/_static/llama-stack-spec.html
index ae9ad5d4c..18fa2c982 100644
--- a/docs/_static/llama-stack-spec.html
+++ b/docs/_static/llama-stack-spec.html
@@ -1922,7 +1922,7 @@
"get": {
"responses": {
"200": {
- "description": "A HealthInfo.",
+ "description": "Health information indicating if the service is operational.",
"content": {
"application/json": {
"schema": {
@@ -1947,7 +1947,7 @@
"tags": [
"Inspect"
],
- "description": "Get the health of the service.",
+ "description": "Get the current health status of the service.",
"parameters": []
}
},
@@ -1973,7 +1973,7 @@
"tags": [
"ToolRuntime"
],
- "description": "Index documents so they can be used by the RAG system",
+ "description": "Index documents so they can be used by the RAG system.",
"parameters": [],
"requestBody": {
"content": {
@@ -2839,7 +2839,7 @@
"get": {
"responses": {
"200": {
- "description": "A ListRoutesResponse.",
+ "description": "Response containing information about all available routes.",
"content": {
"application/json": {
"schema": {
@@ -2864,7 +2864,7 @@
"tags": [
"Inspect"
],
- "description": "List all routes.",
+ "description": "List all available API routes with their methods and implementing providers.",
"parameters": []
}
},
@@ -3324,6 +3324,7 @@
{
"name": "limit",
"in": "query",
+ "description": "(Optional) A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.",
"required": false,
"schema": {
"type": "integer"
@@ -3332,6 +3333,7 @@
{
"name": "order",
"in": "query",
+ "description": "(Optional) Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and `desc` for descending order.",
"required": false,
"schema": {
"type": "string"
@@ -3340,6 +3342,7 @@
{
"name": "after",
"in": "query",
+ "description": "(Optional) A cursor for use in pagination. `after` is an object ID that defines your place in the list.",
"required": false,
"schema": {
"type": "string"
@@ -3348,6 +3351,7 @@
{
"name": "before",
"in": "query",
+ "description": "(Optional) A cursor for use in pagination. `before` is an object ID that defines your place in the list.",
"required": false,
"schema": {
"type": "string"
@@ -3356,6 +3360,7 @@
{
"name": "filter",
"in": "query",
+ "description": "(Optional) Filter by file status to only return files with the specified status.",
"required": false,
"schema": {
"$ref": "#/components/schemas/VectorStoreFileStatus"
@@ -4345,7 +4350,7 @@
"post": {
"responses": {
"200": {
- "description": "OK",
+ "description": "RAGQueryResult containing the retrieved content and metadata",
"content": {
"application/json": {
"schema": {
@@ -4370,7 +4375,7 @@
"tags": [
"ToolRuntime"
],
- "description": "Query the RAG system for context; typically invoked by the agent",
+ "description": "Query the RAG system for context; typically invoked by the agent.",
"parameters": [],
"requestBody": {
"content": {
@@ -4907,7 +4912,7 @@
"post": {
"responses": {
"200": {
- "description": "OK",
+ "description": "Response containing filtered synthetic data samples and optional statistics",
"content": {
"application/json": {
"schema": {
@@ -4932,7 +4937,7 @@
"tags": [
"SyntheticDataGeneration (Coming Soon)"
],
- "description": "",
+ "description": "Generate synthetic data based on input dialogs and apply filtering.",
"parameters": [],
"requestBody": {
"content": {
@@ -4950,7 +4955,7 @@
"get": {
"responses": {
"200": {
- "description": "A VersionInfo.",
+ "description": "Version information containing the service version number.",
"content": {
"application/json": {
"schema": {
@@ -5144,14 +5149,16 @@
"type": {
"type": "string",
"const": "greedy",
- "default": "greedy"
+ "default": "greedy",
+ "description": "Must be \"greedy\" to identify this sampling strategy"
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "GreedySamplingStrategy"
+ "title": "GreedySamplingStrategy",
+ "description": "Greedy sampling strategy that selects the highest probability token at each step."
},
"ImageContentItem": {
"type": "object",
@@ -5671,10 +5678,12 @@
"type": {
"type": "string",
"const": "top_k",
- "default": "top_k"
+ "default": "top_k",
+ "description": "Must be \"top_k\" to identify this sampling strategy"
},
"top_k": {
- "type": "integer"
+ "type": "integer",
+ "description": "Number of top tokens to consider for sampling. Must be at least 1"
}
},
"additionalProperties": false,
@@ -5682,7 +5691,8 @@
"type",
"top_k"
],
- "title": "TopKSamplingStrategy"
+ "title": "TopKSamplingStrategy",
+ "description": "Top-k sampling strategy that restricts sampling to the k most likely tokens."
},
"TopPSamplingStrategy": {
"type": "object",
@@ -5690,34 +5700,40 @@
"type": {
"type": "string",
"const": "top_p",
- "default": "top_p"
+ "default": "top_p",
+ "description": "Must be \"top_p\" to identify this sampling strategy"
},
"temperature": {
- "type": "number"
+ "type": "number",
+ "description": "Controls randomness in sampling. Higher values increase randomness"
},
"top_p": {
"type": "number",
- "default": 0.95
+ "default": 0.95,
+ "description": "Cumulative probability threshold for nucleus sampling. Defaults to 0.95"
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "TopPSamplingStrategy"
+ "title": "TopPSamplingStrategy",
+ "description": "Top-p (nucleus) sampling strategy that samples from the smallest set of tokens with cumulative probability >= p."
},
"URL": {
"type": "object",
"properties": {
"uri": {
- "type": "string"
+ "type": "string",
+ "description": "The URL string pointing to the resource"
}
},
"additionalProperties": false,
"required": [
"uri"
],
- "title": "URL"
+ "title": "URL",
+ "description": "A URL reference to external content."
},
"UserMessage": {
"type": "object",
@@ -5808,14 +5824,16 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/ChatCompletionResponse"
- }
+ },
+ "description": "List of chat completion responses, one for each conversation in the batch"
}
},
"additionalProperties": false,
"required": [
"batch"
],
- "title": "BatchChatCompletionResponse"
+ "title": "BatchChatCompletionResponse",
+ "description": "Response from a batch chat completion request."
},
"ChatCompletionResponse": {
"type": "object",
@@ -5824,7 +5842,8 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/MetricInResponse"
- }
+ },
+ "description": "(Optional) List of metrics associated with the API response"
},
"completion_message": {
"$ref": "#/components/schemas/CompletionMessage",
@@ -5849,7 +5868,8 @@
"type": "object",
"properties": {
"metric": {
- "type": "string"
+ "type": "string",
+ "description": "The name of the metric"
},
"value": {
"oneOf": [
@@ -5859,10 +5879,12 @@
{
"type": "number"
}
- ]
+ ],
+ "description": "The numeric value of the metric"
},
"unit": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) The unit of measurement for the metric value"
}
},
"additionalProperties": false,
@@ -5870,7 +5892,8 @@
"metric",
"value"
],
- "title": "MetricInResponse"
+ "title": "MetricInResponse",
+ "description": "A metric value included in API responses."
},
"TokenLogProbs": {
"type": "object",
@@ -5939,14 +5962,16 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/CompletionResponse"
- }
+ },
+ "description": "List of completion responses, one for each input in the batch"
}
},
"additionalProperties": false,
"required": [
"batch"
],
- "title": "BatchCompletionResponse"
+ "title": "BatchCompletionResponse",
+ "description": "Response from a batch completion request."
},
"CompletionResponse": {
"type": "object",
@@ -5955,7 +5980,8 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/MetricInResponse"
- }
+ },
+ "description": "(Optional) List of metrics associated with the API response"
},
"content": {
"type": "string",
@@ -6123,7 +6149,8 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/MetricInResponse"
- }
+ },
+ "description": "(Optional) List of metrics associated with the API response"
},
"event": {
"$ref": "#/components/schemas/ChatCompletionResponseEvent",
@@ -6164,11 +6191,13 @@
"type": {
"type": "string",
"const": "image",
- "default": "image"
+ "default": "image",
+ "description": "Discriminator type of the delta. Always \"image\""
},
"image": {
"type": "string",
- "contentEncoding": "base64"
+ "contentEncoding": "base64",
+ "description": "The incremental image data as bytes"
}
},
"additionalProperties": false,
@@ -6176,7 +6205,8 @@
"type",
"image"
],
- "title": "ImageDelta"
+ "title": "ImageDelta",
+ "description": "An image content delta for streaming responses."
},
"TextDelta": {
"type": "object",
@@ -6184,10 +6214,12 @@
"type": {
"type": "string",
"const": "text",
- "default": "text"
+ "default": "text",
+ "description": "Discriminator type of the delta. Always \"text\""
},
"text": {
- "type": "string"
+ "type": "string",
+ "description": "The incremental text content"
}
},
"additionalProperties": false,
@@ -6195,7 +6227,8 @@
"type",
"text"
],
- "title": "TextDelta"
+ "title": "TextDelta",
+ "description": "A text content delta for streaming responses."
},
"ToolCallDelta": {
"type": "object",
@@ -6203,7 +6236,8 @@
"type": {
"type": "string",
"const": "tool_call",
- "default": "tool_call"
+ "default": "tool_call",
+ "description": "Discriminator type of the delta. Always \"tool_call\""
},
"tool_call": {
"oneOf": [
@@ -6213,7 +6247,8 @@
{
"$ref": "#/components/schemas/ToolCall"
}
- ]
+ ],
+ "description": "Either an in-progress tool call string or the final parsed tool call"
},
"parse_status": {
"type": "string",
@@ -6223,7 +6258,7 @@
"failed",
"succeeded"
],
- "title": "ToolCallParseStatus"
+ "description": "Current parsing status of the tool call"
}
},
"additionalProperties": false,
@@ -6232,7 +6267,8 @@
"tool_call",
"parse_status"
],
- "title": "ToolCallDelta"
+ "title": "ToolCallDelta",
+ "description": "A tool call content delta for streaming responses."
},
"CompletionRequest": {
"type": "object",
@@ -6284,7 +6320,8 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/MetricInResponse"
- }
+ },
+ "description": "(Optional) List of metrics associated with the API response"
},
"delta": {
"type": "string",
@@ -6453,16 +6490,19 @@
"type": "object",
"properties": {
"name": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the tool"
},
"description": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Human-readable description of what the tool does"
},
"parameters": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ToolParameter"
- }
+ },
+ "description": "(Optional) List of parameters this tool accepts"
},
"metadata": {
"type": "object",
@@ -6487,30 +6527,36 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Additional metadata about the tool"
}
},
"additionalProperties": false,
"required": [
"name"
],
- "title": "ToolDef"
+ "title": "ToolDef",
+ "description": "Tool definition used in runtime contexts."
},
"ToolParameter": {
"type": "object",
"properties": {
"name": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the parameter"
},
"parameter_type": {
- "type": "string"
+ "type": "string",
+ "description": "Type of the parameter (e.g., string, integer)"
},
"description": {
- "type": "string"
+ "type": "string",
+ "description": "Human-readable description of what the parameter does"
},
"required": {
"type": "boolean",
- "default": true
+ "default": true,
+ "description": "Whether this parameter is required for tool invocation"
},
"default": {
"oneOf": [
@@ -6532,7 +6578,8 @@
{
"type": "object"
}
- ]
+ ],
+ "description": "(Optional) Default value for the parameter if not provided"
}
},
"additionalProperties": false,
@@ -6542,7 +6589,8 @@
"description",
"required"
],
- "title": "ToolParameter"
+ "title": "ToolParameter",
+ "description": "Parameter definition for a tool."
},
"CreateAgentRequest": {
"type": "object",
@@ -6562,14 +6610,16 @@
"type": "object",
"properties": {
"agent_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the created agent"
}
},
"additionalProperties": false,
"required": [
"agent_id"
],
- "title": "AgentCreateResponse"
+ "title": "AgentCreateResponse",
+ "description": "Response returned when creating a new agent."
},
"CreateAgentSessionRequest": {
"type": "object",
@@ -6589,14 +6639,16 @@
"type": "object",
"properties": {
"session_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the created session"
}
},
"additionalProperties": false,
"required": [
"session_id"
],
- "title": "AgentSessionCreateResponse"
+ "title": "AgentSessionCreateResponse",
+ "description": "Response returned when creating a new agent session."
},
"CreateAgentTurnRequest": {
"type": "object",
@@ -6784,10 +6836,12 @@
"type": "object",
"properties": {
"violation_level": {
- "$ref": "#/components/schemas/ViolationLevel"
+ "$ref": "#/components/schemas/ViolationLevel",
+ "description": "Severity level of the violation"
},
"user_message": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Message to convey to the user about the violation"
},
"metadata": {
"type": "object",
@@ -6812,7 +6866,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "Additional metadata including specific violation codes for debugging and telemetry"
}
},
"additionalProperties": false,
@@ -6820,7 +6875,8 @@
"violation_level",
"metadata"
],
- "title": "SafetyViolation"
+ "title": "SafetyViolation",
+ "description": "Details of a safety violation detected by content moderation."
},
"ShieldCallStep": {
"type": "object",
@@ -6934,7 +6990,8 @@
"type": "object",
"properties": {
"call_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the tool call this response is for"
},
"tool_name": {
"oneOf": [
@@ -6951,10 +7008,12 @@
{
"type": "string"
}
- ]
+ ],
+ "description": "Name of the tool that was invoked"
},
"content": {
- "$ref": "#/components/schemas/InterleavedContent"
+ "$ref": "#/components/schemas/InterleavedContent",
+ "description": "The response content from the tool"
},
"metadata": {
"type": "object",
@@ -6979,7 +7038,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Additional metadata about the tool response"
}
},
"additionalProperties": false,
@@ -6988,16 +7048,19 @@
"tool_name",
"content"
],
- "title": "ToolResponse"
+ "title": "ToolResponse",
+ "description": "Response from a tool invocation."
},
"Turn": {
"type": "object",
"properties": {
"turn_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the turn within a session"
},
"session_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the conversation session"
},
"input_messages": {
"type": "array",
@@ -7010,7 +7073,8 @@
"$ref": "#/components/schemas/ToolResponseMessage"
}
]
- }
+ },
+ "description": "List of messages that initiated this turn"
},
"steps": {
"type": "array",
@@ -7038,10 +7102,12 @@
"memory_retrieval": "#/components/schemas/MemoryRetrievalStep"
}
}
- }
+ },
+ "description": "Ordered list of processing steps executed during this turn"
},
"output_message": {
- "$ref": "#/components/schemas/CompletionMessage"
+ "$ref": "#/components/schemas/CompletionMessage",
+ "description": "The model's generated response containing content and metadata"
},
"output_attachments": {
"type": "array",
@@ -7080,15 +7146,18 @@
],
"title": "Attachment",
"description": "An attachment to an agent turn."
- }
+ },
+ "description": "(Optional) Files or media attached to the agent's response"
},
"started_at": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "Timestamp when the turn began"
},
"completed_at": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "(Optional) Timestamp when the turn finished, if completed"
}
},
"additionalProperties": false,
@@ -7110,20 +7179,23 @@
"warn",
"error"
],
- "title": "ViolationLevel"
+ "title": "ViolationLevel",
+ "description": "Severity level of a safety violation."
},
"AgentTurnResponseEvent": {
"type": "object",
"properties": {
"payload": {
- "$ref": "#/components/schemas/AgentTurnResponseEventPayload"
+ "$ref": "#/components/schemas/AgentTurnResponseEventPayload",
+ "description": "Event-specific payload containing event data"
}
},
"additionalProperties": false,
"required": [
"payload"
],
- "title": "AgentTurnResponseEvent"
+ "title": "AgentTurnResponseEvent",
+ "description": "An event in an agent turn response stream."
},
"AgentTurnResponseEventPayload": {
"oneOf": [
@@ -7171,9 +7243,9 @@
"turn_complete",
"turn_awaiting_input"
],
- "title": "AgentTurnResponseEventType",
"const": "step_complete",
- "default": "step_complete"
+ "default": "step_complete",
+ "description": "Type of event being reported"
},
"step_type": {
"type": "string",
@@ -7183,11 +7255,11 @@
"shield_call",
"memory_retrieval"
],
- "title": "StepType",
- "description": "Type of the step in an agent turn."
+ "description": "Type of step being executed"
},
"step_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the step within a turn"
},
"step_details": {
"oneOf": [
@@ -7212,7 +7284,8 @@
"shield_call": "#/components/schemas/ShieldCallStep",
"memory_retrieval": "#/components/schemas/MemoryRetrievalStep"
}
- }
+ },
+ "description": "Complete details of the executed step"
}
},
"additionalProperties": false,
@@ -7222,7 +7295,8 @@
"step_id",
"step_details"
],
- "title": "AgentTurnResponseStepCompletePayload"
+ "title": "AgentTurnResponseStepCompletePayload",
+ "description": "Payload for step completion events in agent turn responses."
},
"AgentTurnResponseStepProgressPayload": {
"type": "object",
@@ -7237,9 +7311,9 @@
"turn_complete",
"turn_awaiting_input"
],
- "title": "AgentTurnResponseEventType",
"const": "step_progress",
- "default": "step_progress"
+ "default": "step_progress",
+ "description": "Type of event being reported"
},
"step_type": {
"type": "string",
@@ -7249,14 +7323,15 @@
"shield_call",
"memory_retrieval"
],
- "title": "StepType",
- "description": "Type of the step in an agent turn."
+ "description": "Type of step being executed"
},
"step_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the step within a turn"
},
"delta": {
- "$ref": "#/components/schemas/ContentDelta"
+ "$ref": "#/components/schemas/ContentDelta",
+ "description": "Incremental content changes during step execution"
}
},
"additionalProperties": false,
@@ -7266,7 +7341,8 @@
"step_id",
"delta"
],
- "title": "AgentTurnResponseStepProgressPayload"
+ "title": "AgentTurnResponseStepProgressPayload",
+ "description": "Payload for step progress events in agent turn responses."
},
"AgentTurnResponseStepStartPayload": {
"type": "object",
@@ -7281,9 +7357,9 @@
"turn_complete",
"turn_awaiting_input"
],
- "title": "AgentTurnResponseEventType",
"const": "step_start",
- "default": "step_start"
+ "default": "step_start",
+ "description": "Type of event being reported"
},
"step_type": {
"type": "string",
@@ -7293,11 +7369,11 @@
"shield_call",
"memory_retrieval"
],
- "title": "StepType",
- "description": "Type of the step in an agent turn."
+ "description": "Type of step being executed"
},
"step_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the step within a turn"
},
"metadata": {
"type": "object",
@@ -7322,7 +7398,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Additional metadata for the step"
}
},
"additionalProperties": false,
@@ -7331,13 +7408,15 @@
"step_type",
"step_id"
],
- "title": "AgentTurnResponseStepStartPayload"
+ "title": "AgentTurnResponseStepStartPayload",
+ "description": "Payload for step start events in agent turn responses."
},
"AgentTurnResponseStreamChunk": {
"type": "object",
"properties": {
"event": {
- "$ref": "#/components/schemas/AgentTurnResponseEvent"
+ "$ref": "#/components/schemas/AgentTurnResponseEvent",
+ "description": "Individual event in the agent turn response stream"
}
},
"additionalProperties": false,
@@ -7345,7 +7424,7 @@
"event"
],
"title": "AgentTurnResponseStreamChunk",
- "description": "streamed agent turn completion response."
+ "description": "Streamed agent turn completion response."
},
"AgentTurnResponseTurnAwaitingInputPayload": {
"type": "object",
@@ -7360,12 +7439,13 @@
"turn_complete",
"turn_awaiting_input"
],
- "title": "AgentTurnResponseEventType",
"const": "turn_awaiting_input",
- "default": "turn_awaiting_input"
+ "default": "turn_awaiting_input",
+ "description": "Type of event being reported"
},
"turn": {
- "$ref": "#/components/schemas/Turn"
+ "$ref": "#/components/schemas/Turn",
+ "description": "Turn data when waiting for external tool responses"
}
},
"additionalProperties": false,
@@ -7373,7 +7453,8 @@
"event_type",
"turn"
],
- "title": "AgentTurnResponseTurnAwaitingInputPayload"
+ "title": "AgentTurnResponseTurnAwaitingInputPayload",
+ "description": "Payload for turn awaiting input events in agent turn responses."
},
"AgentTurnResponseTurnCompletePayload": {
"type": "object",
@@ -7388,12 +7469,13 @@
"turn_complete",
"turn_awaiting_input"
],
- "title": "AgentTurnResponseEventType",
"const": "turn_complete",
- "default": "turn_complete"
+ "default": "turn_complete",
+ "description": "Type of event being reported"
},
"turn": {
- "$ref": "#/components/schemas/Turn"
+ "$ref": "#/components/schemas/Turn",
+ "description": "Complete turn data including all steps and results"
}
},
"additionalProperties": false,
@@ -7401,7 +7483,8 @@
"event_type",
"turn"
],
- "title": "AgentTurnResponseTurnCompletePayload"
+ "title": "AgentTurnResponseTurnCompletePayload",
+ "description": "Payload for turn completion events in agent turn responses."
},
"AgentTurnResponseTurnStartPayload": {
"type": "object",
@@ -7416,12 +7499,13 @@
"turn_complete",
"turn_awaiting_input"
],
- "title": "AgentTurnResponseEventType",
"const": "turn_start",
- "default": "turn_start"
+ "default": "turn_start",
+ "description": "Type of event being reported"
},
"turn_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the turn within a session"
}
},
"additionalProperties": false,
@@ -7429,7 +7513,8 @@
"event_type",
"turn_id"
],
- "title": "AgentTurnResponseTurnStartPayload"
+ "title": "AgentTurnResponseTurnStartPayload",
+ "description": "Payload for turn start events in agent turn responses."
},
"OpenAIResponseAnnotationCitation": {
"type": "object",
@@ -7437,19 +7522,24 @@
"type": {
"type": "string",
"const": "url_citation",
- "default": "url_citation"
+ "default": "url_citation",
+ "description": "Annotation type identifier, always \"url_citation\""
},
"end_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "End position of the citation span in the content"
},
"start_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Start position of the citation span in the content"
},
"title": {
- "type": "string"
+ "type": "string",
+ "description": "Title of the referenced web resource"
},
"url": {
- "type": "string"
+ "type": "string",
+ "description": "URL of the referenced web resource"
}
},
"additionalProperties": false,
@@ -7460,7 +7550,8 @@
"title",
"url"
],
- "title": "OpenAIResponseAnnotationCitation"
+ "title": "OpenAIResponseAnnotationCitation",
+ "description": "URL citation annotation for referencing external web resources."
},
"OpenAIResponseAnnotationContainerFileCitation": {
"type": "object",
@@ -7503,16 +7594,20 @@
"type": {
"type": "string",
"const": "file_citation",
- "default": "file_citation"
+ "default": "file_citation",
+ "description": "Annotation type identifier, always \"file_citation\""
},
"file_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the referenced file"
},
"filename": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the referenced file"
},
"index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Position index of the citation within the content"
}
},
"additionalProperties": false,
@@ -7522,7 +7617,8 @@
"filename",
"index"
],
- "title": "OpenAIResponseAnnotationFileCitation"
+ "title": "OpenAIResponseAnnotationFileCitation",
+ "description": "File citation annotation for referencing specific files in response content."
},
"OpenAIResponseAnnotationFilePath": {
"type": "object",
@@ -7656,15 +7752,18 @@
"const": "auto"
}
],
- "default": "auto"
+ "default": "auto",
+ "description": "Level of detail for image processing, can be \"low\", \"high\", or \"auto\""
},
"type": {
"type": "string",
"const": "input_image",
- "default": "input_image"
+ "default": "input_image",
+ "description": "Content type identifier, always \"input_image\""
},
"image_url": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) URL of the image content"
}
},
"additionalProperties": false,
@@ -7672,18 +7771,21 @@
"detail",
"type"
],
- "title": "OpenAIResponseInputMessageContentImage"
+ "title": "OpenAIResponseInputMessageContentImage",
+ "description": "Image content for input messages in OpenAI response format."
},
"OpenAIResponseInputMessageContentText": {
"type": "object",
"properties": {
"text": {
- "type": "string"
+ "type": "string",
+ "description": "The text content of the input message"
},
"type": {
"type": "string",
"const": "input_text",
- "default": "input_text"
+ "default": "input_text",
+ "description": "Content type identifier, always \"input_text\""
}
},
"additionalProperties": false,
@@ -7691,7 +7793,8 @@
"text",
"type"
],
- "title": "OpenAIResponseInputMessageContentText"
+ "title": "OpenAIResponseInputMessageContentText",
+ "description": "Text content for input messages in OpenAI response format."
},
"OpenAIResponseInputTool": {
"oneOf": [
@@ -7724,13 +7827,15 @@
"type": {
"type": "string",
"const": "file_search",
- "default": "file_search"
+ "default": "file_search",
+ "description": "Tool type identifier, always \"file_search\""
},
"vector_store_ids": {
"type": "array",
"items": {
"type": "string"
- }
+ },
+ "description": "List of vector store identifiers to search within"
},
"filters": {
"type": "object",
@@ -7755,25 +7860,29 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Additional filters to apply to the search"
},
"max_num_results": {
"type": "integer",
- "default": 10
+ "default": 10,
+ "description": "(Optional) Maximum number of search results to return (1-50)"
},
"ranking_options": {
"type": "object",
"properties": {
"ranker": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Name of the ranking algorithm to use"
},
"score_threshold": {
"type": "number",
- "default": 0.0
+ "default": 0.0,
+ "description": "(Optional) Minimum relevance score threshold for results"
}
},
"additionalProperties": false,
- "title": "SearchRankingOptions"
+ "description": "(Optional) Options for ranking and scoring search results"
}
},
"additionalProperties": false,
@@ -7781,7 +7890,8 @@
"type",
"vector_store_ids"
],
- "title": "OpenAIResponseInputToolFileSearch"
+ "title": "OpenAIResponseInputToolFileSearch",
+ "description": "File search tool configuration for OpenAI response inputs."
},
"OpenAIResponseInputToolFunction": {
"type": "object",
@@ -7789,13 +7899,16 @@
"type": {
"type": "string",
"const": "function",
- "default": "function"
+ "default": "function",
+ "description": "Tool type identifier, always \"function\""
},
"name": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the function that can be called"
},
"description": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Description of what the function does"
},
"parameters": {
"type": "object",
@@ -7820,10 +7933,12 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) JSON schema defining the function's parameters"
},
"strict": {
- "type": "boolean"
+ "type": "boolean",
+ "description": "(Optional) Whether to enforce strict parameter validation"
}
},
"additionalProperties": false,
@@ -7831,7 +7946,8 @@
"type",
"name"
],
- "title": "OpenAIResponseInputToolFunction"
+ "title": "OpenAIResponseInputToolFunction",
+ "description": "Function tool configuration for OpenAI response inputs."
},
"OpenAIResponseInputToolMCP": {
"type": "object",
@@ -7839,13 +7955,16 @@
"type": {
"type": "string",
"const": "mcp",
- "default": "mcp"
+ "default": "mcp",
+ "description": "Tool type identifier, always \"mcp\""
},
"server_label": {
- "type": "string"
+ "type": "string",
+ "description": "Label to identify this MCP server"
},
"server_url": {
- "type": "string"
+ "type": "string",
+ "description": "URL endpoint of the MCP server"
},
"headers": {
"type": "object",
@@ -7870,7 +7989,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) HTTP headers to include when connecting to the server"
},
"require_approval": {
"oneOf": [
@@ -7889,20 +8009,24 @@
"type": "array",
"items": {
"type": "string"
- }
+ },
+ "description": "(Optional) List of tool names that always require approval"
},
"never": {
"type": "array",
"items": {
"type": "string"
- }
+ },
+ "description": "(Optional) List of tool names that never require approval"
}
},
"additionalProperties": false,
- "title": "ApprovalFilter"
+ "title": "ApprovalFilter",
+ "description": "Filter configuration for MCP tool approval requirements."
}
],
- "default": "never"
+ "default": "never",
+ "description": "Approval requirement for tool calls (\"always\", \"never\", or filter)"
},
"allowed_tools": {
"oneOf": [
@@ -7919,13 +8043,16 @@
"type": "array",
"items": {
"type": "string"
- }
+ },
+ "description": "(Optional) List of specific tool names that are allowed"
}
},
"additionalProperties": false,
- "title": "AllowedToolsFilter"
+ "title": "AllowedToolsFilter",
+ "description": "Filter configuration for restricting which MCP tools can be used."
}
- ]
+ ],
+ "description": "(Optional) Restriction on which tools can be used from this server"
}
},
"additionalProperties": false,
@@ -7935,7 +8062,8 @@
"server_url",
"require_approval"
],
- "title": "OpenAIResponseInputToolMCP"
+ "title": "OpenAIResponseInputToolMCP",
+ "description": "Model Context Protocol (MCP) tool configuration for OpenAI response inputs."
},
"OpenAIResponseInputToolWebSearch": {
"type": "object",
@@ -7955,18 +8083,21 @@
"const": "web_search_preview_2025_03_11"
}
],
- "default": "web_search"
+ "default": "web_search",
+ "description": "Web search tool type variant to use"
},
"search_context_size": {
"type": "string",
- "default": "medium"
+ "default": "medium",
+ "description": "(Optional) Size of search context, must be \"low\", \"medium\", or \"high\""
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "OpenAIResponseInputToolWebSearch"
+ "title": "OpenAIResponseInputToolWebSearch",
+ "description": "Web search tool configuration for OpenAI response inputs."
},
"OpenAIResponseMessage": {
"type": "object",
@@ -8061,21 +8192,25 @@
"type": "object",
"properties": {
"id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for this tool call"
},
"queries": {
"type": "array",
"items": {
"type": "string"
- }
+ },
+ "description": "List of search queries executed"
},
"status": {
- "type": "string"
+ "type": "string",
+ "description": "Current status of the file search operation"
},
"type": {
"type": "string",
"const": "file_search_call",
- "default": "file_search_call"
+ "default": "file_search_call",
+ "description": "Tool call type identifier, always \"file_search_call\""
},
"results": {
"type": "array",
@@ -8103,7 +8238,8 @@
}
]
}
- }
+ },
+ "description": "(Optional) Search results returned by the file search operation"
}
},
"additionalProperties": false,
@@ -8113,30 +8249,37 @@
"status",
"type"
],
- "title": "OpenAIResponseOutputMessageFileSearchToolCall"
+ "title": "OpenAIResponseOutputMessageFileSearchToolCall",
+ "description": "File search tool call output message for OpenAI responses."
},
"OpenAIResponseOutputMessageFunctionToolCall": {
"type": "object",
"properties": {
"call_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the function call"
},
"name": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the function being called"
},
"arguments": {
- "type": "string"
+ "type": "string",
+ "description": "JSON string containing the function arguments"
},
"type": {
"type": "string",
"const": "function_call",
- "default": "function_call"
+ "default": "function_call",
+ "description": "Tool call type identifier, always \"function_call\""
},
"id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Additional identifier for the tool call"
},
"status": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Current status of the function call execution"
}
},
"additionalProperties": false,
@@ -8146,21 +8289,25 @@
"arguments",
"type"
],
- "title": "OpenAIResponseOutputMessageFunctionToolCall"
+ "title": "OpenAIResponseOutputMessageFunctionToolCall",
+ "description": "Function tool call output message for OpenAI responses."
},
"OpenAIResponseOutputMessageWebSearchToolCall": {
"type": "object",
"properties": {
"id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for this tool call"
},
"status": {
- "type": "string"
+ "type": "string",
+ "description": "Current status of the web search operation"
},
"type": {
"type": "string",
"const": "web_search_call",
- "default": "web_search_call"
+ "default": "web_search_call",
+ "description": "Tool call type identifier, always \"web_search_call\""
}
},
"additionalProperties": false,
@@ -8169,7 +8316,8 @@
"status",
"type"
],
- "title": "OpenAIResponseOutputMessageWebSearchToolCall"
+ "title": "OpenAIResponseOutputMessageWebSearchToolCall",
+ "description": "Web search tool call output message for OpenAI responses."
},
"OpenAIResponseText": {
"type": "object",
@@ -8237,12 +8385,12 @@
"required": [
"type"
],
- "title": "OpenAIResponseTextFormat",
- "description": "Configuration for Responses API text format."
+ "description": "(Optional) Text format configuration specifying output format requirements"
}
},
"additionalProperties": false,
- "title": "OpenAIResponseText"
+ "title": "OpenAIResponseText",
+ "description": "Text response configuration for OpenAI responses."
},
"CreateOpenaiResponseRequest": {
"type": "object",
@@ -8305,10 +8453,12 @@
"type": "object",
"properties": {
"code": {
- "type": "string"
+ "type": "string",
+ "description": "Error code identifying the type of failure"
},
"message": {
- "type": "string"
+ "type": "string",
+ "description": "Human-readable error message describing the failure"
}
},
"additionalProperties": false,
@@ -8316,58 +8466,73 @@
"code",
"message"
],
- "title": "OpenAIResponseError"
+ "title": "OpenAIResponseError",
+ "description": "Error details for failed OpenAI response requests."
},
"OpenAIResponseObject": {
"type": "object",
"properties": {
"created_at": {
- "type": "integer"
+ "type": "integer",
+ "description": "Unix timestamp when the response was created"
},
"error": {
- "$ref": "#/components/schemas/OpenAIResponseError"
+ "$ref": "#/components/schemas/OpenAIResponseError",
+ "description": "(Optional) Error details if the response generation failed"
},
"id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for this response"
},
"model": {
- "type": "string"
+ "type": "string",
+ "description": "Model identifier used for generation"
},
"object": {
"type": "string",
"const": "response",
- "default": "response"
+ "default": "response",
+ "description": "Object type identifier, always \"response\""
},
"output": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OpenAIResponseOutput"
- }
+ },
+ "description": "List of generated output items (messages, tool calls, etc.)"
},
"parallel_tool_calls": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "Whether tool calls can be executed in parallel"
},
"previous_response_id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) ID of the previous response in a conversation"
},
"status": {
- "type": "string"
+ "type": "string",
+ "description": "Current status of the response generation"
},
"temperature": {
- "type": "number"
+ "type": "number",
+ "description": "(Optional) Sampling temperature used for generation"
},
"text": {
- "$ref": "#/components/schemas/OpenAIResponseText"
+ "$ref": "#/components/schemas/OpenAIResponseText",
+ "description": "Text formatting configuration for the response"
},
"top_p": {
- "type": "number"
+ "type": "number",
+ "description": "(Optional) Nucleus sampling parameter used for generation"
},
"truncation": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Truncation strategy applied to the response"
},
"user": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) User identifier associated with the request"
}
},
"additionalProperties": false,
@@ -8381,7 +8546,8 @@
"status",
"text"
],
- "title": "OpenAIResponseObject"
+ "title": "OpenAIResponseObject",
+ "description": "Complete OpenAI response object containing generation results and metadata."
},
"OpenAIResponseOutput": {
"oneOf": [
@@ -8420,27 +8586,34 @@
"type": "object",
"properties": {
"id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for this MCP call"
},
"type": {
"type": "string",
"const": "mcp_call",
- "default": "mcp_call"
+ "default": "mcp_call",
+ "description": "Tool call type identifier, always \"mcp_call\""
},
"arguments": {
- "type": "string"
+ "type": "string",
+ "description": "JSON string containing the MCP call arguments"
},
"name": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the MCP method being called"
},
"server_label": {
- "type": "string"
+ "type": "string",
+ "description": "Label identifying the MCP server handling the call"
},
"error": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Error message if the MCP call failed"
},
"output": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Output result from the successful MCP call"
}
},
"additionalProperties": false,
@@ -8451,21 +8624,25 @@
"name",
"server_label"
],
- "title": "OpenAIResponseOutputMessageMCPCall"
+ "title": "OpenAIResponseOutputMessageMCPCall",
+ "description": "Model Context Protocol (MCP) call output message for OpenAI responses."
},
"OpenAIResponseOutputMessageMCPListTools": {
"type": "object",
"properties": {
"id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for this MCP list tools operation"
},
"type": {
"type": "string",
"const": "mcp_list_tools",
- "default": "mcp_list_tools"
+ "default": "mcp_list_tools",
+ "description": "Tool call type identifier, always \"mcp_list_tools\""
},
"server_label": {
- "type": "string"
+ "type": "string",
+ "description": "Label identifying the MCP server providing the tools"
},
"tools": {
"type": "array",
@@ -8495,13 +8672,16 @@
"type": "object"
}
]
- }
+ },
+ "description": "JSON schema defining the tool's input parameters"
},
"name": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the tool"
},
"description": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Description of what the tool does"
}
},
"additionalProperties": false,
@@ -8509,8 +8689,10 @@
"input_schema",
"name"
],
- "title": "MCPListToolsTool"
- }
+ "title": "MCPListToolsTool",
+ "description": "Tool definition returned by MCP list tools operation."
+ },
+ "description": "List of available tools provided by the MCP server"
}
},
"additionalProperties": false,
@@ -8520,7 +8702,8 @@
"server_label",
"tools"
],
- "title": "OpenAIResponseOutputMessageMCPListTools"
+ "title": "OpenAIResponseOutputMessageMCPListTools",
+ "description": "MCP list tools output message containing available tools from an MCP server."
},
"OpenAIResponseObjectStream": {
"oneOf": [
@@ -8611,12 +8794,14 @@
"type": "object",
"properties": {
"response": {
- "$ref": "#/components/schemas/OpenAIResponseObject"
+ "$ref": "#/components/schemas/OpenAIResponseObject",
+ "description": "The completed response object"
},
"type": {
"type": "string",
"const": "response.completed",
- "default": "response.completed"
+ "default": "response.completed",
+ "description": "Event type identifier, always \"response.completed\""
}
},
"additionalProperties": false,
@@ -8624,18 +8809,21 @@
"response",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseCompleted"
+ "title": "OpenAIResponseObjectStreamResponseCompleted",
+ "description": "Streaming event indicating a response has been completed."
},
"OpenAIResponseObjectStreamResponseCreated": {
"type": "object",
"properties": {
"response": {
- "$ref": "#/components/schemas/OpenAIResponseObject"
+ "$ref": "#/components/schemas/OpenAIResponseObject",
+ "description": "The newly created response object"
},
"type": {
"type": "string",
"const": "response.created",
- "default": "response.created"
+ "default": "response.created",
+ "description": "Event type identifier, always \"response.created\""
}
},
"additionalProperties": false,
@@ -8643,27 +8831,33 @@
"response",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseCreated"
+ "title": "OpenAIResponseObjectStreamResponseCreated",
+ "description": "Streaming event indicating a new response has been created."
},
"OpenAIResponseObjectStreamResponseFunctionCallArgumentsDelta": {
"type": "object",
"properties": {
"delta": {
- "type": "string"
+ "type": "string",
+ "description": "Incremental function call arguments being added"
},
"item_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the function call being updated"
},
"output_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Index position of the item in the output list"
},
"sequence_number": {
- "type": "integer"
+ "type": "integer",
+ "description": "Sequential number for ordering streaming events"
},
"type": {
"type": "string",
"const": "response.function_call_arguments.delta",
- "default": "response.function_call_arguments.delta"
+ "default": "response.function_call_arguments.delta",
+ "description": "Event type identifier, always \"response.function_call_arguments.delta\""
}
},
"additionalProperties": false,
@@ -8674,27 +8868,33 @@
"sequence_number",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseFunctionCallArgumentsDelta"
+ "title": "OpenAIResponseObjectStreamResponseFunctionCallArgumentsDelta",
+ "description": "Streaming event for incremental function call argument updates."
},
"OpenAIResponseObjectStreamResponseFunctionCallArgumentsDone": {
"type": "object",
"properties": {
"arguments": {
- "type": "string"
+ "type": "string",
+ "description": "Final complete arguments JSON string for the function call"
},
"item_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the completed function call"
},
"output_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Index position of the item in the output list"
},
"sequence_number": {
- "type": "integer"
+ "type": "integer",
+ "description": "Sequential number for ordering streaming events"
},
"type": {
"type": "string",
"const": "response.function_call_arguments.done",
- "default": "response.function_call_arguments.done"
+ "default": "response.function_call_arguments.done",
+ "description": "Event type identifier, always \"response.function_call_arguments.done\""
}
},
"additionalProperties": false,
@@ -8705,7 +8905,8 @@
"sequence_number",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseFunctionCallArgumentsDone"
+ "title": "OpenAIResponseObjectStreamResponseFunctionCallArgumentsDone",
+ "description": "Streaming event for when function call arguments are completed."
},
"OpenAIResponseObjectStreamResponseMcpCallArgumentsDelta": {
"type": "object",
@@ -8773,12 +8974,14 @@
"type": "object",
"properties": {
"sequence_number": {
- "type": "integer"
+ "type": "integer",
+ "description": "Sequential number for ordering streaming events"
},
"type": {
"type": "string",
"const": "response.mcp_call.completed",
- "default": "response.mcp_call.completed"
+ "default": "response.mcp_call.completed",
+ "description": "Event type identifier, always \"response.mcp_call.completed\""
}
},
"additionalProperties": false,
@@ -8786,18 +8989,21 @@
"sequence_number",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseMcpCallCompleted"
+ "title": "OpenAIResponseObjectStreamResponseMcpCallCompleted",
+ "description": "Streaming event for completed MCP calls."
},
"OpenAIResponseObjectStreamResponseMcpCallFailed": {
"type": "object",
"properties": {
"sequence_number": {
- "type": "integer"
+ "type": "integer",
+ "description": "Sequential number for ordering streaming events"
},
"type": {
"type": "string",
"const": "response.mcp_call.failed",
- "default": "response.mcp_call.failed"
+ "default": "response.mcp_call.failed",
+ "description": "Event type identifier, always \"response.mcp_call.failed\""
}
},
"additionalProperties": false,
@@ -8805,24 +9011,29 @@
"sequence_number",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseMcpCallFailed"
+ "title": "OpenAIResponseObjectStreamResponseMcpCallFailed",
+ "description": "Streaming event for failed MCP calls."
},
"OpenAIResponseObjectStreamResponseMcpCallInProgress": {
"type": "object",
"properties": {
"item_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the MCP call"
},
"output_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Index position of the item in the output list"
},
"sequence_number": {
- "type": "integer"
+ "type": "integer",
+ "description": "Sequential number for ordering streaming events"
},
"type": {
"type": "string",
"const": "response.mcp_call.in_progress",
- "default": "response.mcp_call.in_progress"
+ "default": "response.mcp_call.in_progress",
+ "description": "Event type identifier, always \"response.mcp_call.in_progress\""
}
},
"additionalProperties": false,
@@ -8832,7 +9043,8 @@
"sequence_number",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseMcpCallInProgress"
+ "title": "OpenAIResponseObjectStreamResponseMcpCallInProgress",
+ "description": "Streaming event for MCP calls in progress."
},
"OpenAIResponseObjectStreamResponseMcpListToolsCompleted": {
"type": "object",
@@ -8895,21 +9107,26 @@
"type": "object",
"properties": {
"response_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the response containing this output"
},
"item": {
- "$ref": "#/components/schemas/OpenAIResponseOutput"
+ "$ref": "#/components/schemas/OpenAIResponseOutput",
+ "description": "The output item that was added (message, tool call, etc.)"
},
"output_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Index position of this item in the output list"
},
"sequence_number": {
- "type": "integer"
+ "type": "integer",
+ "description": "Sequential number for ordering streaming events"
},
"type": {
"type": "string",
"const": "response.output_item.added",
- "default": "response.output_item.added"
+ "default": "response.output_item.added",
+ "description": "Event type identifier, always \"response.output_item.added\""
}
},
"additionalProperties": false,
@@ -8920,27 +9137,33 @@
"sequence_number",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseOutputItemAdded"
+ "title": "OpenAIResponseObjectStreamResponseOutputItemAdded",
+ "description": "Streaming event for when a new output item is added to the response."
},
"OpenAIResponseObjectStreamResponseOutputItemDone": {
"type": "object",
"properties": {
"response_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the response containing this output"
},
"item": {
- "$ref": "#/components/schemas/OpenAIResponseOutput"
+ "$ref": "#/components/schemas/OpenAIResponseOutput",
+ "description": "The completed output item (message, tool call, etc.)"
},
"output_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Index position of this item in the output list"
},
"sequence_number": {
- "type": "integer"
+ "type": "integer",
+ "description": "Sequential number for ordering streaming events"
},
"type": {
"type": "string",
"const": "response.output_item.done",
- "default": "response.output_item.done"
+ "default": "response.output_item.done",
+ "description": "Event type identifier, always \"response.output_item.done\""
}
},
"additionalProperties": false,
@@ -8951,30 +9174,37 @@
"sequence_number",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseOutputItemDone"
+ "title": "OpenAIResponseObjectStreamResponseOutputItemDone",
+ "description": "Streaming event for when an output item is completed."
},
"OpenAIResponseObjectStreamResponseOutputTextDelta": {
"type": "object",
"properties": {
"content_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Index position within the text content"
},
"delta": {
- "type": "string"
+ "type": "string",
+ "description": "Incremental text content being added"
},
"item_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the output item being updated"
},
"output_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Index position of the item in the output list"
},
"sequence_number": {
- "type": "integer"
+ "type": "integer",
+ "description": "Sequential number for ordering streaming events"
},
"type": {
"type": "string",
"const": "response.output_text.delta",
- "default": "response.output_text.delta"
+ "default": "response.output_text.delta",
+ "description": "Event type identifier, always \"response.output_text.delta\""
}
},
"additionalProperties": false,
@@ -8986,30 +9216,37 @@
"sequence_number",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseOutputTextDelta"
+ "title": "OpenAIResponseObjectStreamResponseOutputTextDelta",
+ "description": "Streaming event for incremental text content updates."
},
"OpenAIResponseObjectStreamResponseOutputTextDone": {
"type": "object",
"properties": {
"content_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Index position within the text content"
},
"text": {
- "type": "string"
+ "type": "string",
+ "description": "Final complete text content of the output item"
},
"item_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the completed output item"
},
"output_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Index position of the item in the output list"
},
"sequence_number": {
- "type": "integer"
+ "type": "integer",
+ "description": "Sequential number for ordering streaming events"
},
"type": {
"type": "string",
"const": "response.output_text.done",
- "default": "response.output_text.done"
+ "default": "response.output_text.done",
+ "description": "Event type identifier, always \"response.output_text.done\""
}
},
"additionalProperties": false,
@@ -9021,24 +9258,29 @@
"sequence_number",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseOutputTextDone"
+ "title": "OpenAIResponseObjectStreamResponseOutputTextDone",
+ "description": "Streaming event for when text output is completed."
},
"OpenAIResponseObjectStreamResponseWebSearchCallCompleted": {
"type": "object",
"properties": {
"item_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the completed web search call"
},
"output_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Index position of the item in the output list"
},
"sequence_number": {
- "type": "integer"
+ "type": "integer",
+ "description": "Sequential number for ordering streaming events"
},
"type": {
"type": "string",
"const": "response.web_search_call.completed",
- "default": "response.web_search_call.completed"
+ "default": "response.web_search_call.completed",
+ "description": "Event type identifier, always \"response.web_search_call.completed\""
}
},
"additionalProperties": false,
@@ -9048,24 +9290,29 @@
"sequence_number",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseWebSearchCallCompleted"
+ "title": "OpenAIResponseObjectStreamResponseWebSearchCallCompleted",
+ "description": "Streaming event for completed web search calls."
},
"OpenAIResponseObjectStreamResponseWebSearchCallInProgress": {
"type": "object",
"properties": {
"item_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the web search call"
},
"output_index": {
- "type": "integer"
+ "type": "integer",
+ "description": "Index position of the item in the output list"
},
"sequence_number": {
- "type": "integer"
+ "type": "integer",
+ "description": "Sequential number for ordering streaming events"
},
"type": {
"type": "string",
"const": "response.web_search_call.in_progress",
- "default": "response.web_search_call.in_progress"
+ "default": "response.web_search_call.in_progress",
+ "description": "Event type identifier, always \"response.web_search_call.in_progress\""
}
},
"additionalProperties": false,
@@ -9075,7 +9322,8 @@
"sequence_number",
"type"
],
- "title": "OpenAIResponseObjectStreamResponseWebSearchCallInProgress"
+ "title": "OpenAIResponseObjectStreamResponseWebSearchCallInProgress",
+ "description": "Streaming event for web search calls in progress."
},
"OpenAIResponseObjectStreamResponseWebSearchCallSearching": {
"type": "object",
@@ -9108,16 +9356,19 @@
"type": "object",
"properties": {
"id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the deleted response"
},
"object": {
"type": "string",
"const": "response",
- "default": "response"
+ "default": "response",
+ "description": "Object type identifier, always \"response\""
},
"deleted": {
"type": "boolean",
- "default": true
+ "default": true,
+ "description": "Deletion confirmation flag, always True"
}
},
"additionalProperties": false,
@@ -9126,7 +9377,8 @@
"object",
"deleted"
],
- "title": "OpenAIDeleteResponseObject"
+ "title": "OpenAIDeleteResponseObject",
+ "description": "Response object confirming deletion of an OpenAI response."
},
"EmbeddingsRequest": {
"type": "object",
@@ -9232,7 +9484,8 @@
"categorical_count",
"accuracy"
],
- "title": "AggregationFunctionType"
+ "title": "AggregationFunctionType",
+ "description": "Types of aggregation functions for scoring results."
},
"BasicScoringFnParams": {
"type": "object",
@@ -9240,13 +9493,15 @@
"type": {
"$ref": "#/components/schemas/ScoringFnParamsType",
"const": "basic",
- "default": "basic"
+ "default": "basic",
+ "description": "The type of scoring function parameters, always basic"
},
"aggregation_functions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AggregationFunctionType"
- }
+ },
+ "description": "Aggregation functions to apply to the scores of each row"
}
},
"additionalProperties": false,
@@ -9254,7 +9509,8 @@
"type",
"aggregation_functions"
],
- "title": "BasicScoringFnParams"
+ "title": "BasicScoringFnParams",
+ "description": "Parameters for basic scoring function configuration."
},
"BenchmarkConfig": {
"type": "object",
@@ -9306,25 +9562,30 @@
"type": {
"$ref": "#/components/schemas/ScoringFnParamsType",
"const": "llm_as_judge",
- "default": "llm_as_judge"
+ "default": "llm_as_judge",
+ "description": "The type of scoring function parameters, always llm_as_judge"
},
"judge_model": {
- "type": "string"
+ "type": "string",
+ "description": "Identifier of the LLM model to use as a judge for scoring"
},
"prompt_template": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Custom prompt template for the judge model"
},
"judge_score_regexes": {
"type": "array",
"items": {
"type": "string"
- }
+ },
+ "description": "Regexes to extract the answer from generated response"
},
"aggregation_functions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AggregationFunctionType"
- }
+ },
+ "description": "Aggregation functions to apply to the scores of each row"
}
},
"additionalProperties": false,
@@ -9334,7 +9595,8 @@
"judge_score_regexes",
"aggregation_functions"
],
- "title": "LLMAsJudgeScoringFnParams"
+ "title": "LLMAsJudgeScoringFnParams",
+ "description": "Parameters for LLM-as-judge scoring function configuration."
},
"ModelCandidate": {
"type": "object",
@@ -9372,19 +9634,22 @@
"type": {
"$ref": "#/components/schemas/ScoringFnParamsType",
"const": "regex_parser",
- "default": "regex_parser"
+ "default": "regex_parser",
+ "description": "The type of scoring function parameters, always regex_parser"
},
"parsing_regexes": {
"type": "array",
"items": {
"type": "string"
- }
+ },
+ "description": "Regex to extract the answer from generated response"
},
"aggregation_functions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AggregationFunctionType"
- }
+ },
+ "description": "Aggregation functions to apply to the scores of each row"
}
},
"additionalProperties": false,
@@ -9393,7 +9658,8 @@
"parsing_regexes",
"aggregation_functions"
],
- "title": "RegexParserScoringFnParams"
+ "title": "RegexParserScoringFnParams",
+ "description": "Parameters for regex parser scoring function configuration."
},
"ScoringFnParams": {
"oneOf": [
@@ -9423,7 +9689,8 @@
"regex_parser",
"basic"
],
- "title": "ScoringFnParamsType"
+ "title": "ScoringFnParamsType",
+ "description": "Types of scoring function parameter configurations."
},
"EvaluateRowsRequest": {
"type": "object",
@@ -9596,14 +9863,17 @@
"type": "object",
"properties": {
"agent_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the agent"
},
"agent_config": {
- "$ref": "#/components/schemas/AgentConfig"
+ "$ref": "#/components/schemas/AgentConfig",
+ "description": "Configuration settings for the agent"
},
"created_at": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "Timestamp when the agent was created"
}
},
"additionalProperties": false,
@@ -9612,26 +9882,31 @@
"agent_config",
"created_at"
],
- "title": "Agent"
+ "title": "Agent",
+ "description": "An agent instance with configuration and metadata."
},
"Session": {
"type": "object",
"properties": {
"session_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the conversation session"
},
"session_name": {
- "type": "string"
+ "type": "string",
+ "description": "Human-readable name for the session"
},
"turns": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Turn"
- }
+ },
+ "description": "List of all turns that have occurred in this session"
},
"started_at": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "Timestamp when the session was created"
}
},
"additionalProperties": false,
@@ -9670,14 +9945,16 @@
"shield_call": "#/components/schemas/ShieldCallStep",
"memory_retrieval": "#/components/schemas/MemoryRetrievalStep"
}
- }
+ },
+ "description": "The complete step data and execution details"
}
},
"additionalProperties": false,
"required": [
"step"
],
- "title": "AgentStepResponse"
+ "title": "AgentStepResponse",
+ "description": "Response containing details of a specific agent step."
},
"Benchmark": {
"type": "object",
@@ -9703,18 +9980,20 @@
"tool",
"tool_group"
],
- "title": "ResourceType",
"const": "benchmark",
- "default": "benchmark"
+ "default": "benchmark",
+ "description": "The resource type, always benchmark"
},
"dataset_id": {
- "type": "string"
+ "type": "string",
+ "description": "Identifier of the dataset to use for the benchmark evaluation"
},
"scoring_functions": {
"type": "array",
"items": {
"type": "string"
- }
+ },
+ "description": "List of scoring function identifiers to apply during evaluation"
},
"metadata": {
"type": "object",
@@ -9739,7 +10018,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "Metadata for this evaluation task"
}
},
"additionalProperties": false,
@@ -9751,7 +10031,8 @@
"scoring_functions",
"metadata"
],
- "title": "Benchmark"
+ "title": "Benchmark",
+ "description": "A benchmark resource for evaluating model performance."
},
"OpenAIAssistantMessageParam": {
"type": "object",
@@ -9801,10 +10082,12 @@
"type": {
"type": "string",
"const": "image_url",
- "default": "image_url"
+ "default": "image_url",
+ "description": "Must be \"image_url\" to identify this as image content"
},
"image_url": {
- "$ref": "#/components/schemas/OpenAIImageURL"
+ "$ref": "#/components/schemas/OpenAIImageURL",
+ "description": "Image URL specification and processing details"
}
},
"additionalProperties": false,
@@ -9812,7 +10095,8 @@
"type",
"image_url"
],
- "title": "OpenAIChatCompletionContentPartImageParam"
+ "title": "OpenAIChatCompletionContentPartImageParam",
+ "description": "Image content part for OpenAI-compatible chat completion messages."
},
"OpenAIChatCompletionContentPartParam": {
"oneOf": [
@@ -9837,10 +10121,12 @@
"type": {
"type": "string",
"const": "text",
- "default": "text"
+ "default": "text",
+ "description": "Must be \"text\" to identify this as text content"
},
"text": {
- "type": "string"
+ "type": "string",
+ "description": "The text content of the message"
}
},
"additionalProperties": false,
@@ -9848,44 +10134,53 @@
"type",
"text"
],
- "title": "OpenAIChatCompletionContentPartTextParam"
+ "title": "OpenAIChatCompletionContentPartTextParam",
+ "description": "Text content part for OpenAI-compatible chat completion messages."
},
"OpenAIChatCompletionToolCall": {
"type": "object",
"properties": {
"index": {
- "type": "integer"
+ "type": "integer",
+ "description": "(Optional) Index of the tool call in the list"
},
"id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Unique identifier for the tool call"
},
"type": {
"type": "string",
"const": "function",
- "default": "function"
+ "default": "function",
+ "description": "Must be \"function\" to identify this as a function call"
},
"function": {
- "$ref": "#/components/schemas/OpenAIChatCompletionToolCallFunction"
+ "$ref": "#/components/schemas/OpenAIChatCompletionToolCallFunction",
+ "description": "(Optional) Function call details"
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "OpenAIChatCompletionToolCall"
+ "title": "OpenAIChatCompletionToolCall",
+ "description": "Tool call specification for OpenAI-compatible chat completion responses."
},
"OpenAIChatCompletionToolCallFunction": {
"type": "object",
"properties": {
"name": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Name of the function to call"
},
"arguments": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Arguments to pass to the function as a JSON string"
}
},
"additionalProperties": false,
- "title": "OpenAIChatCompletionToolCallFunction"
+ "title": "OpenAIChatCompletionToolCallFunction",
+ "description": "Function call details for OpenAI-compatible tool calls."
},
"OpenAIChoice": {
"type": "object",
@@ -9978,17 +10273,20 @@
"type": "object",
"properties": {
"url": {
- "type": "string"
+ "type": "string",
+ "description": "URL of the image to include in the message"
},
"detail": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Level of detail for image processing. Can be \"low\", \"high\", or \"auto\""
}
},
"additionalProperties": false,
"required": [
"url"
],
- "title": "OpenAIImageURL"
+ "title": "OpenAIImageURL",
+ "description": "Image URL specification for OpenAI-compatible chat completion messages."
},
"OpenAIMessageParam": {
"oneOf": [
@@ -10270,9 +10568,9 @@
"tool",
"tool_group"
],
- "title": "ResourceType",
"const": "dataset",
- "default": "dataset"
+ "default": "dataset",
+ "description": "Type of resource, always 'dataset' for datasets"
},
"purpose": {
"type": "string",
@@ -10281,11 +10579,11 @@
"eval/question-answer",
"eval/messages-answer"
],
- "title": "DatasetPurpose",
- "description": "Purpose of the dataset. Each purpose has a required input data schema."
+ "description": "Purpose of the dataset indicating its intended use"
},
"source": {
- "$ref": "#/components/schemas/DataSource"
+ "$ref": "#/components/schemas/DataSource",
+ "description": "Data source configuration for the dataset"
},
"metadata": {
"type": "object",
@@ -10310,7 +10608,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "Additional metadata for the dataset"
}
},
"additionalProperties": false,
@@ -10322,7 +10621,8 @@
"source",
"metadata"
],
- "title": "Dataset"
+ "title": "Dataset",
+ "description": "Dataset resource for storing and accessing training or evaluation data."
},
"RowsDataSource": {
"type": "object",
@@ -10395,13 +10695,16 @@
"type": "object",
"properties": {
"identifier": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for this resource in llama stack"
},
"provider_resource_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for this resource in the provider"
},
"provider_id": {
- "type": "string"
+ "type": "string",
+ "description": "ID of the provider that owns this resource"
},
"type": {
"type": "string",
@@ -10415,9 +10718,9 @@
"tool",
"tool_group"
],
- "title": "ResourceType",
"const": "model",
- "default": "model"
+ "default": "model",
+ "description": "The resource type, always 'model' for model resources"
},
"metadata": {
"type": "object",
@@ -10442,11 +10745,13 @@
"type": "object"
}
]
- }
+ },
+ "description": "Any additional metadata for this model"
},
"model_type": {
"$ref": "#/components/schemas/ModelType",
- "default": "llm"
+ "default": "llm",
+ "description": "The type of model (LLM or embedding model)"
}
},
"additionalProperties": false,
@@ -10457,7 +10762,8 @@
"metadata",
"model_type"
],
- "title": "Model"
+ "title": "Model",
+ "description": "A model resource representing an AI model registered in Llama Stack."
},
"ModelType": {
"type": "string",
@@ -10465,7 +10771,8 @@
"llm",
"embedding"
],
- "title": "ModelType"
+ "title": "ModelType",
+ "description": "Enumeration of supported model types in Llama Stack."
},
"AgentTurnInputType": {
"type": "object",
@@ -10473,14 +10780,16 @@
"type": {
"type": "string",
"const": "agent_turn_input",
- "default": "agent_turn_input"
+ "default": "agent_turn_input",
+ "description": "Discriminator type. Always \"agent_turn_input\""
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "AgentTurnInputType"
+ "title": "AgentTurnInputType",
+ "description": "Parameter type for agent turn input."
},
"ArrayType": {
"type": "object",
@@ -10488,14 +10797,16 @@
"type": {
"type": "string",
"const": "array",
- "default": "array"
+ "default": "array",
+ "description": "Discriminator type. Always \"array\""
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "ArrayType"
+ "title": "ArrayType",
+ "description": "Parameter type for array values."
},
"BooleanType": {
"type": "object",
@@ -10503,14 +10814,16 @@
"type": {
"type": "string",
"const": "boolean",
- "default": "boolean"
+ "default": "boolean",
+ "description": "Discriminator type. Always \"boolean\""
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "BooleanType"
+ "title": "BooleanType",
+ "description": "Parameter type for boolean values."
},
"ChatCompletionInputType": {
"type": "object",
@@ -10518,14 +10831,16 @@
"type": {
"type": "string",
"const": "chat_completion_input",
- "default": "chat_completion_input"
+ "default": "chat_completion_input",
+ "description": "Discriminator type. Always \"chat_completion_input\""
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "ChatCompletionInputType"
+ "title": "ChatCompletionInputType",
+ "description": "Parameter type for chat completion input."
},
"CompletionInputType": {
"type": "object",
@@ -10533,14 +10848,16 @@
"type": {
"type": "string",
"const": "completion_input",
- "default": "completion_input"
+ "default": "completion_input",
+ "description": "Discriminator type. Always \"completion_input\""
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "CompletionInputType"
+ "title": "CompletionInputType",
+ "description": "Parameter type for completion input."
},
"JsonType": {
"type": "object",
@@ -10548,14 +10865,16 @@
"type": {
"type": "string",
"const": "json",
- "default": "json"
+ "default": "json",
+ "description": "Discriminator type. Always \"json\""
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "JsonType"
+ "title": "JsonType",
+ "description": "Parameter type for JSON values."
},
"NumberType": {
"type": "object",
@@ -10563,14 +10882,16 @@
"type": {
"type": "string",
"const": "number",
- "default": "number"
+ "default": "number",
+ "description": "Discriminator type. Always \"number\""
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "NumberType"
+ "title": "NumberType",
+ "description": "Parameter type for numeric values."
},
"ObjectType": {
"type": "object",
@@ -10578,14 +10899,16 @@
"type": {
"type": "string",
"const": "object",
- "default": "object"
+ "default": "object",
+ "description": "Discriminator type. Always \"object\""
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "ObjectType"
+ "title": "ObjectType",
+ "description": "Parameter type for object values."
},
"ParamType": {
"oneOf": [
@@ -10660,9 +10983,9 @@
"tool",
"tool_group"
],
- "title": "ResourceType",
"const": "scoring_function",
- "default": "scoring_function"
+ "default": "scoring_function",
+ "description": "The resource type, always scoring_function"
},
"description": {
"type": "string"
@@ -10707,7 +11030,8 @@
"metadata",
"return_type"
],
- "title": "ScoringFn"
+ "title": "ScoringFn",
+ "description": "A scoring function resource for evaluating model outputs."
},
"StringType": {
"type": "object",
@@ -10715,14 +11039,16 @@
"type": {
"type": "string",
"const": "string",
- "default": "string"
+ "default": "string",
+ "description": "Discriminator type. Always \"string\""
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "StringType"
+ "title": "StringType",
+ "description": "Parameter type for string values."
},
"UnionType": {
"type": "object",
@@ -10730,14 +11056,16 @@
"type": {
"type": "string",
"const": "union",
- "default": "union"
+ "default": "union",
+ "description": "Discriminator type. Always \"union\""
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "UnionType"
+ "title": "UnionType",
+ "description": "Parameter type for union values."
},
"Shield": {
"type": "object",
@@ -10763,9 +11091,9 @@
"tool",
"tool_group"
],
- "title": "ResourceType",
"const": "shield",
- "default": "shield"
+ "default": "shield",
+ "description": "The resource type, always shield"
},
"params": {
"type": "object",
@@ -10790,7 +11118,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Configuration parameters for the shield"
}
},
"additionalProperties": false,
@@ -10800,30 +11129,36 @@
"type"
],
"title": "Shield",
- "description": "A safety shield resource that can be used to check content"
+ "description": "A safety shield resource that can be used to check content."
},
"Span": {
"type": "object",
"properties": {
"span_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the span"
},
"trace_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the trace this span belongs to"
},
"parent_span_id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Unique identifier for the parent span, if this is a child span"
},
"name": {
- "type": "string"
+ "type": "string",
+ "description": "Human-readable name describing the operation this span represents"
},
"start_time": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "Timestamp when the operation began"
},
"end_time": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "(Optional) Timestamp when the operation finished, if completed"
},
"attributes": {
"type": "object",
@@ -10848,7 +11183,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Key-value pairs containing additional metadata about the span"
}
},
"additionalProperties": false,
@@ -10858,7 +11194,8 @@
"name",
"start_time"
],
- "title": "Span"
+ "title": "Span",
+ "description": "A span representing a single operation within a trace."
},
"GetSpanTreeRequest": {
"type": "object",
@@ -10884,30 +11221,37 @@
"ok",
"error"
],
- "title": "SpanStatus"
+ "title": "SpanStatus",
+ "description": "The status of a span indicating whether it completed successfully or with an error."
},
"SpanWithStatus": {
"type": "object",
"properties": {
"span_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the span"
},
"trace_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the trace this span belongs to"
},
"parent_span_id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Unique identifier for the parent span, if this is a child span"
},
"name": {
- "type": "string"
+ "type": "string",
+ "description": "Human-readable name describing the operation this span represents"
},
"start_time": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "Timestamp when the operation began"
},
"end_time": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "(Optional) Timestamp when the operation finished, if completed"
},
"attributes": {
"type": "object",
@@ -10932,10 +11276,12 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Key-value pairs containing additional metadata about the span"
},
"status": {
- "$ref": "#/components/schemas/SpanStatus"
+ "$ref": "#/components/schemas/SpanStatus",
+ "description": "(Optional) The current status of the span"
}
},
"additionalProperties": false,
@@ -10945,7 +11291,8 @@
"name",
"start_time"
],
- "title": "SpanWithStatus"
+ "title": "SpanWithStatus",
+ "description": "A span that includes status information."
},
"QuerySpanTreeResponse": {
"type": "object",
@@ -10954,14 +11301,16 @@
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/SpanWithStatus"
- }
+ },
+ "description": "Dictionary mapping span IDs to spans with status information"
}
},
"additionalProperties": false,
"required": [
"data"
],
- "title": "QuerySpanTreeResponse"
+ "title": "QuerySpanTreeResponse",
+ "description": "Response containing a tree structure of spans."
},
"Tool": {
"type": "object",
@@ -10987,21 +11336,24 @@
"tool",
"tool_group"
],
- "title": "ResourceType",
"const": "tool",
- "default": "tool"
+ "default": "tool",
+ "description": "Type of resource, always 'tool'"
},
"toolgroup_id": {
- "type": "string"
+ "type": "string",
+ "description": "ID of the tool group this tool belongs to"
},
"description": {
- "type": "string"
+ "type": "string",
+ "description": "Human-readable description of what the tool does"
},
"parameters": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ToolParameter"
- }
+ },
+ "description": "List of parameters this tool accepts"
},
"metadata": {
"type": "object",
@@ -11026,7 +11378,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Additional metadata about the tool"
}
},
"additionalProperties": false,
@@ -11038,7 +11391,8 @@
"description",
"parameters"
],
- "title": "Tool"
+ "title": "Tool",
+ "description": "A tool that can be invoked by agents."
},
"ToolGroup": {
"type": "object",
@@ -11064,12 +11418,13 @@
"tool",
"tool_group"
],
- "title": "ResourceType",
"const": "tool_group",
- "default": "tool_group"
+ "default": "tool_group",
+ "description": "Type of resource, always 'tool_group'"
},
"mcp_endpoint": {
- "$ref": "#/components/schemas/URL"
+ "$ref": "#/components/schemas/URL",
+ "description": "(Optional) Model Context Protocol endpoint for remote tools"
},
"args": {
"type": "object",
@@ -11094,7 +11449,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Additional arguments for the tool group"
}
},
"additionalProperties": false,
@@ -11103,24 +11459,29 @@
"provider_id",
"type"
],
- "title": "ToolGroup"
+ "title": "ToolGroup",
+ "description": "A group of related tools managed together."
},
"Trace": {
"type": "object",
"properties": {
"trace_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the trace"
},
"root_span_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the root span that started this trace"
},
"start_time": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "Timestamp when the trace began"
},
"end_time": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "(Optional) Timestamp when the trace finished, if completed"
}
},
"additionalProperties": false,
@@ -11129,23 +11490,26 @@
"root_span_id",
"start_time"
],
- "title": "Trace"
+ "title": "Trace",
+ "description": "A trace representing the complete execution path of a request across multiple operations."
},
"Checkpoint": {
- "description": "Checkpoint created during training runs",
+ "description": "Checkpoint created during training runs.",
"title": "Checkpoint"
},
"PostTrainingJobArtifactsResponse": {
"type": "object",
"properties": {
"job_uuid": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the training job"
},
"checkpoints": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Checkpoint"
- }
+ },
+ "description": "List of model checkpoints created during training"
}
},
"additionalProperties": false,
@@ -11160,7 +11524,8 @@
"type": "object",
"properties": {
"job_uuid": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the training job"
},
"status": {
"type": "string",
@@ -11171,19 +11536,22 @@
"scheduled",
"cancelled"
],
- "title": "JobStatus"
+ "description": "Current status of the training job"
},
"scheduled_at": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "(Optional) Timestamp when the job was scheduled"
},
"started_at": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "(Optional) Timestamp when the job execution began"
},
"completed_at": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "(Optional) Timestamp when the job finished, if completed"
},
"resources_allocated": {
"type": "object",
@@ -11208,13 +11576,15 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Information about computational resources allocated to the job"
},
"checkpoints": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Checkpoint"
- }
+ },
+ "description": "List of model checkpoints created during training"
}
},
"additionalProperties": false,
@@ -11276,15 +11646,17 @@
"tool",
"tool_group"
],
- "title": "ResourceType",
"const": "vector_db",
- "default": "vector_db"
+ "default": "vector_db",
+ "description": "Type of resource, always 'vector_db' for vector databases"
},
"embedding_model": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the embedding model to use for vector generation"
},
"embedding_dimension": {
- "type": "integer"
+ "type": "integer",
+ "description": "Dimension of the embedding vectors"
}
},
"additionalProperties": false,
@@ -11295,7 +11667,8 @@
"embedding_model",
"embedding_dimension"
],
- "title": "VectorDB"
+ "title": "VectorDB",
+ "description": "Vector database resource for storing and querying vector embeddings."
},
"HealthInfo": {
"type": "object",
@@ -11307,14 +11680,15 @@
"Error",
"Not Implemented"
],
- "title": "HealthStatus"
+ "description": "Current health status of the service"
}
},
"additionalProperties": false,
"required": [
"status"
],
- "title": "HealthInfo"
+ "title": "HealthInfo",
+ "description": "Health status information for the service."
},
"RAGDocument": {
"type": "object",
@@ -11390,13 +11764,16 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/RAGDocument"
- }
+ },
+ "description": "List of documents to index in the RAG system"
},
"vector_db_id": {
- "type": "string"
+ "type": "string",
+ "description": "ID of the vector database to store the document embeddings"
},
"chunk_size_in_tokens": {
- "type": "integer"
+ "type": "integer",
+ "description": "(Optional) Size in tokens for document chunking during indexing"
}
},
"additionalProperties": false,
@@ -11546,13 +11923,16 @@
"type": "object",
"properties": {
"api": {
- "type": "string"
+ "type": "string",
+ "description": "The API name this provider implements"
},
"provider_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the provider"
},
"provider_type": {
- "type": "string"
+ "type": "string",
+ "description": "The type of provider implementation"
},
"config": {
"type": "object",
@@ -11577,7 +11957,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "Configuration parameters for the provider"
},
"health": {
"type": "object",
@@ -11602,7 +11983,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "Current health status of the provider"
}
},
"additionalProperties": false,
@@ -11613,7 +11995,8 @@
"config",
"health"
],
- "title": "ProviderInfo"
+ "title": "ProviderInfo",
+ "description": "Information about a registered provider including its configuration and health status."
},
"InvokeToolRequest": {
"type": "object",
@@ -11660,13 +12043,16 @@
"type": "object",
"properties": {
"content": {
- "$ref": "#/components/schemas/InterleavedContent"
+ "$ref": "#/components/schemas/InterleavedContent",
+ "description": "(Optional) The output content from the tool execution"
},
"error_message": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Error message if the tool execution failed"
},
"error_code": {
- "type": "integer"
+ "type": "integer",
+ "description": "(Optional) Numeric error code if the tool execution failed"
},
"metadata": {
"type": "object",
@@ -11691,11 +12077,13 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Additional metadata about the tool execution"
}
},
"additionalProperties": false,
- "title": "ToolInvocationResult"
+ "title": "ToolInvocationResult",
+ "description": "Result of a tool invocation."
},
"PaginatedResponse": {
"type": "object",
@@ -11750,7 +12138,8 @@
"type": "object",
"properties": {
"job_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the job"
},
"status": {
"type": "string",
@@ -11761,7 +12150,7 @@
"scheduled",
"cancelled"
],
- "title": "JobStatus"
+ "description": "Current execution status of the job"
}
},
"additionalProperties": false,
@@ -11769,7 +12158,8 @@
"job_id",
"status"
],
- "title": "Job"
+ "title": "Job",
+ "description": "A job execution instance with status tracking."
},
"ListBenchmarksResponse": {
"type": "object",
@@ -11793,7 +12183,8 @@
"asc",
"desc"
],
- "title": "Order"
+ "title": "Order",
+ "description": "Sort order for paginated responses."
},
"ListOpenAIChatCompletionResponse": {
"type": "object",
@@ -11845,21 +12236,26 @@
"input_messages"
],
"title": "OpenAICompletionWithInputMessages"
- }
+ },
+ "description": "List of chat completion objects with their input messages"
},
"has_more": {
- "type": "boolean"
+ "type": "boolean",
+ "description": "Whether there are more completions available beyond this list"
},
"first_id": {
- "type": "string"
+ "type": "string",
+ "description": "ID of the first completion in this list"
},
"last_id": {
- "type": "string"
+ "type": "string",
+ "description": "ID of the last completion in this list"
},
"object": {
"type": "string",
"const": "list",
- "default": "list"
+ "default": "list",
+ "description": "Must be \"list\" to identify this as a list response"
}
},
"additionalProperties": false,
@@ -11870,7 +12266,8 @@
"last_id",
"object"
],
- "title": "ListOpenAIChatCompletionResponse"
+ "title": "ListOpenAIChatCompletionResponse",
+ "description": "Response from listing OpenAI-compatible chat completions."
},
"ListDatasetsResponse": {
"type": "object",
@@ -11879,14 +12276,16 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Dataset"
- }
+ },
+ "description": "List of datasets"
}
},
"additionalProperties": false,
"required": [
"data"
],
- "title": "ListDatasetsResponse"
+ "title": "ListDatasetsResponse",
+ "description": "Response from listing datasets."
},
"ListModelsResponse": {
"type": "object",
@@ -11911,12 +12310,14 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/OpenAIResponseInput"
- }
+ },
+ "description": "List of input items"
},
"object": {
"type": "string",
"const": "list",
- "default": "list"
+ "default": "list",
+ "description": "Object type identifier, always \"list\""
}
},
"additionalProperties": false,
@@ -11924,7 +12325,8 @@
"data",
"object"
],
- "title": "ListOpenAIResponseInputItem"
+ "title": "ListOpenAIResponseInputItem",
+ "description": "List container for OpenAI response input items."
},
"ListOpenAIResponseObject": {
"type": "object",
@@ -11933,21 +12335,26 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/OpenAIResponseObjectWithInput"
- }
+ },
+ "description": "List of response objects with their input context"
},
"has_more": {
- "type": "boolean"
+ "type": "boolean",
+ "description": "Whether there are more results available beyond this page"
},
"first_id": {
- "type": "string"
+ "type": "string",
+ "description": "Identifier of the first item in this page"
},
"last_id": {
- "type": "string"
+ "type": "string",
+ "description": "Identifier of the last item in this page"
},
"object": {
"type": "string",
"const": "list",
- "default": "list"
+ "default": "list",
+ "description": "Object type identifier, always \"list\""
}
},
"additionalProperties": false,
@@ -11958,64 +12365,80 @@
"last_id",
"object"
],
- "title": "ListOpenAIResponseObject"
+ "title": "ListOpenAIResponseObject",
+ "description": "Paginated list of OpenAI response objects with navigation metadata."
},
"OpenAIResponseObjectWithInput": {
"type": "object",
"properties": {
"created_at": {
- "type": "integer"
+ "type": "integer",
+ "description": "Unix timestamp when the response was created"
},
"error": {
- "$ref": "#/components/schemas/OpenAIResponseError"
+ "$ref": "#/components/schemas/OpenAIResponseError",
+ "description": "(Optional) Error details if the response generation failed"
},
"id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for this response"
},
"model": {
- "type": "string"
+ "type": "string",
+ "description": "Model identifier used for generation"
},
"object": {
"type": "string",
"const": "response",
- "default": "response"
+ "default": "response",
+ "description": "Object type identifier, always \"response\""
},
"output": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OpenAIResponseOutput"
- }
+ },
+ "description": "List of generated output items (messages, tool calls, etc.)"
},
"parallel_tool_calls": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "Whether tool calls can be executed in parallel"
},
"previous_response_id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) ID of the previous response in a conversation"
},
"status": {
- "type": "string"
+ "type": "string",
+ "description": "Current status of the response generation"
},
"temperature": {
- "type": "number"
+ "type": "number",
+ "description": "(Optional) Sampling temperature used for generation"
},
"text": {
- "$ref": "#/components/schemas/OpenAIResponseText"
+ "$ref": "#/components/schemas/OpenAIResponseText",
+ "description": "Text formatting configuration for the response"
},
"top_p": {
- "type": "number"
+ "type": "number",
+ "description": "(Optional) Nucleus sampling parameter used for generation"
},
"truncation": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Truncation strategy applied to the response"
},
"user": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) User identifier associated with the request"
},
"input": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OpenAIResponseInput"
- }
+ },
+ "description": "List of input items that led to this response"
}
},
"additionalProperties": false,
@@ -12030,7 +12453,8 @@
"text",
"input"
],
- "title": "OpenAIResponseObjectWithInput"
+ "title": "OpenAIResponseObjectWithInput",
+ "description": "OpenAI response object extended with input context information."
},
"ListProvidersResponse": {
"type": "object",
@@ -12039,29 +12463,34 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/ProviderInfo"
- }
+ },
+ "description": "List of provider information objects"
}
},
"additionalProperties": false,
"required": [
"data"
],
- "title": "ListProvidersResponse"
+ "title": "ListProvidersResponse",
+ "description": "Response containing a list of all available providers."
},
"RouteInfo": {
"type": "object",
"properties": {
"route": {
- "type": "string"
+ "type": "string",
+ "description": "The API endpoint path"
},
"method": {
- "type": "string"
+ "type": "string",
+ "description": "HTTP method for the route"
},
"provider_types": {
"type": "array",
"items": {
"type": "string"
- }
+ },
+ "description": "List of provider types that implement this route"
}
},
"additionalProperties": false,
@@ -12070,7 +12499,8 @@
"method",
"provider_types"
],
- "title": "RouteInfo"
+ "title": "RouteInfo",
+ "description": "Information about an API route including its path, method, and implementing providers."
},
"ListRoutesResponse": {
"type": "object",
@@ -12079,14 +12509,16 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/RouteInfo"
- }
+ },
+ "description": "List of available route information objects"
}
},
"additionalProperties": false,
"required": [
"data"
],
- "title": "ListRoutesResponse"
+ "title": "ListRoutesResponse",
+ "description": "Response containing a list of all available API routes."
},
"ListToolDefsResponse": {
"type": "object",
@@ -12095,14 +12527,16 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/ToolDef"
- }
+ },
+ "description": "List of tool definitions"
}
},
"additionalProperties": false,
"required": [
"data"
],
- "title": "ListToolDefsResponse"
+ "title": "ListToolDefsResponse",
+ "description": "Response containing a list of tool definitions."
},
"ListScoringFunctionsResponse": {
"type": "object",
@@ -12143,14 +12577,16 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/ToolGroup"
- }
+ },
+ "description": "List of tool groups"
}
},
"additionalProperties": false,
"required": [
"data"
],
- "title": "ListToolGroupsResponse"
+ "title": "ListToolGroupsResponse",
+ "description": "Response containing a list of tool groups."
},
"ListToolsResponse": {
"type": "object",
@@ -12159,14 +12595,16 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Tool"
- }
+ },
+ "description": "List of tools"
}
},
"additionalProperties": false,
"required": [
"data"
],
- "title": "ListToolsResponse"
+ "title": "ListToolsResponse",
+ "description": "Response containing a list of tools."
},
"ListVectorDBsResponse": {
"type": "object",
@@ -12175,14 +12613,16 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/VectorDB"
- }
+ },
+ "description": "List of vector databases"
}
},
"additionalProperties": false,
"required": [
"data"
],
- "title": "ListVectorDBsResponse"
+ "title": "ListVectorDBsResponse",
+ "description": "Response from listing vector databases."
},
"Event": {
"oneOf": [
@@ -12212,7 +12652,8 @@
"structured_log",
"metric"
],
- "title": "EventType"
+ "title": "EventType",
+ "description": "The type of telemetry event being logged."
},
"LogSeverity": {
"type": "string",
@@ -12224,20 +12665,24 @@
"error",
"critical"
],
- "title": "LogSeverity"
+ "title": "LogSeverity",
+ "description": "The severity level of a log message."
},
"MetricEvent": {
"type": "object",
"properties": {
"trace_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the trace this event belongs to"
},
"span_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the span this event belongs to"
},
"timestamp": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "Timestamp when the event occurred"
},
"attributes": {
"type": "object",
@@ -12259,15 +12704,18 @@
"type": "null"
}
]
- }
+ },
+ "description": "(Optional) Key-value pairs containing additional metadata about the event"
},
"type": {
"$ref": "#/components/schemas/EventType",
"const": "metric",
- "default": "metric"
+ "default": "metric",
+ "description": "Event type identifier set to METRIC"
},
"metric": {
- "type": "string"
+ "type": "string",
+ "description": "The name of the metric being measured"
},
"value": {
"oneOf": [
@@ -12277,10 +12725,12 @@
{
"type": "number"
}
- ]
+ ],
+ "description": "The numeric value of the metric measurement"
},
"unit": {
- "type": "string"
+ "type": "string",
+ "description": "The unit of measurement for the metric value"
}
},
"additionalProperties": false,
@@ -12293,7 +12743,8 @@
"value",
"unit"
],
- "title": "MetricEvent"
+ "title": "MetricEvent",
+ "description": "A metric event containing a measured value."
},
"SpanEndPayload": {
"type": "object",
@@ -12301,10 +12752,12 @@
"type": {
"$ref": "#/components/schemas/StructuredLogType",
"const": "span_end",
- "default": "span_end"
+ "default": "span_end",
+ "description": "Payload type identifier set to SPAN_END"
},
"status": {
- "$ref": "#/components/schemas/SpanStatus"
+ "$ref": "#/components/schemas/SpanStatus",
+ "description": "The final status of the span indicating success or failure"
}
},
"additionalProperties": false,
@@ -12312,7 +12765,8 @@
"type",
"status"
],
- "title": "SpanEndPayload"
+ "title": "SpanEndPayload",
+ "description": "Payload for a span end event."
},
"SpanStartPayload": {
"type": "object",
@@ -12320,13 +12774,16 @@
"type": {
"$ref": "#/components/schemas/StructuredLogType",
"const": "span_start",
- "default": "span_start"
+ "default": "span_start",
+ "description": "Payload type identifier set to SPAN_START"
},
"name": {
- "type": "string"
+ "type": "string",
+ "description": "Human-readable name describing the operation this span represents"
},
"parent_span_id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Unique identifier for the parent span, if this is a child span"
}
},
"additionalProperties": false,
@@ -12334,20 +12791,24 @@
"type",
"name"
],
- "title": "SpanStartPayload"
+ "title": "SpanStartPayload",
+ "description": "Payload for a span start event."
},
"StructuredLogEvent": {
"type": "object",
"properties": {
"trace_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the trace this event belongs to"
},
"span_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the span this event belongs to"
},
"timestamp": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "Timestamp when the event occurred"
},
"attributes": {
"type": "object",
@@ -12369,15 +12830,18 @@
"type": "null"
}
]
- }
+ },
+ "description": "(Optional) Key-value pairs containing additional metadata about the event"
},
"type": {
"$ref": "#/components/schemas/EventType",
"const": "structured_log",
- "default": "structured_log"
+ "default": "structured_log",
+ "description": "Event type identifier set to STRUCTURED_LOG"
},
"payload": {
- "$ref": "#/components/schemas/StructuredLogPayload"
+ "$ref": "#/components/schemas/StructuredLogPayload",
+ "description": "The structured payload data for the log event"
}
},
"additionalProperties": false,
@@ -12388,7 +12852,8 @@
"type",
"payload"
],
- "title": "StructuredLogEvent"
+ "title": "StructuredLogEvent",
+ "description": "A structured log event containing typed payload data."
},
"StructuredLogPayload": {
"oneOf": [
@@ -12413,20 +12878,24 @@
"span_start",
"span_end"
],
- "title": "StructuredLogType"
+ "title": "StructuredLogType",
+ "description": "The type of structured log event payload."
},
"UnstructuredLogEvent": {
"type": "object",
"properties": {
"trace_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the trace this event belongs to"
},
"span_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the span this event belongs to"
},
"timestamp": {
"type": "string",
- "format": "date-time"
+ "format": "date-time",
+ "description": "Timestamp when the event occurred"
},
"attributes": {
"type": "object",
@@ -12448,18 +12917,22 @@
"type": "null"
}
]
- }
+ },
+ "description": "(Optional) Key-value pairs containing additional metadata about the event"
},
"type": {
"$ref": "#/components/schemas/EventType",
"const": "unstructured_log",
- "default": "unstructured_log"
+ "default": "unstructured_log",
+ "description": "Event type identifier set to UNSTRUCTURED_LOG"
},
"message": {
- "type": "string"
+ "type": "string",
+ "description": "The log message text"
},
"severity": {
- "$ref": "#/components/schemas/LogSeverity"
+ "$ref": "#/components/schemas/LogSeverity",
+ "description": "The severity level of the log message"
}
},
"additionalProperties": false,
@@ -12471,7 +12944,8 @@
"message",
"severity"
],
- "title": "UnstructuredLogEvent"
+ "title": "UnstructuredLogEvent",
+ "description": "An unstructured log event containing a simple text message."
},
"LogEventRequest": {
"type": "object",
@@ -12515,14 +12989,16 @@
"type": {
"type": "string",
"const": "auto",
- "default": "auto"
+ "default": "auto",
+ "description": "Strategy type, always \"auto\" for automatic chunking"
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "VectorStoreChunkingStrategyAuto"
+ "title": "VectorStoreChunkingStrategyAuto",
+ "description": "Automatic chunking strategy for vector store files."
},
"VectorStoreChunkingStrategyStatic": {
"type": "object",
@@ -12530,10 +13006,12 @@
"type": {
"type": "string",
"const": "static",
- "default": "static"
+ "default": "static",
+ "description": "Strategy type, always \"static\" for static chunking"
},
"static": {
- "$ref": "#/components/schemas/VectorStoreChunkingStrategyStaticConfig"
+ "$ref": "#/components/schemas/VectorStoreChunkingStrategyStaticConfig",
+ "description": "Configuration parameters for the static chunking strategy"
}
},
"additionalProperties": false,
@@ -12541,18 +13019,21 @@
"type",
"static"
],
- "title": "VectorStoreChunkingStrategyStatic"
+ "title": "VectorStoreChunkingStrategyStatic",
+ "description": "Static chunking strategy with configurable parameters."
},
"VectorStoreChunkingStrategyStaticConfig": {
"type": "object",
"properties": {
"chunk_overlap_tokens": {
"type": "integer",
- "default": 400
+ "default": 400,
+ "description": "Number of tokens to overlap between adjacent chunks"
},
"max_chunk_size_tokens": {
"type": "integer",
- "default": 800
+ "default": 800,
+ "description": "Maximum number of tokens per chunk, must be between 100 and 4096"
}
},
"additionalProperties": false,
@@ -12560,7 +13041,8 @@
"chunk_overlap_tokens",
"max_chunk_size_tokens"
],
- "title": "VectorStoreChunkingStrategyStaticConfig"
+ "title": "VectorStoreChunkingStrategyStaticConfig",
+ "description": "Configuration for static chunking strategy."
},
"OpenaiAttachFileToVectorStoreRequest": {
"type": "object",
@@ -12619,10 +13101,12 @@
"type": "string",
"const": "rate_limit_exceeded"
}
- ]
+ ],
+ "description": "Error code indicating the type of failure"
},
"message": {
- "type": "string"
+ "type": "string",
+ "description": "Human-readable error message describing the failure"
}
},
"additionalProperties": false,
@@ -12630,17 +13114,20 @@
"code",
"message"
],
- "title": "VectorStoreFileLastError"
+ "title": "VectorStoreFileLastError",
+ "description": "Error information for failed vector store file processing."
},
"VectorStoreFileObject": {
"type": "object",
"properties": {
"id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the file"
},
"object": {
"type": "string",
- "default": "vector_store.file"
+ "default": "vector_store.file",
+ "description": "Object type identifier, always \"vector_store.file\""
},
"attributes": {
"type": "object",
@@ -12665,26 +13152,33 @@
"type": "object"
}
]
- }
+ },
+ "description": "Key-value attributes associated with the file"
},
"chunking_strategy": {
- "$ref": "#/components/schemas/VectorStoreChunkingStrategy"
+ "$ref": "#/components/schemas/VectorStoreChunkingStrategy",
+ "description": "Strategy used for splitting the file into chunks"
},
"created_at": {
- "type": "integer"
+ "type": "integer",
+ "description": "Timestamp when the file was added to the vector store"
},
"last_error": {
- "$ref": "#/components/schemas/VectorStoreFileLastError"
+ "$ref": "#/components/schemas/VectorStoreFileLastError",
+ "description": "(Optional) Error information if file processing failed"
},
"status": {
- "$ref": "#/components/schemas/VectorStoreFileStatus"
+ "$ref": "#/components/schemas/VectorStoreFileStatus",
+ "description": "Current processing status of the file"
},
"usage_bytes": {
"type": "integer",
- "default": 0
+ "default": 0,
+ "description": "Storage space used by this file in bytes"
},
"vector_store_id": {
- "type": "string"
+ "type": "string",
+ "description": "ID of the vector store containing this file"
}
},
"additionalProperties": false,
@@ -12725,13 +13219,16 @@
"type": "object",
"properties": {
"name": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the schema"
},
"description": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Description of the schema"
},
"strict": {
- "type": "boolean"
+ "type": "boolean",
+ "description": "(Optional) Whether to enforce strict adherence to the schema"
},
"schema": {
"type": "object",
@@ -12756,14 +13253,16 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) The JSON schema definition"
}
},
"additionalProperties": false,
"required": [
"name"
],
- "title": "OpenAIJSONSchema"
+ "title": "OpenAIJSONSchema",
+ "description": "JSON schema specification for OpenAI-compatible structured response format."
},
"OpenAIResponseFormatJSONObject": {
"type": "object",
@@ -12771,14 +13270,16 @@
"type": {
"type": "string",
"const": "json_object",
- "default": "json_object"
+ "default": "json_object",
+ "description": "Must be \"json_object\" to indicate generic JSON object response format"
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "OpenAIResponseFormatJSONObject"
+ "title": "OpenAIResponseFormatJSONObject",
+ "description": "JSON object response format for OpenAI-compatible chat completion requests."
},
"OpenAIResponseFormatJSONSchema": {
"type": "object",
@@ -12786,10 +13287,12 @@
"type": {
"type": "string",
"const": "json_schema",
- "default": "json_schema"
+ "default": "json_schema",
+ "description": "Must be \"json_schema\" to indicate structured JSON response format"
},
"json_schema": {
- "$ref": "#/components/schemas/OpenAIJSONSchema"
+ "$ref": "#/components/schemas/OpenAIJSONSchema",
+ "description": "The JSON schema specification for the response"
}
},
"additionalProperties": false,
@@ -12797,7 +13300,8 @@
"type",
"json_schema"
],
- "title": "OpenAIResponseFormatJSONSchema"
+ "title": "OpenAIResponseFormatJSONSchema",
+ "description": "JSON schema response format for OpenAI-compatible chat completion requests."
},
"OpenAIResponseFormatParam": {
"oneOf": [
@@ -12826,14 +13330,16 @@
"type": {
"type": "string",
"const": "text",
- "default": "text"
+ "default": "text",
+ "description": "Must be \"text\" to indicate plain text response format"
}
},
"additionalProperties": false,
"required": [
"type"
],
- "title": "OpenAIResponseFormatText"
+ "title": "OpenAIResponseFormatText",
+ "description": "Text response format for OpenAI-compatible chat completion requests."
},
"OpenaiChatCompletionRequest": {
"type": "object",
@@ -13551,19 +14057,24 @@
"type": "object",
"properties": {
"completed": {
- "type": "integer"
+ "type": "integer",
+ "description": "Number of files that have been successfully processed"
},
"cancelled": {
- "type": "integer"
+ "type": "integer",
+ "description": "Number of files that had their processing cancelled"
},
"failed": {
- "type": "integer"
+ "type": "integer",
+ "description": "Number of files that failed to process"
},
"in_progress": {
- "type": "integer"
+ "type": "integer",
+ "description": "Number of files currently being processed"
},
"total": {
- "type": "integer"
+ "type": "integer",
+ "description": "Total number of files in the vector store"
}
},
"additionalProperties": false,
@@ -13574,34 +14085,42 @@
"in_progress",
"total"
],
- "title": "VectorStoreFileCounts"
+ "title": "VectorStoreFileCounts",
+ "description": "File processing status counts for a vector store."
},
"VectorStoreObject": {
"type": "object",
"properties": {
"id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the vector store"
},
"object": {
"type": "string",
- "default": "vector_store"
+ "default": "vector_store",
+ "description": "Object type identifier, always \"vector_store\""
},
"created_at": {
- "type": "integer"
+ "type": "integer",
+ "description": "Timestamp when the vector store was created"
},
"name": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Name of the vector store"
},
"usage_bytes": {
"type": "integer",
- "default": 0
+ "default": 0,
+ "description": "Storage space used by the vector store in bytes"
},
"file_counts": {
- "$ref": "#/components/schemas/VectorStoreFileCounts"
+ "$ref": "#/components/schemas/VectorStoreFileCounts",
+ "description": "File processing status counts for the vector store"
},
"status": {
"type": "string",
- "default": "completed"
+ "default": "completed",
+ "description": "Current status of the vector store"
},
"expires_after": {
"type": "object",
@@ -13626,13 +14145,16 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Expiration policy for the vector store"
},
"expires_at": {
- "type": "integer"
+ "type": "integer",
+ "description": "(Optional) Timestamp when the vector store will expire"
},
"last_active_at": {
- "type": "integer"
+ "type": "integer",
+ "description": "(Optional) Timestamp of last activity on the vector store"
},
"metadata": {
"type": "object",
@@ -13657,7 +14179,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "Set of key-value pairs that can be attached to the vector store"
}
},
"additionalProperties": false,
@@ -13704,15 +14227,18 @@
"type": "object",
"properties": {
"id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the deleted vector store"
},
"object": {
"type": "string",
- "default": "vector_store.deleted"
+ "default": "vector_store.deleted",
+ "description": "Object type identifier for the deletion response"
},
"deleted": {
"type": "boolean",
- "default": true
+ "default": true,
+ "description": "Whether the deletion operation was successful"
}
},
"additionalProperties": false,
@@ -13728,15 +14254,18 @@
"type": "object",
"properties": {
"id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the deleted file"
},
"object": {
"type": "string",
- "default": "vector_store.file.deleted"
+ "default": "vector_store.file.deleted",
+ "description": "Object type identifier for the deletion response"
},
"deleted": {
"type": "boolean",
- "default": true
+ "default": true,
+ "description": "Whether the deletion operation was successful"
}
},
"additionalProperties": false,
@@ -13900,13 +14429,16 @@
"description": "List of file objects"
},
"has_more": {
- "type": "boolean"
+ "type": "boolean",
+ "description": "Whether there are more files available beyond this page"
},
"first_id": {
- "type": "string"
+ "type": "string",
+ "description": "ID of the first file in the list for pagination"
},
"last_id": {
- "type": "string"
+ "type": "string",
+ "description": "ID of the last file in the list for pagination"
},
"object": {
"type": "string",
@@ -13981,23 +14513,28 @@
"properties": {
"object": {
"type": "string",
- "default": "list"
+ "default": "list",
+ "description": "Object type identifier, always \"list\""
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/VectorStoreFileObject"
- }
+ },
+ "description": "List of vector store file objects"
},
"first_id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) ID of the first file in the list for pagination"
},
"last_id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) ID of the last file in the list for pagination"
},
"has_more": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "Whether there are more files available beyond this page"
}
},
"additionalProperties": false,
@@ -14007,7 +14544,7 @@
"has_more"
],
"title": "VectorStoreListFilesResponse",
- "description": "Response from listing vector stores."
+ "description": "Response from listing files in a vector store."
},
"OpenAIModel": {
"type": "object",
@@ -14058,23 +14595,28 @@
"properties": {
"object": {
"type": "string",
- "default": "list"
+ "default": "list",
+ "description": "Object type identifier, always \"list\""
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/VectorStoreObject"
- }
+ },
+ "description": "List of vector store objects"
},
"first_id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) ID of the first vector store in the list for pagination"
},
"last_id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) ID of the last vector store in the list for pagination"
},
"has_more": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "Whether there are more vector stores available beyond this page"
}
},
"additionalProperties": false,
@@ -14095,10 +14637,12 @@
"properties": {
"type": {
"type": "string",
- "const": "text"
+ "const": "text",
+ "description": "Content type, currently only \"text\" is supported"
},
"text": {
- "type": "string"
+ "type": "string",
+ "description": "The actual text content"
}
},
"additionalProperties": false,
@@ -14106,16 +14650,19 @@
"type",
"text"
],
- "title": "VectorStoreContent"
+ "title": "VectorStoreContent",
+ "description": "Content item from a vector store file or search result."
},
"VectorStoreFileContentsResponse": {
"type": "object",
"properties": {
"file_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the file"
},
"filename": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the file"
},
"attributes": {
"type": "object",
@@ -14140,13 +14687,15 @@
"type": "object"
}
]
- }
+ },
+ "description": "Key-value attributes associated with the file"
},
"content": {
"type": "array",
"items": {
"$ref": "#/components/schemas/VectorStoreContent"
- }
+ },
+ "description": "List of content items from the file"
}
},
"additionalProperties": false,
@@ -14210,11 +14759,13 @@
"type": "object",
"properties": {
"ranker": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Name of the ranking algorithm to use"
},
"score_threshold": {
"type": "number",
- "default": 0.0
+ "default": 0.0,
+ "description": "(Optional) Minimum relevance score threshold for results"
}
},
"additionalProperties": false,
@@ -14239,13 +14790,16 @@
"type": "object",
"properties": {
"file_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier of the file containing the result"
},
"filename": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the file containing the result"
},
"score": {
- "type": "number"
+ "type": "number",
+ "description": "Relevance score for this search result"
},
"attributes": {
"type": "object",
@@ -14261,13 +14815,15 @@
"type": "boolean"
}
]
- }
+ },
+ "description": "(Optional) Key-value attributes associated with the file"
},
"content": {
"type": "array",
"items": {
"$ref": "#/components/schemas/VectorStoreContent"
- }
+ },
+ "description": "List of content items matching the search query"
}
},
"additionalProperties": false,
@@ -14285,23 +14841,28 @@
"properties": {
"object": {
"type": "string",
- "default": "vector_store.search_results.page"
+ "default": "vector_store.search_results.page",
+ "description": "Object type identifier for the search results page"
},
"search_query": {
- "type": "string"
+ "type": "string",
+ "description": "The original search query that was executed"
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/VectorStoreSearchResponse"
- }
+ },
+ "description": "List of search result objects"
},
"has_more": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "Whether there are more results available beyond this page"
},
"next_page": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Token for retrieving the next page of results"
}
},
"additionalProperties": false,
@@ -14312,7 +14873,7 @@
"has_more"
],
"title": "VectorStoreSearchResponsePage",
- "description": "Response from searching a vector store."
+ "description": "Paginated response from searching a vector store."
},
"OpenaiUpdateVectorStoreRequest": {
"type": "object",
@@ -14417,16 +14978,20 @@
"type": "object",
"properties": {
"reward_scale": {
- "type": "number"
+ "type": "number",
+ "description": "Scaling factor for the reward signal"
},
"reward_clip": {
- "type": "number"
+ "type": "number",
+ "description": "Maximum absolute value for reward clipping"
},
"epsilon": {
- "type": "number"
+ "type": "number",
+ "description": "Small value added for numerical stability"
},
"gamma": {
- "type": "number"
+ "type": "number",
+ "description": "Discount factor for future rewards"
}
},
"additionalProperties": false,
@@ -14436,33 +15001,41 @@
"epsilon",
"gamma"
],
- "title": "DPOAlignmentConfig"
+ "title": "DPOAlignmentConfig",
+ "description": "Configuration for Direct Preference Optimization (DPO) alignment."
},
"DataConfig": {
"type": "object",
"properties": {
"dataset_id": {
- "type": "string"
+ "type": "string",
+ "description": "Unique identifier for the training dataset"
},
"batch_size": {
- "type": "integer"
+ "type": "integer",
+ "description": "Number of samples per training batch"
},
"shuffle": {
- "type": "boolean"
+ "type": "boolean",
+ "description": "Whether to shuffle the dataset during training"
},
"data_format": {
- "$ref": "#/components/schemas/DatasetFormat"
+ "$ref": "#/components/schemas/DatasetFormat",
+ "description": "Format of the dataset (instruct or dialog)"
},
"validation_dataset_id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) Unique identifier for the validation dataset"
},
"packed": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "(Optional) Whether to pack multiple samples into a single sequence for efficiency"
},
"train_on_input": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "(Optional) Whether to compute loss on input tokens as well as output tokens"
}
},
"additionalProperties": false,
@@ -14472,7 +15045,8 @@
"shuffle",
"data_format"
],
- "title": "DataConfig"
+ "title": "DataConfig",
+ "description": "Configuration for training data and data loading."
},
"DatasetFormat": {
"type": "string",
@@ -14480,45 +15054,55 @@
"instruct",
"dialog"
],
- "title": "DatasetFormat"
+ "title": "DatasetFormat",
+ "description": "Format of the training dataset."
},
"EfficiencyConfig": {
"type": "object",
"properties": {
"enable_activation_checkpointing": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "(Optional) Whether to use activation checkpointing to reduce memory usage"
},
"enable_activation_offloading": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "(Optional) Whether to offload activations to CPU to save GPU memory"
},
"memory_efficient_fsdp_wrap": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "(Optional) Whether to use memory-efficient FSDP wrapping"
},
"fsdp_cpu_offload": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "(Optional) Whether to offload FSDP parameters to CPU"
}
},
"additionalProperties": false,
- "title": "EfficiencyConfig"
+ "title": "EfficiencyConfig",
+ "description": "Configuration for memory and compute efficiency optimizations."
},
"OptimizerConfig": {
"type": "object",
"properties": {
"optimizer_type": {
- "$ref": "#/components/schemas/OptimizerType"
+ "$ref": "#/components/schemas/OptimizerType",
+ "description": "Type of optimizer to use (adam, adamw, or sgd)"
},
"lr": {
- "type": "number"
+ "type": "number",
+ "description": "Learning rate for the optimizer"
},
"weight_decay": {
- "type": "number"
+ "type": "number",
+ "description": "Weight decay coefficient for regularization"
},
"num_warmup_steps": {
- "type": "integer"
+ "type": "integer",
+ "description": "Number of steps for learning rate warmup"
}
},
"additionalProperties": false,
@@ -14528,7 +15112,8 @@
"weight_decay",
"num_warmup_steps"
],
- "title": "OptimizerConfig"
+ "title": "OptimizerConfig",
+ "description": "Configuration parameters for the optimization algorithm."
},
"OptimizerType": {
"type": "string",
@@ -14537,38 +15122,47 @@
"adamw",
"sgd"
],
- "title": "OptimizerType"
+ "title": "OptimizerType",
+ "description": "Available optimizer algorithms for training."
},
"TrainingConfig": {
"type": "object",
"properties": {
"n_epochs": {
- "type": "integer"
+ "type": "integer",
+ "description": "Number of training epochs to run"
},
"max_steps_per_epoch": {
"type": "integer",
- "default": 1
+ "default": 1,
+ "description": "Maximum number of steps to run per epoch"
},
"gradient_accumulation_steps": {
"type": "integer",
- "default": 1
+ "default": 1,
+ "description": "Number of steps to accumulate gradients before updating"
},
"max_validation_steps": {
"type": "integer",
- "default": 1
+ "default": 1,
+ "description": "(Optional) Maximum number of validation steps per epoch"
},
"data_config": {
- "$ref": "#/components/schemas/DataConfig"
+ "$ref": "#/components/schemas/DataConfig",
+ "description": "(Optional) Configuration for data loading and formatting"
},
"optimizer_config": {
- "$ref": "#/components/schemas/OptimizerConfig"
+ "$ref": "#/components/schemas/OptimizerConfig",
+ "description": "(Optional) Configuration for the optimization algorithm"
},
"efficiency_config": {
- "$ref": "#/components/schemas/EfficiencyConfig"
+ "$ref": "#/components/schemas/EfficiencyConfig",
+ "description": "(Optional) Configuration for memory and compute optimizations"
},
"dtype": {
"type": "string",
- "default": "bf16"
+ "default": "bf16",
+ "description": "(Optional) Data type for model parameters (bf16, fp16, fp32)"
}
},
"additionalProperties": false,
@@ -14577,7 +15171,8 @@
"max_steps_per_epoch",
"gradient_accumulation_steps"
],
- "title": "TrainingConfig"
+ "title": "TrainingConfig",
+ "description": "Comprehensive configuration for the training process."
},
"PreferenceOptimizeRequest": {
"type": "object",
@@ -14681,11 +15276,13 @@
"type": {
"type": "string",
"const": "default",
- "default": "default"
+ "default": "default",
+ "description": "Type of query generator, always 'default'"
},
"separator": {
"type": "string",
- "default": " "
+ "default": " ",
+ "description": "String separator used to join query terms"
}
},
"additionalProperties": false,
@@ -14693,7 +15290,8 @@
"type",
"separator"
],
- "title": "DefaultRAGQueryGeneratorConfig"
+ "title": "DefaultRAGQueryGeneratorConfig",
+ "description": "Configuration for the default RAG query generator."
},
"LLMRAGQueryGeneratorConfig": {
"type": "object",
@@ -14701,13 +15299,16 @@
"type": {
"type": "string",
"const": "llm",
- "default": "llm"
+ "default": "llm",
+ "description": "Type of query generator, always 'llm'"
},
"model": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the language model to use for query generation"
},
"template": {
- "type": "string"
+ "type": "string",
+ "description": "Template string for formatting the query generation prompt"
}
},
"additionalProperties": false,
@@ -14716,7 +15317,8 @@
"model",
"template"
],
- "title": "LLMRAGQueryGeneratorConfig"
+ "title": "LLMRAGQueryGeneratorConfig",
+ "description": "Configuration for the LLM-based RAG query generator."
},
"RAGQueryConfig": {
"type": "object",
@@ -14788,7 +15390,7 @@
"impact_factor": {
"type": "number",
"default": 60.0,
- "description": "The impact factor for RRF scoring. Higher values give more weight to higher-ranked results. Must be greater than 0. Default of 60 is from the original RRF paper (Cormack et al., 2009)."
+ "description": "The impact factor for RRF scoring. Higher values give more weight to higher-ranked results. Must be greater than 0"
}
},
"additionalProperties": false,
@@ -14843,16 +15445,19 @@
"type": "object",
"properties": {
"content": {
- "$ref": "#/components/schemas/InterleavedContent"
+ "$ref": "#/components/schemas/InterleavedContent",
+ "description": "The query content to search for in the indexed documents"
},
"vector_db_ids": {
"type": "array",
"items": {
"type": "string"
- }
+ },
+ "description": "List of vector database IDs to search within"
},
"query_config": {
- "$ref": "#/components/schemas/RAGQueryConfig"
+ "$ref": "#/components/schemas/RAGQueryConfig",
+ "description": "(Optional) Configuration parameters for the query operation"
}
},
"additionalProperties": false,
@@ -14866,7 +15471,8 @@
"type": "object",
"properties": {
"content": {
- "$ref": "#/components/schemas/InterleavedContent"
+ "$ref": "#/components/schemas/InterleavedContent",
+ "description": "(Optional) The retrieved content from the query"
},
"metadata": {
"type": "object",
@@ -14891,14 +15497,16 @@
"type": "object"
}
]
- }
+ },
+ "description": "Additional metadata about the query result"
}
},
"additionalProperties": false,
"required": [
"metadata"
],
- "title": "RAGQueryResult"
+ "title": "RAGQueryResult",
+ "description": "Result of a RAG query containing retrieved content and metadata."
},
"QueryChunksRequest": {
"type": "object",
@@ -14952,13 +15560,15 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Chunk"
- }
+ },
+ "description": "List of content chunks returned from the query"
},
"scores": {
"type": "array",
"items": {
"type": "number"
- }
+ },
+ "description": "Relevance scores corresponding to each returned chunk"
}
},
"additionalProperties": false,
@@ -14966,7 +15576,8 @@
"chunks",
"scores"
],
- "title": "QueryChunksResponse"
+ "title": "QueryChunksResponse",
+ "description": "Response from querying chunks in a vector database."
},
"QueryMetricsRequest": {
"type": "object",
@@ -14997,10 +15608,12 @@
"type": "object",
"properties": {
"name": {
- "type": "string"
+ "type": "string",
+ "description": "The name of the label to match"
},
"value": {
- "type": "string"
+ "type": "string",
+ "description": "The value to match against"
},
"operator": {
"type": "string",
@@ -15010,7 +15623,7 @@
"=~",
"!~"
],
- "title": "MetricLabelOperator",
+ "description": "The comparison operator to use for matching",
"default": "="
}
},
@@ -15020,7 +15633,8 @@
"value",
"operator"
],
- "title": "MetricLabelMatcher"
+ "title": "MetricLabelMatcher",
+ "description": "A matcher for filtering metrics by label values."
},
"description": "The label matchers to apply to the metric."
}
@@ -15036,10 +15650,12 @@
"type": "object",
"properties": {
"timestamp": {
- "type": "integer"
+ "type": "integer",
+ "description": "Unix timestamp when the metric value was recorded"
},
"value": {
- "type": "number"
+ "type": "number",
+ "description": "The numeric value of the metric at this timestamp"
}
},
"additionalProperties": false,
@@ -15047,16 +15663,19 @@
"timestamp",
"value"
],
- "title": "MetricDataPoint"
+ "title": "MetricDataPoint",
+ "description": "A single data point in a metric time series."
},
"MetricLabel": {
"type": "object",
"properties": {
"name": {
- "type": "string"
+ "type": "string",
+ "description": "The name of the label"
},
"value": {
- "type": "string"
+ "type": "string",
+ "description": "The value of the label"
}
},
"additionalProperties": false,
@@ -15064,25 +15683,29 @@
"name",
"value"
],
- "title": "MetricLabel"
+ "title": "MetricLabel",
+ "description": "A label associated with a metric."
},
"MetricSeries": {
"type": "object",
"properties": {
"metric": {
- "type": "string"
+ "type": "string",
+ "description": "The name of the metric"
},
"labels": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MetricLabel"
- }
+ },
+ "description": "List of labels associated with this metric series"
},
"values": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MetricDataPoint"
- }
+ },
+ "description": "List of data points in chronological order"
}
},
"additionalProperties": false,
@@ -15091,7 +15714,8 @@
"labels",
"values"
],
- "title": "MetricSeries"
+ "title": "MetricSeries",
+ "description": "A time series of metric data points."
},
"QueryMetricsResponse": {
"type": "object",
@@ -15100,23 +15724,27 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/MetricSeries"
- }
+ },
+ "description": "List of metric series matching the query criteria"
}
},
"additionalProperties": false,
"required": [
"data"
],
- "title": "QueryMetricsResponse"
+ "title": "QueryMetricsResponse",
+ "description": "Response containing metric time series data."
},
"QueryCondition": {
"type": "object",
"properties": {
"key": {
- "type": "string"
+ "type": "string",
+ "description": "The attribute key to filter on"
},
"op": {
- "$ref": "#/components/schemas/QueryConditionOp"
+ "$ref": "#/components/schemas/QueryConditionOp",
+ "description": "The comparison operator to apply"
},
"value": {
"oneOf": [
@@ -15138,7 +15766,8 @@
{
"type": "object"
}
- ]
+ ],
+ "description": "The value to compare against"
}
},
"additionalProperties": false,
@@ -15147,7 +15776,8 @@
"op",
"value"
],
- "title": "QueryCondition"
+ "title": "QueryCondition",
+ "description": "A condition for filtering query results."
},
"QueryConditionOp": {
"type": "string",
@@ -15157,7 +15787,8 @@
"gt",
"lt"
],
- "title": "QueryConditionOp"
+ "title": "QueryConditionOp",
+ "description": "Comparison operators for query conditions."
},
"QuerySpansRequest": {
"type": "object",
@@ -15195,14 +15826,16 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Span"
- }
+ },
+ "description": "List of spans matching the query criteria"
}
},
"additionalProperties": false,
"required": [
"data"
],
- "title": "QuerySpansResponse"
+ "title": "QuerySpansResponse",
+ "description": "Response containing a list of spans."
},
"QueryTracesRequest": {
"type": "object",
@@ -15240,14 +15873,16 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Trace"
- }
+ },
+ "description": "List of traces matching the query criteria"
}
},
"additionalProperties": false,
"required": [
"data"
],
- "title": "QueryTracesResponse"
+ "title": "QueryTracesResponse",
+ "description": "Response containing a list of traces."
},
"RegisterBenchmarkRequest": {
"type": "object",
@@ -15668,11 +16303,13 @@
"type": "object",
"properties": {
"violation": {
- "$ref": "#/components/schemas/SafetyViolation"
+ "$ref": "#/components/schemas/SafetyViolation",
+ "description": "(Optional) Safety violation detected by the shield, if any"
}
},
"additionalProperties": false,
- "title": "RunShieldResponse"
+ "title": "RunShieldResponse",
+ "description": "Response from running a safety shield."
},
"SaveSpansToDatasetRequest": {
"type": "object",
@@ -15818,20 +16455,23 @@
"type": "object",
"properties": {
"dataset_id": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) The identifier of the dataset that was scored"
},
"results": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/ScoringResult"
- }
+ },
+ "description": "A map of scoring function name to ScoringResult"
}
},
"additionalProperties": false,
"required": [
"results"
],
- "title": "ScoreBatchResponse"
+ "title": "ScoreBatchResponse",
+ "description": "Response from batch scoring operations on datasets."
},
"AlgorithmConfig": {
"oneOf": [
@@ -15856,33 +16496,41 @@
"type": {
"type": "string",
"const": "LoRA",
- "default": "LoRA"
+ "default": "LoRA",
+ "description": "Algorithm type identifier, always \"LoRA\""
},
"lora_attn_modules": {
"type": "array",
"items": {
"type": "string"
- }
+ },
+ "description": "List of attention module names to apply LoRA to"
},
"apply_lora_to_mlp": {
- "type": "boolean"
+ "type": "boolean",
+ "description": "Whether to apply LoRA to MLP layers"
},
"apply_lora_to_output": {
- "type": "boolean"
+ "type": "boolean",
+ "description": "Whether to apply LoRA to output projection layers"
},
"rank": {
- "type": "integer"
+ "type": "integer",
+ "description": "Rank of the LoRA adaptation (lower rank = fewer parameters)"
},
"alpha": {
- "type": "integer"
+ "type": "integer",
+ "description": "LoRA scaling parameter that controls adaptation strength"
},
"use_dora": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "(Optional) Whether to use DoRA (Weight-Decomposed Low-Rank Adaptation)"
},
"quantize_base": {
"type": "boolean",
- "default": false
+ "default": false,
+ "description": "(Optional) Whether to quantize the base model weights"
}
},
"additionalProperties": false,
@@ -15894,7 +16542,8 @@
"rank",
"alpha"
],
- "title": "LoraFinetuningConfig"
+ "title": "LoraFinetuningConfig",
+ "description": "Configuration for Low-Rank Adaptation (LoRA) fine-tuning."
},
"QATFinetuningConfig": {
"type": "object",
@@ -15902,13 +16551,16 @@
"type": {
"type": "string",
"const": "QAT",
- "default": "QAT"
+ "default": "QAT",
+ "description": "Algorithm type identifier, always \"QAT\""
},
"quantizer_name": {
- "type": "string"
+ "type": "string",
+ "description": "Name of the quantization algorithm to use"
},
"group_size": {
- "type": "integer"
+ "type": "integer",
+ "description": "Size of groups for grouped quantization"
}
},
"additionalProperties": false,
@@ -15917,7 +16569,8 @@
"quantizer_name",
"group_size"
],
- "title": "QATFinetuningConfig"
+ "title": "QATFinetuningConfig",
+ "description": "Configuration for Quantization-Aware Training (QAT) fine-tuning."
},
"SupervisedFineTuneRequest": {
"type": "object",
@@ -16011,7 +16664,8 @@
"type": "array",
"items": {
"$ref": "#/components/schemas/Message"
- }
+ },
+ "description": "List of conversation messages to use as input for synthetic data generation"
},
"filtering_function": {
"type": "string",
@@ -16023,11 +16677,11 @@
"top_k_top_p",
"sigmoid"
],
- "title": "FilteringFunction",
- "description": "The type of filtering function."
+ "description": "Type of filtering to apply to generated synthetic data samples"
},
"model": {
- "type": "string"
+ "type": "string",
+ "description": "(Optional) The identifier of the model to use. The model must be registered with Llama Stack and available via the /models endpoint"
}
},
"additionalProperties": false,
@@ -16066,7 +16720,8 @@
}
]
}
- }
+ },
+ "description": "List of generated synthetic data samples that passed the filtering criteria"
},
"statistics": {
"type": "object",
@@ -16091,7 +16746,8 @@
"type": "object"
}
]
- }
+ },
+ "description": "(Optional) Statistical information about the generation process and filtering results"
}
},
"additionalProperties": false,
@@ -16105,14 +16761,16 @@
"type": "object",
"properties": {
"version": {
- "type": "string"
+ "type": "string",
+ "description": "Version number of the service"
}
},
"additionalProperties": false,
"required": [
"version"
],
- "title": "VersionInfo"
+ "title": "VersionInfo",
+ "description": "Version information for the service."
}
},
"responses": {
diff --git a/docs/_static/llama-stack-spec.yaml b/docs/_static/llama-stack-spec.yaml
index 48cefe12b..54bddd235 100644
--- a/docs/_static/llama-stack-spec.yaml
+++ b/docs/_static/llama-stack-spec.yaml
@@ -1323,7 +1323,8 @@ paths:
get:
responses:
'200':
- description: A HealthInfo.
+ description: >-
+ Health information indicating if the service is operational.
content:
application/json:
schema:
@@ -1340,7 +1341,8 @@ paths:
$ref: '#/components/responses/DefaultError'
tags:
- Inspect
- description: Get the health of the service.
+ description: >-
+ Get the current health status of the service.
parameters: []
/v1/tool-runtime/rag-tool/insert:
post:
@@ -1360,7 +1362,7 @@ paths:
tags:
- ToolRuntime
description: >-
- Index documents so they can be used by the RAG system
+ Index documents so they can be used by the RAG system.
parameters: []
requestBody:
content:
@@ -1984,7 +1986,8 @@ paths:
get:
responses:
'200':
- description: A ListRoutesResponse.
+ description: >-
+ Response containing information about all available routes.
content:
application/json:
schema:
@@ -2001,7 +2004,8 @@ paths:
$ref: '#/components/responses/DefaultError'
tags:
- Inspect
- description: List all routes.
+ description: >-
+ List all available API routes with their methods and implementing providers.
parameters: []
/v1/tool-runtime/list-tools:
get:
@@ -2324,26 +2328,41 @@ paths:
type: string
- name: limit
in: query
+ description: >-
+ (Optional) A limit on the number of objects to be returned. Limit can
+ range between 1 and 100, and the default is 20.
required: false
schema:
type: integer
- name: order
in: query
+ description: >-
+ (Optional) Sort order by the `created_at` timestamp of the objects. `asc`
+ for ascending order and `desc` for descending order.
required: false
schema:
type: string
- name: after
in: query
+ description: >-
+ (Optional) A cursor for use in pagination. `after` is an object ID that
+ defines your place in the list.
required: false
schema:
type: string
- name: before
in: query
+ description: >-
+ (Optional) A cursor for use in pagination. `before` is an object ID that
+ defines your place in the list.
required: false
schema:
type: string
- name: filter
in: query
+ description: >-
+ (Optional) Filter by file status to only return files with the specified
+ status.
required: false
schema:
$ref: '#/components/schemas/VectorStoreFileStatus'
@@ -3071,7 +3090,8 @@ paths:
post:
responses:
'200':
- description: OK
+ description: >-
+ RAGQueryResult containing the retrieved content and metadata
content:
application/json:
schema:
@@ -3089,7 +3109,7 @@ paths:
tags:
- ToolRuntime
description: >-
- Query the RAG system for context; typically invoked by the agent
+ Query the RAG system for context; typically invoked by the agent.
parameters: []
requestBody:
content:
@@ -3459,7 +3479,8 @@ paths:
post:
responses:
'200':
- description: OK
+ description: >-
+ Response containing filtered synthetic data samples and optional statistics
content:
application/json:
schema:
@@ -3476,7 +3497,8 @@ paths:
$ref: '#/components/responses/DefaultError'
tags:
- SyntheticDataGeneration (Coming Soon)
- description: ''
+ description: >-
+ Generate synthetic data based on input dialogs and apply filtering.
parameters: []
requestBody:
content:
@@ -3488,7 +3510,8 @@ paths:
get:
responses:
'200':
- description: A VersionInfo.
+ description: >-
+ Version information containing the service version number.
content:
application/json:
schema:
@@ -3636,10 +3659,15 @@ components:
type: string
const: greedy
default: greedy
+ description: >-
+ Must be "greedy" to identify this sampling strategy
additionalProperties: false
required:
- type
title: GreedySamplingStrategy
+ description: >-
+ Greedy sampling strategy that selects the highest probability token at each
+ step.
ImageContentItem:
type: object
properties:
@@ -3997,13 +4025,19 @@ components:
type: string
const: top_k
default: top_k
+ description: >-
+ Must be "top_k" to identify this sampling strategy
top_k:
type: integer
+ description: >-
+ Number of top tokens to consider for sampling. Must be at least 1
additionalProperties: false
required:
- type
- top_k
title: TopKSamplingStrategy
+ description: >-
+ Top-k sampling strategy that restricts sampling to the k most likely tokens.
TopPSamplingStrategy:
type: object
properties:
@@ -4011,24 +4045,35 @@ components:
type: string
const: top_p
default: top_p
+ description: >-
+ Must be "top_p" to identify this sampling strategy
temperature:
type: number
+ description: >-
+ Controls randomness in sampling. Higher values increase randomness
top_p:
type: number
default: 0.95
+ description: >-
+ Cumulative probability threshold for nucleus sampling. Defaults to 0.95
additionalProperties: false
required:
- type
title: TopPSamplingStrategy
+ description: >-
+ Top-p (nucleus) sampling strategy that samples from the smallest set of tokens
+ with cumulative probability >= p.
URL:
type: object
properties:
uri:
type: string
+ description: The URL string pointing to the resource
additionalProperties: false
required:
- uri
title: URL
+ description: A URL reference to external content.
UserMessage:
type: object
properties:
@@ -4111,10 +4156,14 @@ components:
type: array
items:
$ref: '#/components/schemas/ChatCompletionResponse'
+ description: >-
+ List of chat completion responses, one for each conversation in the batch
additionalProperties: false
required:
- batch
title: BatchChatCompletionResponse
+ description: >-
+ Response from a batch chat completion request.
ChatCompletionResponse:
type: object
properties:
@@ -4122,6 +4171,8 @@ components:
type: array
items:
$ref: '#/components/schemas/MetricInResponse'
+ description: >-
+ (Optional) List of metrics associated with the API response
completion_message:
$ref: '#/components/schemas/CompletionMessage'
description: The complete response message
@@ -4141,17 +4192,23 @@ components:
properties:
metric:
type: string
+ description: The name of the metric
value:
oneOf:
- type: integer
- type: number
+ description: The numeric value of the metric
unit:
type: string
+ description: >-
+ (Optional) The unit of measurement for the metric value
additionalProperties: false
required:
- metric
- value
title: MetricInResponse
+ description: >-
+ A metric value included in API responses.
TokenLogProbs:
type: object
properties:
@@ -4211,10 +4268,14 @@ components:
type: array
items:
$ref: '#/components/schemas/CompletionResponse'
+ description: >-
+ List of completion responses, one for each input in the batch
additionalProperties: false
required:
- batch
title: BatchCompletionResponse
+ description: >-
+ Response from a batch completion request.
CompletionResponse:
type: object
properties:
@@ -4222,6 +4283,8 @@ components:
type: array
items:
$ref: '#/components/schemas/MetricInResponse'
+ description: >-
+ (Optional) List of metrics associated with the API response
content:
type: string
description: The generated completion text
@@ -4375,6 +4438,8 @@ components:
type: array
items:
$ref: '#/components/schemas/MetricInResponse'
+ description: >-
+ (Optional) List of metrics associated with the API response
event:
$ref: '#/components/schemas/ChatCompletionResponseEvent'
description: The event containing the new content
@@ -4402,14 +4467,19 @@ components:
type: string
const: image
default: image
+ description: >-
+ Discriminator type of the delta. Always "image"
image:
type: string
contentEncoding: base64
+ description: The incremental image data as bytes
additionalProperties: false
required:
- type
- image
title: ImageDelta
+ description: >-
+ An image content delta for streaming responses.
TextDelta:
type: object
properties:
@@ -4417,13 +4487,18 @@ components:
type: string
const: text
default: text
+ description: >-
+ Discriminator type of the delta. Always "text"
text:
type: string
+ description: The incremental text content
additionalProperties: false
required:
- type
- text
title: TextDelta
+ description: >-
+ A text content delta for streaming responses.
ToolCallDelta:
type: object
properties:
@@ -4431,10 +4506,14 @@ components:
type: string
const: tool_call
default: tool_call
+ description: >-
+ Discriminator type of the delta. Always "tool_call"
tool_call:
oneOf:
- type: string
- $ref: '#/components/schemas/ToolCall'
+ description: >-
+ Either an in-progress tool call string or the final parsed tool call
parse_status:
type: string
enum:
@@ -4442,13 +4521,15 @@ components:
- in_progress
- failed
- succeeded
- title: ToolCallParseStatus
+ description: Current parsing status of the tool call
additionalProperties: false
required:
- type
- tool_call
- parse_status
title: ToolCallDelta
+ description: >-
+ A tool call content delta for streaming responses.
CompletionRequest:
type: object
properties:
@@ -4498,6 +4579,8 @@ components:
type: array
items:
$ref: '#/components/schemas/MetricInResponse'
+ description: >-
+ (Optional) List of metrics associated with the API response
delta:
type: string
description: >-
@@ -4622,12 +4705,17 @@ components:
properties:
name:
type: string
+ description: Name of the tool
description:
type: string
+ description: >-
+ (Optional) Human-readable description of what the tool does
parameters:
type: array
items:
$ref: '#/components/schemas/ToolParameter'
+ description: >-
+ (Optional) List of parameters this tool accepts
metadata:
type: object
additionalProperties:
@@ -4638,22 +4726,33 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Additional metadata about the tool
additionalProperties: false
required:
- name
title: ToolDef
+ description: >-
+ Tool definition used in runtime contexts.
ToolParameter:
type: object
properties:
name:
type: string
+ description: Name of the parameter
parameter_type:
type: string
+ description: >-
+ Type of the parameter (e.g., string, integer)
description:
type: string
+ description: >-
+ Human-readable description of what the parameter does
required:
type: boolean
default: true
+ description: >-
+ Whether this parameter is required for tool invocation
default:
oneOf:
- type: 'null'
@@ -4662,6 +4761,8 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Default value for the parameter if not provided
additionalProperties: false
required:
- name
@@ -4669,6 +4770,7 @@ components:
- description
- required
title: ToolParameter
+ description: Parameter definition for a tool.
CreateAgentRequest:
type: object
properties:
@@ -4684,10 +4786,13 @@ components:
properties:
agent_id:
type: string
+ description: Unique identifier for the created agent
additionalProperties: false
required:
- agent_id
title: AgentCreateResponse
+ description: >-
+ Response returned when creating a new agent.
CreateAgentSessionRequest:
type: object
properties:
@@ -4703,10 +4808,14 @@ components:
properties:
session_id:
type: string
+ description: >-
+ Unique identifier for the created session
additionalProperties: false
required:
- session_id
title: AgentSessionCreateResponse
+ description: >-
+ Response returned when creating a new agent session.
CreateAgentTurnRequest:
type: object
properties:
@@ -4853,8 +4962,11 @@ components:
properties:
violation_level:
$ref: '#/components/schemas/ViolationLevel'
+ description: Severity level of the violation
user_message:
type: string
+ description: >-
+ (Optional) Message to convey to the user about the violation
metadata:
type: object
additionalProperties:
@@ -4865,11 +4977,16 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ Additional metadata including specific violation codes for debugging and
+ telemetry
additionalProperties: false
required:
- violation_level
- metadata
title: SafetyViolation
+ description: >-
+ Details of a safety violation detected by content moderation.
ShieldCallStep:
type: object
properties:
@@ -4960,6 +5077,8 @@ components:
properties:
call_id:
type: string
+ description: >-
+ Unique identifier for the tool call this response is for
tool_name:
oneOf:
- type: string
@@ -4970,8 +5089,10 @@ components:
- code_interpreter
title: BuiltinTool
- type: string
+ description: Name of the tool that was invoked
content:
$ref: '#/components/schemas/InterleavedContent'
+ description: The response content from the tool
metadata:
type: object
additionalProperties:
@@ -4982,25 +5103,34 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Additional metadata about the tool response
additionalProperties: false
required:
- call_id
- tool_name
- content
title: ToolResponse
+ description: Response from a tool invocation.
Turn:
type: object
properties:
turn_id:
type: string
+ description: >-
+ Unique identifier for the turn within a session
session_id:
type: string
+ description: >-
+ Unique identifier for the conversation session
input_messages:
type: array
items:
oneOf:
- $ref: '#/components/schemas/UserMessage'
- $ref: '#/components/schemas/ToolResponseMessage'
+ description: >-
+ List of messages that initiated this turn
steps:
type: array
items:
@@ -5016,8 +5146,12 @@ components:
tool_execution: '#/components/schemas/ToolExecutionStep'
shield_call: '#/components/schemas/ShieldCallStep'
memory_retrieval: '#/components/schemas/MemoryRetrievalStep'
+ description: >-
+ Ordered list of processing steps executed during this turn
output_message:
$ref: '#/components/schemas/CompletionMessage'
+ description: >-
+ The model's generated response containing content and metadata
output_attachments:
type: array
items:
@@ -5041,12 +5175,17 @@ components:
- mime_type
title: Attachment
description: An attachment to an agent turn.
+ description: >-
+ (Optional) Files or media attached to the agent's response
started_at:
type: string
format: date-time
+ description: Timestamp when the turn began
completed_at:
type: string
format: date-time
+ description: >-
+ (Optional) Timestamp when the turn finished, if completed
additionalProperties: false
required:
- turn_id
@@ -5065,15 +5204,20 @@ components:
- warn
- error
title: ViolationLevel
+ description: Severity level of a safety violation.
AgentTurnResponseEvent:
type: object
properties:
payload:
$ref: '#/components/schemas/AgentTurnResponseEventPayload'
+ description: >-
+ Event-specific payload containing event data
additionalProperties: false
required:
- payload
title: AgentTurnResponseEvent
+ description: >-
+ An event in an agent turn response stream.
AgentTurnResponseEventPayload:
oneOf:
- $ref: '#/components/schemas/AgentTurnResponseStepStartPayload'
@@ -5103,9 +5247,9 @@ components:
- turn_start
- turn_complete
- turn_awaiting_input
- title: AgentTurnResponseEventType
const: step_complete
default: step_complete
+ description: Type of event being reported
step_type:
type: string
enum:
@@ -5113,10 +5257,11 @@ components:
- tool_execution
- shield_call
- memory_retrieval
- title: StepType
- description: Type of the step in an agent turn.
+ description: Type of step being executed
step_id:
type: string
+ description: >-
+ Unique identifier for the step within a turn
step_details:
oneOf:
- $ref: '#/components/schemas/InferenceStep'
@@ -5130,6 +5275,7 @@ components:
tool_execution: '#/components/schemas/ToolExecutionStep'
shield_call: '#/components/schemas/ShieldCallStep'
memory_retrieval: '#/components/schemas/MemoryRetrievalStep'
+ description: Complete details of the executed step
additionalProperties: false
required:
- event_type
@@ -5137,6 +5283,8 @@ components:
- step_id
- step_details
title: AgentTurnResponseStepCompletePayload
+ description: >-
+ Payload for step completion events in agent turn responses.
AgentTurnResponseStepProgressPayload:
type: object
properties:
@@ -5149,9 +5297,9 @@ components:
- turn_start
- turn_complete
- turn_awaiting_input
- title: AgentTurnResponseEventType
const: step_progress
default: step_progress
+ description: Type of event being reported
step_type:
type: string
enum:
@@ -5159,12 +5307,15 @@ components:
- tool_execution
- shield_call
- memory_retrieval
- title: StepType
- description: Type of the step in an agent turn.
+ description: Type of step being executed
step_id:
type: string
+ description: >-
+ Unique identifier for the step within a turn
delta:
$ref: '#/components/schemas/ContentDelta'
+ description: >-
+ Incremental content changes during step execution
additionalProperties: false
required:
- event_type
@@ -5172,6 +5323,8 @@ components:
- step_id
- delta
title: AgentTurnResponseStepProgressPayload
+ description: >-
+ Payload for step progress events in agent turn responses.
AgentTurnResponseStepStartPayload:
type: object
properties:
@@ -5184,9 +5337,9 @@ components:
- turn_start
- turn_complete
- turn_awaiting_input
- title: AgentTurnResponseEventType
const: step_start
default: step_start
+ description: Type of event being reported
step_type:
type: string
enum:
@@ -5194,10 +5347,11 @@ components:
- tool_execution
- shield_call
- memory_retrieval
- title: StepType
- description: Type of the step in an agent turn.
+ description: Type of step being executed
step_id:
type: string
+ description: >-
+ Unique identifier for the step within a turn
metadata:
type: object
additionalProperties:
@@ -5208,22 +5362,28 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Additional metadata for the step
additionalProperties: false
required:
- event_type
- step_type
- step_id
title: AgentTurnResponseStepStartPayload
+ description: >-
+ Payload for step start events in agent turn responses.
AgentTurnResponseStreamChunk:
type: object
properties:
event:
$ref: '#/components/schemas/AgentTurnResponseEvent'
+ description: >-
+ Individual event in the agent turn response stream
additionalProperties: false
required:
- event
title: AgentTurnResponseStreamChunk
- description: streamed agent turn completion response.
+ description: Streamed agent turn completion response.
"AgentTurnResponseTurnAwaitingInputPayload":
type: object
properties:
@@ -5236,17 +5396,21 @@ components:
- turn_start
- turn_complete
- turn_awaiting_input
- title: AgentTurnResponseEventType
const: turn_awaiting_input
default: turn_awaiting_input
+ description: Type of event being reported
turn:
$ref: '#/components/schemas/Turn'
+ description: >-
+ Turn data when waiting for external tool responses
additionalProperties: false
required:
- event_type
- turn
title: >-
AgentTurnResponseTurnAwaitingInputPayload
+ description: >-
+ Payload for turn awaiting input events in agent turn responses.
AgentTurnResponseTurnCompletePayload:
type: object
properties:
@@ -5259,16 +5423,20 @@ components:
- turn_start
- turn_complete
- turn_awaiting_input
- title: AgentTurnResponseEventType
const: turn_complete
default: turn_complete
+ description: Type of event being reported
turn:
$ref: '#/components/schemas/Turn'
+ description: >-
+ Complete turn data including all steps and results
additionalProperties: false
required:
- event_type
- turn
title: AgentTurnResponseTurnCompletePayload
+ description: >-
+ Payload for turn completion events in agent turn responses.
AgentTurnResponseTurnStartPayload:
type: object
properties:
@@ -5281,16 +5449,20 @@ components:
- turn_start
- turn_complete
- turn_awaiting_input
- title: AgentTurnResponseEventType
const: turn_start
default: turn_start
+ description: Type of event being reported
turn_id:
type: string
+ description: >-
+ Unique identifier for the turn within a session
additionalProperties: false
required:
- event_type
- turn_id
title: AgentTurnResponseTurnStartPayload
+ description: >-
+ Payload for turn start events in agent turn responses.
OpenAIResponseAnnotationCitation:
type: object
properties:
@@ -5298,14 +5470,22 @@ components:
type: string
const: url_citation
default: url_citation
+ description: >-
+ Annotation type identifier, always "url_citation"
end_index:
type: integer
+ description: >-
+ End position of the citation span in the content
start_index:
type: integer
+ description: >-
+ Start position of the citation span in the content
title:
type: string
+ description: Title of the referenced web resource
url:
type: string
+ description: URL of the referenced web resource
additionalProperties: false
required:
- type
@@ -5314,6 +5494,8 @@ components:
- title
- url
title: OpenAIResponseAnnotationCitation
+ description: >-
+ URL citation annotation for referencing external web resources.
"OpenAIResponseAnnotationContainerFileCitation":
type: object
properties:
@@ -5348,12 +5530,18 @@ components:
type: string
const: file_citation
default: file_citation
+ description: >-
+ Annotation type identifier, always "file_citation"
file_id:
type: string
+ description: Unique identifier of the referenced file
filename:
type: string
+ description: Name of the referenced file
index:
type: integer
+ description: >-
+ Position index of the citation within the content
additionalProperties: false
required:
- type
@@ -5361,6 +5549,8 @@ components:
- filename
- index
title: OpenAIResponseAnnotationFileCitation
+ description: >-
+ File citation annotation for referencing specific files in response content.
OpenAIResponseAnnotationFilePath:
type: object
properties:
@@ -5444,31 +5634,43 @@ components:
- type: string
const: auto
default: auto
+ description: >-
+ Level of detail for image processing, can be "low", "high", or "auto"
type:
type: string
const: input_image
default: input_image
+ description: >-
+ Content type identifier, always "input_image"
image_url:
type: string
+ description: (Optional) URL of the image content
additionalProperties: false
required:
- detail
- type
title: OpenAIResponseInputMessageContentImage
+ description: >-
+ Image content for input messages in OpenAI response format.
OpenAIResponseInputMessageContentText:
type: object
properties:
text:
type: string
+ description: The text content of the input message
type:
type: string
const: input_text
default: input_text
+ description: >-
+ Content type identifier, always "input_text"
additionalProperties: false
required:
- text
- type
title: OpenAIResponseInputMessageContentText
+ description: >-
+ Text content for input messages in OpenAI response format.
OpenAIResponseInputTool:
oneOf:
- $ref: '#/components/schemas/OpenAIResponseInputToolWebSearch'
@@ -5489,10 +5691,14 @@ components:
type: string
const: file_search
default: file_search
+ description: >-
+ Tool type identifier, always "file_search"
vector_store_ids:
type: array
items:
type: string
+ description: >-
+ List of vector store identifiers to search within
filters:
type: object
additionalProperties:
@@ -5503,24 +5709,35 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Additional filters to apply to the search
max_num_results:
type: integer
default: 10
+ description: >-
+ (Optional) Maximum number of search results to return (1-50)
ranking_options:
type: object
properties:
ranker:
type: string
+ description: >-
+ (Optional) Name of the ranking algorithm to use
score_threshold:
type: number
default: 0.0
+ description: >-
+ (Optional) Minimum relevance score threshold for results
additionalProperties: false
- title: SearchRankingOptions
+ description: >-
+ (Optional) Options for ranking and scoring search results
additionalProperties: false
required:
- type
- vector_store_ids
title: OpenAIResponseInputToolFileSearch
+ description: >-
+ File search tool configuration for OpenAI response inputs.
OpenAIResponseInputToolFunction:
type: object
properties:
@@ -5528,10 +5745,14 @@ components:
type: string
const: function
default: function
+ description: Tool type identifier, always "function"
name:
type: string
+ description: Name of the function that can be called
description:
type: string
+ description: >-
+ (Optional) Description of what the function does
parameters:
type: object
additionalProperties:
@@ -5542,13 +5763,19 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) JSON schema defining the function's parameters
strict:
type: boolean
+ description: >-
+ (Optional) Whether to enforce strict parameter validation
additionalProperties: false
required:
- type
- name
title: OpenAIResponseInputToolFunction
+ description: >-
+ Function tool configuration for OpenAI response inputs.
OpenAIResponseInputToolMCP:
type: object
properties:
@@ -5556,10 +5783,13 @@ components:
type: string
const: mcp
default: mcp
+ description: Tool type identifier, always "mcp"
server_label:
type: string
+ description: Label to identify this MCP server
server_url:
type: string
+ description: URL endpoint of the MCP server
headers:
type: object
additionalProperties:
@@ -5570,6 +5800,8 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) HTTP headers to include when connecting to the server
require_approval:
oneOf:
- type: string
@@ -5582,13 +5814,21 @@ components:
type: array
items:
type: string
+ description: >-
+ (Optional) List of tool names that always require approval
never:
type: array
items:
type: string
+ description: >-
+ (Optional) List of tool names that never require approval
additionalProperties: false
title: ApprovalFilter
+ description: >-
+ Filter configuration for MCP tool approval requirements.
default: never
+ description: >-
+ Approval requirement for tool calls ("always", "never", or filter)
allowed_tools:
oneOf:
- type: array
@@ -5600,8 +5840,14 @@ components:
type: array
items:
type: string
+ description: >-
+ (Optional) List of specific tool names that are allowed
additionalProperties: false
title: AllowedToolsFilter
+ description: >-
+ Filter configuration for restricting which MCP tools can be used.
+ description: >-
+ (Optional) Restriction on which tools can be used from this server
additionalProperties: false
required:
- type
@@ -5609,6 +5855,8 @@ components:
- server_url
- require_approval
title: OpenAIResponseInputToolMCP
+ description: >-
+ Model Context Protocol (MCP) tool configuration for OpenAI response inputs.
OpenAIResponseInputToolWebSearch:
type: object
properties:
@@ -5621,13 +5869,18 @@ components:
- type: string
const: web_search_preview_2025_03_11
default: web_search
+ description: Web search tool type variant to use
search_context_size:
type: string
default: medium
+ description: >-
+ (Optional) Size of search context, must be "low", "medium", or "high"
additionalProperties: false
required:
- type
title: OpenAIResponseInputToolWebSearch
+ description: >-
+ Web search tool configuration for OpenAI response inputs.
OpenAIResponseMessage:
type: object
properties:
@@ -5693,16 +5946,22 @@ components:
properties:
id:
type: string
+ description: Unique identifier for this tool call
queries:
type: array
items:
type: string
+ description: List of search queries executed
status:
type: string
+ description: >-
+ Current status of the file search operation
type:
type: string
const: file_search_call
default: file_search_call
+ description: >-
+ Tool call type identifier, always "file_search_call"
results:
type: array
items:
@@ -5715,6 +5974,8 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Search results returned by the file search operation
additionalProperties: false
required:
- id
@@ -5723,23 +5984,35 @@ components:
- type
title: >-
OpenAIResponseOutputMessageFileSearchToolCall
+ description: >-
+ File search tool call output message for OpenAI responses.
"OpenAIResponseOutputMessageFunctionToolCall":
type: object
properties:
call_id:
type: string
+ description: Unique identifier for the function call
name:
type: string
+ description: Name of the function being called
arguments:
type: string
+ description: >-
+ JSON string containing the function arguments
type:
type: string
const: function_call
default: function_call
+ description: >-
+ Tool call type identifier, always "function_call"
id:
type: string
+ description: >-
+ (Optional) Additional identifier for the tool call
status:
type: string
+ description: >-
+ (Optional) Current status of the function call execution
additionalProperties: false
required:
- call_id
@@ -5748,17 +6021,24 @@ components:
- type
title: >-
OpenAIResponseOutputMessageFunctionToolCall
+ description: >-
+ Function tool call output message for OpenAI responses.
"OpenAIResponseOutputMessageWebSearchToolCall":
type: object
properties:
id:
type: string
+ description: Unique identifier for this tool call
status:
type: string
+ description: >-
+ Current status of the web search operation
type:
type: string
const: web_search_call
default: web_search_call
+ description: >-
+ Tool call type identifier, always "web_search_call"
additionalProperties: false
required:
- id
@@ -5766,6 +6046,8 @@ components:
- type
title: >-
OpenAIResponseOutputMessageWebSearchToolCall
+ description: >-
+ Web search tool call output message for OpenAI responses.
OpenAIResponseText:
type: object
properties:
@@ -5812,11 +6094,12 @@ components:
additionalProperties: false
required:
- type
- title: OpenAIResponseTextFormat
description: >-
- Configuration for Responses API text format.
+ (Optional) Text format configuration specifying output format requirements
additionalProperties: false
title: OpenAIResponseText
+ description: >-
+ Text response configuration for OpenAI responses.
CreateOpenaiResponseRequest:
type: object
properties:
@@ -5862,49 +6145,81 @@ components:
properties:
code:
type: string
+ description: >-
+ Error code identifying the type of failure
message:
type: string
+ description: >-
+ Human-readable error message describing the failure
additionalProperties: false
required:
- code
- message
title: OpenAIResponseError
+ description: >-
+ Error details for failed OpenAI response requests.
OpenAIResponseObject:
type: object
properties:
created_at:
type: integer
+ description: >-
+ Unix timestamp when the response was created
error:
$ref: '#/components/schemas/OpenAIResponseError'
+ description: >-
+ (Optional) Error details if the response generation failed
id:
type: string
+ description: Unique identifier for this response
model:
type: string
+ description: Model identifier used for generation
object:
type: string
const: response
default: response
+ description: >-
+ Object type identifier, always "response"
output:
type: array
items:
$ref: '#/components/schemas/OpenAIResponseOutput'
+ description: >-
+ List of generated output items (messages, tool calls, etc.)
parallel_tool_calls:
type: boolean
default: false
+ description: >-
+ Whether tool calls can be executed in parallel
previous_response_id:
type: string
+ description: >-
+ (Optional) ID of the previous response in a conversation
status:
type: string
+ description: >-
+ Current status of the response generation
temperature:
type: number
+ description: >-
+ (Optional) Sampling temperature used for generation
text:
$ref: '#/components/schemas/OpenAIResponseText'
+ description: >-
+ Text formatting configuration for the response
top_p:
type: number
+ description: >-
+ (Optional) Nucleus sampling parameter used for generation
truncation:
type: string
+ description: >-
+ (Optional) Truncation strategy applied to the response
user:
type: string
+ description: >-
+ (Optional) User identifier associated with the request
additionalProperties: false
required:
- created_at
@@ -5916,6 +6231,8 @@ components:
- status
- text
title: OpenAIResponseObject
+ description: >-
+ Complete OpenAI response object containing generation results and metadata.
OpenAIResponseOutput:
oneOf:
- $ref: '#/components/schemas/OpenAIResponseMessage'
@@ -5938,20 +6255,32 @@ components:
properties:
id:
type: string
+ description: Unique identifier for this MCP call
type:
type: string
const: mcp_call
default: mcp_call
+ description: >-
+ Tool call type identifier, always "mcp_call"
arguments:
type: string
+ description: >-
+ JSON string containing the MCP call arguments
name:
type: string
+ description: Name of the MCP method being called
server_label:
type: string
+ description: >-
+ Label identifying the MCP server handling the call
error:
type: string
+ description: >-
+ (Optional) Error message if the MCP call failed
output:
type: string
+ description: >-
+ (Optional) Output result from the successful MCP call
additionalProperties: false
required:
- id
@@ -5960,17 +6289,25 @@ components:
- name
- server_label
title: OpenAIResponseOutputMessageMCPCall
+ description: >-
+ Model Context Protocol (MCP) call output message for OpenAI responses.
OpenAIResponseOutputMessageMCPListTools:
type: object
properties:
id:
type: string
+ description: >-
+ Unique identifier for this MCP list tools operation
type:
type: string
const: mcp_list_tools
default: mcp_list_tools
+ description: >-
+ Tool call type identifier, always "mcp_list_tools"
server_label:
type: string
+ description: >-
+ Label identifying the MCP server providing the tools
tools:
type: array
items:
@@ -5986,15 +6323,24 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ JSON schema defining the tool's input parameters
name:
type: string
+ description: Name of the tool
description:
type: string
+ description: >-
+ (Optional) Description of what the tool does
additionalProperties: false
required:
- input_schema
- name
title: MCPListToolsTool
+ description: >-
+ Tool definition returned by MCP list tools operation.
+ description: >-
+ List of available tools provided by the MCP server
additionalProperties: false
required:
- id
@@ -6002,6 +6348,8 @@ components:
- server_label
- tools
title: OpenAIResponseOutputMessageMCPListTools
+ description: >-
+ MCP list tools output message containing available tools from an MCP server.
OpenAIResponseObjectStream:
oneOf:
- $ref: '#/components/schemas/OpenAIResponseObjectStreamResponseCreated'
@@ -6050,46 +6398,66 @@ components:
properties:
response:
$ref: '#/components/schemas/OpenAIResponseObject'
+ description: The completed response object
type:
type: string
const: response.completed
default: response.completed
+ description: >-
+ Event type identifier, always "response.completed"
additionalProperties: false
required:
- response
- type
title: >-
OpenAIResponseObjectStreamResponseCompleted
+ description: >-
+ Streaming event indicating a response has been completed.
"OpenAIResponseObjectStreamResponseCreated":
type: object
properties:
response:
$ref: '#/components/schemas/OpenAIResponseObject'
+ description: The newly created response object
type:
type: string
const: response.created
default: response.created
+ description: >-
+ Event type identifier, always "response.created"
additionalProperties: false
required:
- response
- type
title: >-
OpenAIResponseObjectStreamResponseCreated
+ description: >-
+ Streaming event indicating a new response has been created.
"OpenAIResponseObjectStreamResponseFunctionCallArgumentsDelta":
type: object
properties:
delta:
type: string
+ description: >-
+ Incremental function call arguments being added
item_id:
type: string
+ description: >-
+ Unique identifier of the function call being updated
output_index:
type: integer
+ description: >-
+ Index position of the item in the output list
sequence_number:
type: integer
+ description: >-
+ Sequential number for ordering streaming events
type:
type: string
const: response.function_call_arguments.delta
default: response.function_call_arguments.delta
+ description: >-
+ Event type identifier, always "response.function_call_arguments.delta"
additionalProperties: false
required:
- delta
@@ -6099,21 +6467,33 @@ components:
- type
title: >-
OpenAIResponseObjectStreamResponseFunctionCallArgumentsDelta
+ description: >-
+ Streaming event for incremental function call argument updates.
"OpenAIResponseObjectStreamResponseFunctionCallArgumentsDone":
type: object
properties:
arguments:
type: string
+ description: >-
+ Final complete arguments JSON string for the function call
item_id:
type: string
+ description: >-
+ Unique identifier of the completed function call
output_index:
type: integer
+ description: >-
+ Index position of the item in the output list
sequence_number:
type: integer
+ description: >-
+ Sequential number for ordering streaming events
type:
type: string
const: response.function_call_arguments.done
default: response.function_call_arguments.done
+ description: >-
+ Event type identifier, always "response.function_call_arguments.done"
additionalProperties: false
required:
- arguments
@@ -6123,6 +6503,8 @@ components:
- type
title: >-
OpenAIResponseObjectStreamResponseFunctionCallArgumentsDone
+ description: >-
+ Streaming event for when function call arguments are completed.
"OpenAIResponseObjectStreamResponseMcpCallArgumentsDelta":
type: object
properties:
@@ -6176,44 +6558,61 @@ components:
properties:
sequence_number:
type: integer
+ description: >-
+ Sequential number for ordering streaming events
type:
type: string
const: response.mcp_call.completed
default: response.mcp_call.completed
+ description: >-
+ Event type identifier, always "response.mcp_call.completed"
additionalProperties: false
required:
- sequence_number
- type
title: >-
OpenAIResponseObjectStreamResponseMcpCallCompleted
+ description: Streaming event for completed MCP calls.
"OpenAIResponseObjectStreamResponseMcpCallFailed":
type: object
properties:
sequence_number:
type: integer
+ description: >-
+ Sequential number for ordering streaming events
type:
type: string
const: response.mcp_call.failed
default: response.mcp_call.failed
+ description: >-
+ Event type identifier, always "response.mcp_call.failed"
additionalProperties: false
required:
- sequence_number
- type
title: >-
OpenAIResponseObjectStreamResponseMcpCallFailed
+ description: Streaming event for failed MCP calls.
"OpenAIResponseObjectStreamResponseMcpCallInProgress":
type: object
properties:
item_id:
type: string
+ description: Unique identifier of the MCP call
output_index:
type: integer
+ description: >-
+ Index position of the item in the output list
sequence_number:
type: integer
+ description: >-
+ Sequential number for ordering streaming events
type:
type: string
const: response.mcp_call.in_progress
default: response.mcp_call.in_progress
+ description: >-
+ Event type identifier, always "response.mcp_call.in_progress"
additionalProperties: false
required:
- item_id
@@ -6222,6 +6621,8 @@ components:
- type
title: >-
OpenAIResponseObjectStreamResponseMcpCallInProgress
+ description: >-
+ Streaming event for MCP calls in progress.
"OpenAIResponseObjectStreamResponseMcpListToolsCompleted":
type: object
properties:
@@ -6272,16 +6673,26 @@ components:
properties:
response_id:
type: string
+ description: >-
+ Unique identifier of the response containing this output
item:
$ref: '#/components/schemas/OpenAIResponseOutput'
+ description: >-
+ The output item that was added (message, tool call, etc.)
output_index:
type: integer
+ description: >-
+ Index position of this item in the output list
sequence_number:
type: integer
+ description: >-
+ Sequential number for ordering streaming events
type:
type: string
const: response.output_item.added
default: response.output_item.added
+ description: >-
+ Event type identifier, always "response.output_item.added"
additionalProperties: false
required:
- response_id
@@ -6291,21 +6702,33 @@ components:
- type
title: >-
OpenAIResponseObjectStreamResponseOutputItemAdded
+ description: >-
+ Streaming event for when a new output item is added to the response.
"OpenAIResponseObjectStreamResponseOutputItemDone":
type: object
properties:
response_id:
type: string
+ description: >-
+ Unique identifier of the response containing this output
item:
$ref: '#/components/schemas/OpenAIResponseOutput'
+ description: >-
+ The completed output item (message, tool call, etc.)
output_index:
type: integer
+ description: >-
+ Index position of this item in the output list
sequence_number:
type: integer
+ description: >-
+ Sequential number for ordering streaming events
type:
type: string
const: response.output_item.done
default: response.output_item.done
+ description: >-
+ Event type identifier, always "response.output_item.done"
additionalProperties: false
required:
- response_id
@@ -6315,23 +6738,35 @@ components:
- type
title: >-
OpenAIResponseObjectStreamResponseOutputItemDone
+ description: >-
+ Streaming event for when an output item is completed.
"OpenAIResponseObjectStreamResponseOutputTextDelta":
type: object
properties:
content_index:
type: integer
+ description: Index position within the text content
delta:
type: string
+ description: Incremental text content being added
item_id:
type: string
+ description: >-
+ Unique identifier of the output item being updated
output_index:
type: integer
+ description: >-
+ Index position of the item in the output list
sequence_number:
type: integer
+ description: >-
+ Sequential number for ordering streaming events
type:
type: string
const: response.output_text.delta
default: response.output_text.delta
+ description: >-
+ Event type identifier, always "response.output_text.delta"
additionalProperties: false
required:
- content_index
@@ -6342,23 +6777,36 @@ components:
- type
title: >-
OpenAIResponseObjectStreamResponseOutputTextDelta
+ description: >-
+ Streaming event for incremental text content updates.
"OpenAIResponseObjectStreamResponseOutputTextDone":
type: object
properties:
content_index:
type: integer
+ description: Index position within the text content
text:
type: string
+ description: >-
+ Final complete text content of the output item
item_id:
type: string
+ description: >-
+ Unique identifier of the completed output item
output_index:
type: integer
+ description: >-
+ Index position of the item in the output list
sequence_number:
type: integer
+ description: >-
+ Sequential number for ordering streaming events
type:
type: string
const: response.output_text.done
default: response.output_text.done
+ description: >-
+ Event type identifier, always "response.output_text.done"
additionalProperties: false
required:
- content_index
@@ -6369,19 +6817,29 @@ components:
- type
title: >-
OpenAIResponseObjectStreamResponseOutputTextDone
+ description: >-
+ Streaming event for when text output is completed.
"OpenAIResponseObjectStreamResponseWebSearchCallCompleted":
type: object
properties:
item_id:
type: string
+ description: >-
+ Unique identifier of the completed web search call
output_index:
type: integer
+ description: >-
+ Index position of the item in the output list
sequence_number:
type: integer
+ description: >-
+ Sequential number for ordering streaming events
type:
type: string
const: response.web_search_call.completed
default: response.web_search_call.completed
+ description: >-
+ Event type identifier, always "response.web_search_call.completed"
additionalProperties: false
required:
- item_id
@@ -6390,19 +6848,28 @@ components:
- type
title: >-
OpenAIResponseObjectStreamResponseWebSearchCallCompleted
+ description: >-
+ Streaming event for completed web search calls.
"OpenAIResponseObjectStreamResponseWebSearchCallInProgress":
type: object
properties:
item_id:
type: string
+ description: Unique identifier of the web search call
output_index:
type: integer
+ description: >-
+ Index position of the item in the output list
sequence_number:
type: integer
+ description: >-
+ Sequential number for ordering streaming events
type:
type: string
const: response.web_search_call.in_progress
default: response.web_search_call.in_progress
+ description: >-
+ Event type identifier, always "response.web_search_call.in_progress"
additionalProperties: false
required:
- item_id
@@ -6411,6 +6878,8 @@ components:
- type
title: >-
OpenAIResponseObjectStreamResponseWebSearchCallInProgress
+ description: >-
+ Streaming event for web search calls in progress.
"OpenAIResponseObjectStreamResponseWebSearchCallSearching":
type: object
properties:
@@ -6437,19 +6906,26 @@ components:
properties:
id:
type: string
+ description: >-
+ Unique identifier of the deleted response
object:
type: string
const: response
default: response
+ description: >-
+ Object type identifier, always "response"
deleted:
type: boolean
default: true
+ description: Deletion confirmation flag, always True
additionalProperties: false
required:
- id
- object
- deleted
title: OpenAIDeleteResponseObject
+ description: >-
+ Response object confirming deletion of an OpenAI response.
EmbeddingsRequest:
type: object
properties:
@@ -6542,6 +7018,8 @@ components:
- categorical_count
- accuracy
title: AggregationFunctionType
+ description: >-
+ Types of aggregation functions for scoring results.
BasicScoringFnParams:
type: object
properties:
@@ -6549,15 +7027,21 @@ components:
$ref: '#/components/schemas/ScoringFnParamsType'
const: basic
default: basic
+ description: >-
+ The type of scoring function parameters, always basic
aggregation_functions:
type: array
items:
$ref: '#/components/schemas/AggregationFunctionType'
+ description: >-
+ Aggregation functions to apply to the scores of each row
additionalProperties: false
required:
- type
- aggregation_functions
title: BasicScoringFnParams
+ description: >-
+ Parameters for basic scoring function configuration.
BenchmarkConfig:
type: object
properties:
@@ -6599,18 +7083,28 @@ components:
$ref: '#/components/schemas/ScoringFnParamsType'
const: llm_as_judge
default: llm_as_judge
+ description: >-
+ The type of scoring function parameters, always llm_as_judge
judge_model:
type: string
+ description: >-
+ Identifier of the LLM model to use as a judge for scoring
prompt_template:
type: string
+ description: >-
+ (Optional) Custom prompt template for the judge model
judge_score_regexes:
type: array
items:
type: string
+ description: >-
+ Regexes to extract the answer from generated response
aggregation_functions:
type: array
items:
$ref: '#/components/schemas/AggregationFunctionType'
+ description: >-
+ Aggregation functions to apply to the scores of each row
additionalProperties: false
required:
- type
@@ -6618,6 +7112,8 @@ components:
- judge_score_regexes
- aggregation_functions
title: LLMAsJudgeScoringFnParams
+ description: >-
+ Parameters for LLM-as-judge scoring function configuration.
ModelCandidate:
type: object
properties:
@@ -6650,20 +7146,28 @@ components:
$ref: '#/components/schemas/ScoringFnParamsType'
const: regex_parser
default: regex_parser
+ description: >-
+ The type of scoring function parameters, always regex_parser
parsing_regexes:
type: array
items:
type: string
+ description: >-
+ Regex to extract the answer from generated response
aggregation_functions:
type: array
items:
$ref: '#/components/schemas/AggregationFunctionType'
+ description: >-
+ Aggregation functions to apply to the scores of each row
additionalProperties: false
required:
- type
- parsing_regexes
- aggregation_functions
title: RegexParserScoringFnParams
+ description: >-
+ Parameters for regex parser scoring function configuration.
ScoringFnParams:
oneOf:
- $ref: '#/components/schemas/LLMAsJudgeScoringFnParams'
@@ -6682,6 +7186,8 @@ components:
- regex_parser
- basic
title: ScoringFnParamsType
+ description: >-
+ Types of scoring function parameter configurations.
EvaluateRowsRequest:
type: object
properties:
@@ -6779,31 +7285,42 @@ components:
properties:
agent_id:
type: string
+ description: Unique identifier for the agent
agent_config:
$ref: '#/components/schemas/AgentConfig'
+ description: Configuration settings for the agent
created_at:
type: string
format: date-time
+ description: Timestamp when the agent was created
additionalProperties: false
required:
- agent_id
- agent_config
- created_at
title: Agent
+ description: >-
+ An agent instance with configuration and metadata.
Session:
type: object
properties:
session_id:
type: string
+ description: >-
+ Unique identifier for the conversation session
session_name:
type: string
+ description: Human-readable name for the session
turns:
type: array
items:
$ref: '#/components/schemas/Turn'
+ description: >-
+ List of all turns that have occurred in this session
started_at:
type: string
format: date-time
+ description: Timestamp when the session was created
additionalProperties: false
required:
- session_id
@@ -6829,10 +7346,14 @@ components:
tool_execution: '#/components/schemas/ToolExecutionStep'
shield_call: '#/components/schemas/ShieldCallStep'
memory_retrieval: '#/components/schemas/MemoryRetrievalStep'
+ description: >-
+ The complete step data and execution details
additionalProperties: false
required:
- step
title: AgentStepResponse
+ description: >-
+ Response containing details of a specific agent step.
Benchmark:
type: object
properties:
@@ -6853,15 +7374,19 @@ components:
- benchmark
- tool
- tool_group
- title: ResourceType
const: benchmark
default: benchmark
+ description: The resource type, always benchmark
dataset_id:
type: string
+ description: >-
+ Identifier of the dataset to use for the benchmark evaluation
scoring_functions:
type: array
items:
type: string
+ description: >-
+ List of scoring function identifiers to apply during evaluation
metadata:
type: object
additionalProperties:
@@ -6872,6 +7397,7 @@ components:
- type: string
- type: array
- type: object
+ description: Metadata for this evaluation task
additionalProperties: false
required:
- identifier
@@ -6881,6 +7407,8 @@ components:
- scoring_functions
- metadata
title: Benchmark
+ description: >-
+ A benchmark resource for evaluating model performance.
OpenAIAssistantMessageParam:
type: object
properties:
@@ -6922,14 +7450,20 @@ components:
type: string
const: image_url
default: image_url
+ description: >-
+ Must be "image_url" to identify this as image content
image_url:
$ref: '#/components/schemas/OpenAIImageURL'
+ description: >-
+ Image URL specification and processing details
additionalProperties: false
required:
- type
- image_url
title: >-
OpenAIChatCompletionContentPartImageParam
+ description: >-
+ Image content part for OpenAI-compatible chat completion messages.
OpenAIChatCompletionContentPartParam:
oneOf:
- $ref: '#/components/schemas/OpenAIChatCompletionContentPartTextParam'
@@ -6946,39 +7480,58 @@ components:
type: string
const: text
default: text
+ description: >-
+ Must be "text" to identify this as text content
text:
type: string
+ description: The text content of the message
additionalProperties: false
required:
- type
- text
title: OpenAIChatCompletionContentPartTextParam
+ description: >-
+ Text content part for OpenAI-compatible chat completion messages.
OpenAIChatCompletionToolCall:
type: object
properties:
index:
type: integer
+ description: >-
+ (Optional) Index of the tool call in the list
id:
type: string
+ description: >-
+ (Optional) Unique identifier for the tool call
type:
type: string
const: function
default: function
+ description: >-
+ Must be "function" to identify this as a function call
function:
$ref: '#/components/schemas/OpenAIChatCompletionToolCallFunction'
+ description: (Optional) Function call details
additionalProperties: false
required:
- type
title: OpenAIChatCompletionToolCall
+ description: >-
+ Tool call specification for OpenAI-compatible chat completion responses.
OpenAIChatCompletionToolCallFunction:
type: object
properties:
name:
type: string
+ description: (Optional) Name of the function to call
arguments:
type: string
+ description: >-
+ (Optional) Arguments to pass to the function as a JSON string
additionalProperties: false
title: OpenAIChatCompletionToolCallFunction
+ description: >-
+ Function call details for OpenAI-compatible tool calls.
OpenAIChoice:
type: object
properties:
@@ -7055,12 +7608,19 @@ components:
properties:
url:
type: string
+ description: >-
+ URL of the image to include in the message
detail:
type: string
+ description: >-
+ (Optional) Level of detail for image processing. Can be "low", "high",
+ or "auto"
additionalProperties: false
required:
- url
title: OpenAIImageURL
+ description: >-
+ Image URL specification for OpenAI-compatible chat completion messages.
OpenAIMessageParam:
oneOf:
- $ref: '#/components/schemas/OpenAIUserMessageParam'
@@ -7273,20 +7833,22 @@ components:
- benchmark
- tool
- tool_group
- title: ResourceType
const: dataset
default: dataset
+ description: >-
+ Type of resource, always 'dataset' for datasets
purpose:
type: string
enum:
- post-training/messages
- eval/question-answer
- eval/messages-answer
- title: DatasetPurpose
description: >-
- Purpose of the dataset. Each purpose has a required input data schema.
+ Purpose of the dataset indicating its intended use
source:
$ref: '#/components/schemas/DataSource'
+ description: >-
+ Data source configuration for the dataset
metadata:
type: object
additionalProperties:
@@ -7297,6 +7859,7 @@ components:
- type: string
- type: array
- type: object
+ description: Additional metadata for the dataset
additionalProperties: false
required:
- identifier
@@ -7306,6 +7869,8 @@ components:
- source
- metadata
title: Dataset
+ description: >-
+ Dataset resource for storing and accessing training or evaluation data.
RowsDataSource:
type: object
properties:
@@ -7359,10 +7924,16 @@ components:
properties:
identifier:
type: string
+ description: >-
+ Unique identifier for this resource in llama stack
provider_resource_id:
type: string
+ description: >-
+ Unique identifier for this resource in the provider
provider_id:
type: string
+ description: >-
+ ID of the provider that owns this resource
type:
type: string
enum:
@@ -7374,9 +7945,10 @@ components:
- benchmark
- tool
- tool_group
- title: ResourceType
const: model
default: model
+ description: >-
+ The resource type, always 'model' for model resources
metadata:
type: object
additionalProperties:
@@ -7387,9 +7959,12 @@ components:
- type: string
- type: array
- type: object
+ description: Any additional metadata for this model
model_type:
$ref: '#/components/schemas/ModelType'
default: llm
+ description: >-
+ The type of model (LLM or embedding model)
additionalProperties: false
required:
- identifier
@@ -7398,12 +7973,16 @@ components:
- metadata
- model_type
title: Model
+ description: >-
+ A model resource representing an AI model registered in Llama Stack.
ModelType:
type: string
enum:
- llm
- embedding
title: ModelType
+ description: >-
+ Enumeration of supported model types in Llama Stack.
AgentTurnInputType:
type: object
properties:
@@ -7411,10 +7990,13 @@ components:
type: string
const: agent_turn_input
default: agent_turn_input
+ description: >-
+ Discriminator type. Always "agent_turn_input"
additionalProperties: false
required:
- type
title: AgentTurnInputType
+ description: Parameter type for agent turn input.
ArrayType:
type: object
properties:
@@ -7422,10 +8004,12 @@ components:
type: string
const: array
default: array
+ description: Discriminator type. Always "array"
additionalProperties: false
required:
- type
title: ArrayType
+ description: Parameter type for array values.
BooleanType:
type: object
properties:
@@ -7433,10 +8017,12 @@ components:
type: string
const: boolean
default: boolean
+ description: Discriminator type. Always "boolean"
additionalProperties: false
required:
- type
title: BooleanType
+ description: Parameter type for boolean values.
ChatCompletionInputType:
type: object
properties:
@@ -7444,10 +8030,14 @@ components:
type: string
const: chat_completion_input
default: chat_completion_input
+ description: >-
+ Discriminator type. Always "chat_completion_input"
additionalProperties: false
required:
- type
title: ChatCompletionInputType
+ description: >-
+ Parameter type for chat completion input.
CompletionInputType:
type: object
properties:
@@ -7455,10 +8045,13 @@ components:
type: string
const: completion_input
default: completion_input
+ description: >-
+ Discriminator type. Always "completion_input"
additionalProperties: false
required:
- type
title: CompletionInputType
+ description: Parameter type for completion input.
JsonType:
type: object
properties:
@@ -7466,10 +8059,12 @@ components:
type: string
const: json
default: json
+ description: Discriminator type. Always "json"
additionalProperties: false
required:
- type
title: JsonType
+ description: Parameter type for JSON values.
NumberType:
type: object
properties:
@@ -7477,10 +8072,12 @@ components:
type: string
const: number
default: number
+ description: Discriminator type. Always "number"
additionalProperties: false
required:
- type
title: NumberType
+ description: Parameter type for numeric values.
ObjectType:
type: object
properties:
@@ -7488,10 +8085,12 @@ components:
type: string
const: object
default: object
+ description: Discriminator type. Always "object"
additionalProperties: false
required:
- type
title: ObjectType
+ description: Parameter type for object values.
ParamType:
oneOf:
- $ref: '#/components/schemas/StringType'
@@ -7537,9 +8136,10 @@ components:
- benchmark
- tool
- tool_group
- title: ResourceType
const: scoring_function
default: scoring_function
+ description: >-
+ The resource type, always scoring_function
description:
type: string
metadata:
@@ -7564,6 +8164,8 @@ components:
- metadata
- return_type
title: ScoringFn
+ description: >-
+ A scoring function resource for evaluating model outputs.
StringType:
type: object
properties:
@@ -7571,10 +8173,12 @@ components:
type: string
const: string
default: string
+ description: Discriminator type. Always "string"
additionalProperties: false
required:
- type
title: StringType
+ description: Parameter type for string values.
UnionType:
type: object
properties:
@@ -7582,10 +8186,12 @@ components:
type: string
const: union
default: union
+ description: Discriminator type. Always "union"
additionalProperties: false
required:
- type
title: UnionType
+ description: Parameter type for union values.
Shield:
type: object
properties:
@@ -7606,9 +8212,9 @@ components:
- benchmark
- tool
- tool_group
- title: ResourceType
const: shield
default: shield
+ description: The resource type, always shield
params:
type: object
additionalProperties:
@@ -7619,6 +8225,8 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Configuration parameters for the shield
additionalProperties: false
required:
- identifier
@@ -7626,24 +8234,34 @@ components:
- type
title: Shield
description: >-
- A safety shield resource that can be used to check content
+ A safety shield resource that can be used to check content.
Span:
type: object
properties:
span_id:
type: string
+ description: Unique identifier for the span
trace_id:
type: string
+ description: >-
+ Unique identifier for the trace this span belongs to
parent_span_id:
type: string
+ description: >-
+ (Optional) Unique identifier for the parent span, if this is a child span
name:
type: string
+ description: >-
+ Human-readable name describing the operation this span represents
start_time:
type: string
format: date-time
+ description: Timestamp when the operation began
end_time:
type: string
format: date-time
+ description: >-
+ (Optional) Timestamp when the operation finished, if completed
attributes:
type: object
additionalProperties:
@@ -7654,6 +8272,8 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Key-value pairs containing additional metadata about the span
additionalProperties: false
required:
- span_id
@@ -7661,6 +8281,8 @@ components:
- name
- start_time
title: Span
+ description: >-
+ A span representing a single operation within a trace.
GetSpanTreeRequest:
type: object
properties:
@@ -7680,23 +8302,36 @@ components:
- ok
- error
title: SpanStatus
+ description: >-
+ The status of a span indicating whether it completed successfully or with
+ an error.
SpanWithStatus:
type: object
properties:
span_id:
type: string
+ description: Unique identifier for the span
trace_id:
type: string
+ description: >-
+ Unique identifier for the trace this span belongs to
parent_span_id:
type: string
+ description: >-
+ (Optional) Unique identifier for the parent span, if this is a child span
name:
type: string
+ description: >-
+ Human-readable name describing the operation this span represents
start_time:
type: string
format: date-time
+ description: Timestamp when the operation began
end_time:
type: string
format: date-time
+ description: >-
+ (Optional) Timestamp when the operation finished, if completed
attributes:
type: object
additionalProperties:
@@ -7707,8 +8342,12 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Key-value pairs containing additional metadata about the span
status:
$ref: '#/components/schemas/SpanStatus'
+ description: >-
+ (Optional) The current status of the span
additionalProperties: false
required:
- span_id
@@ -7716,6 +8355,7 @@ components:
- name
- start_time
title: SpanWithStatus
+ description: A span that includes status information.
QuerySpanTreeResponse:
type: object
properties:
@@ -7723,10 +8363,14 @@ components:
type: object
additionalProperties:
$ref: '#/components/schemas/SpanWithStatus'
+ description: >-
+ Dictionary mapping span IDs to spans with status information
additionalProperties: false
required:
- data
title: QuerySpanTreeResponse
+ description: >-
+ Response containing a tree structure of spans.
Tool:
type: object
properties:
@@ -7747,17 +8391,22 @@ components:
- benchmark
- tool
- tool_group
- title: ResourceType
const: tool
default: tool
+ description: Type of resource, always 'tool'
toolgroup_id:
type: string
+ description: >-
+ ID of the tool group this tool belongs to
description:
type: string
+ description: >-
+ Human-readable description of what the tool does
parameters:
type: array
items:
$ref: '#/components/schemas/ToolParameter'
+ description: List of parameters this tool accepts
metadata:
type: object
additionalProperties:
@@ -7768,6 +8417,8 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Additional metadata about the tool
additionalProperties: false
required:
- identifier
@@ -7777,6 +8428,7 @@ components:
- description
- parameters
title: Tool
+ description: A tool that can be invoked by agents.
ToolGroup:
type: object
properties:
@@ -7797,11 +8449,13 @@ components:
- benchmark
- tool
- tool_group
- title: ResourceType
const: tool_group
default: tool_group
+ description: Type of resource, always 'tool_group'
mcp_endpoint:
$ref: '#/components/schemas/URL'
+ description: >-
+ (Optional) Model Context Protocol endpoint for remote tools
args:
type: object
additionalProperties:
@@ -7812,43 +8466,59 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Additional arguments for the tool group
additionalProperties: false
required:
- identifier
- provider_id
- type
title: ToolGroup
+ description: >-
+ A group of related tools managed together.
Trace:
type: object
properties:
trace_id:
type: string
+ description: Unique identifier for the trace
root_span_id:
type: string
+ description: >-
+ Unique identifier for the root span that started this trace
start_time:
type: string
format: date-time
+ description: Timestamp when the trace began
end_time:
type: string
format: date-time
+ description: >-
+ (Optional) Timestamp when the trace finished, if completed
additionalProperties: false
required:
- trace_id
- root_span_id
- start_time
title: Trace
+ description: >-
+ A trace representing the complete execution path of a request across multiple
+ operations.
Checkpoint:
- description: Checkpoint created during training runs
+ description: Checkpoint created during training runs.
title: Checkpoint
PostTrainingJobArtifactsResponse:
type: object
properties:
job_uuid:
type: string
+ description: Unique identifier for the training job
checkpoints:
type: array
items:
$ref: '#/components/schemas/Checkpoint'
+ description: >-
+ List of model checkpoints created during training
additionalProperties: false
required:
- job_uuid
@@ -7860,6 +8530,7 @@ components:
properties:
job_uuid:
type: string
+ description: Unique identifier for the training job
status:
type: string
enum:
@@ -7868,16 +8539,22 @@ components:
- failed
- scheduled
- cancelled
- title: JobStatus
+ description: Current status of the training job
scheduled_at:
type: string
format: date-time
+ description: >-
+ (Optional) Timestamp when the job was scheduled
started_at:
type: string
format: date-time
+ description: >-
+ (Optional) Timestamp when the job execution began
completed_at:
type: string
format: date-time
+ description: >-
+ (Optional) Timestamp when the job finished, if completed
resources_allocated:
type: object
additionalProperties:
@@ -7888,10 +8565,15 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Information about computational resources allocated to the
+ job
checkpoints:
type: array
items:
$ref: '#/components/schemas/Checkpoint'
+ description: >-
+ List of model checkpoints created during training
additionalProperties: false
required:
- job_uuid
@@ -7937,13 +8619,17 @@ components:
- benchmark
- tool
- tool_group
- title: ResourceType
const: vector_db
default: vector_db
+ description: >-
+ Type of resource, always 'vector_db' for vector databases
embedding_model:
type: string
+ description: >-
+ Name of the embedding model to use for vector generation
embedding_dimension:
type: integer
+ description: Dimension of the embedding vectors
additionalProperties: false
required:
- identifier
@@ -7952,6 +8638,8 @@ components:
- embedding_model
- embedding_dimension
title: VectorDB
+ description: >-
+ Vector database resource for storing and querying vector embeddings.
HealthInfo:
type: object
properties:
@@ -7961,11 +8649,13 @@ components:
- OK
- Error
- Not Implemented
- title: HealthStatus
+ description: Current health status of the service
additionalProperties: false
required:
- status
title: HealthInfo
+ description: >-
+ Health status information for the service.
RAGDocument:
type: object
properties:
@@ -8010,10 +8700,16 @@ components:
type: array
items:
$ref: '#/components/schemas/RAGDocument'
+ description: >-
+ List of documents to index in the RAG system
vector_db_id:
type: string
+ description: >-
+ ID of the vector database to store the document embeddings
chunk_size_in_tokens:
type: integer
+ description: >-
+ (Optional) Size in tokens for document chunking during indexing
additionalProperties: false
required:
- documents
@@ -8151,10 +8847,13 @@ components:
properties:
api:
type: string
+ description: The API name this provider implements
provider_id:
type: string
+ description: Unique identifier for the provider
provider_type:
type: string
+ description: The type of provider implementation
config:
type: object
additionalProperties:
@@ -8165,6 +8864,8 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ Configuration parameters for the provider
health:
type: object
additionalProperties:
@@ -8175,6 +8876,7 @@ components:
- type: string
- type: array
- type: object
+ description: Current health status of the provider
additionalProperties: false
required:
- api
@@ -8183,6 +8885,9 @@ components:
- config
- health
title: ProviderInfo
+ description: >-
+ Information about a registered provider including its configuration and health
+ status.
InvokeToolRequest:
type: object
properties:
@@ -8211,10 +8916,16 @@ components:
properties:
content:
$ref: '#/components/schemas/InterleavedContent'
+ description: >-
+ (Optional) The output content from the tool execution
error_message:
type: string
+ description: >-
+ (Optional) Error message if the tool execution failed
error_code:
type: integer
+ description: >-
+ (Optional) Numeric error code if the tool execution failed
metadata:
type: object
additionalProperties:
@@ -8225,8 +8936,11 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Additional metadata about the tool execution
additionalProperties: false
title: ToolInvocationResult
+ description: Result of a tool invocation.
PaginatedResponse:
type: object
properties:
@@ -8262,6 +8976,7 @@ components:
properties:
job_id:
type: string
+ description: Unique identifier for the job
status:
type: string
enum:
@@ -8270,12 +8985,14 @@ components:
- failed
- scheduled
- cancelled
- title: JobStatus
+ description: Current execution status of the job
additionalProperties: false
required:
- job_id
- status
title: Job
+ description: >-
+ A job execution instance with status tracking.
ListBenchmarksResponse:
type: object
properties:
@@ -8293,6 +9010,7 @@ components:
- asc
- desc
title: Order
+ description: Sort order for paginated responses.
ListOpenAIChatCompletionResponse:
type: object
properties:
@@ -8336,16 +9054,24 @@ components:
- model
- input_messages
title: OpenAICompletionWithInputMessages
+ description: >-
+ List of chat completion objects with their input messages
has_more:
type: boolean
+ description: >-
+ Whether there are more completions available beyond this list
first_id:
type: string
+ description: ID of the first completion in this list
last_id:
type: string
+ description: ID of the last completion in this list
object:
type: string
const: list
default: list
+ description: >-
+ Must be "list" to identify this as a list response
additionalProperties: false
required:
- data
@@ -8354,6 +9080,8 @@ components:
- last_id
- object
title: ListOpenAIChatCompletionResponse
+ description: >-
+ Response from listing OpenAI-compatible chat completions.
ListDatasetsResponse:
type: object
properties:
@@ -8361,10 +9089,12 @@ components:
type: array
items:
$ref: '#/components/schemas/Dataset'
+ description: List of datasets
additionalProperties: false
required:
- data
title: ListDatasetsResponse
+ description: Response from listing datasets.
ListModelsResponse:
type: object
properties:
@@ -8383,15 +9113,19 @@ components:
type: array
items:
$ref: '#/components/schemas/OpenAIResponseInput'
+ description: List of input items
object:
type: string
const: list
default: list
+ description: Object type identifier, always "list"
additionalProperties: false
required:
- data
- object
title: ListOpenAIResponseInputItem
+ description: >-
+ List container for OpenAI response input items.
ListOpenAIResponseObject:
type: object
properties:
@@ -8399,16 +9133,24 @@ components:
type: array
items:
$ref: '#/components/schemas/OpenAIResponseObjectWithInput'
+ description: >-
+ List of response objects with their input context
has_more:
type: boolean
+ description: >-
+ Whether there are more results available beyond this page
first_id:
type: string
+ description: >-
+ Identifier of the first item in this page
last_id:
type: string
+ description: Identifier of the last item in this page
object:
type: string
const: list
default: list
+ description: Object type identifier, always "list"
additionalProperties: false
required:
- data
@@ -8417,46 +9159,76 @@ components:
- last_id
- object
title: ListOpenAIResponseObject
+ description: >-
+ Paginated list of OpenAI response objects with navigation metadata.
OpenAIResponseObjectWithInput:
type: object
properties:
created_at:
type: integer
+ description: >-
+ Unix timestamp when the response was created
error:
$ref: '#/components/schemas/OpenAIResponseError'
+ description: >-
+ (Optional) Error details if the response generation failed
id:
type: string
+ description: Unique identifier for this response
model:
type: string
+ description: Model identifier used for generation
object:
type: string
const: response
default: response
+ description: >-
+ Object type identifier, always "response"
output:
type: array
items:
$ref: '#/components/schemas/OpenAIResponseOutput'
+ description: >-
+ List of generated output items (messages, tool calls, etc.)
parallel_tool_calls:
type: boolean
default: false
+ description: >-
+ Whether tool calls can be executed in parallel
previous_response_id:
type: string
+ description: >-
+ (Optional) ID of the previous response in a conversation
status:
type: string
+ description: >-
+ Current status of the response generation
temperature:
type: number
+ description: >-
+ (Optional) Sampling temperature used for generation
text:
$ref: '#/components/schemas/OpenAIResponseText'
+ description: >-
+ Text formatting configuration for the response
top_p:
type: number
+ description: >-
+ (Optional) Nucleus sampling parameter used for generation
truncation:
type: string
+ description: >-
+ (Optional) Truncation strategy applied to the response
user:
type: string
+ description: >-
+ (Optional) User identifier associated with the request
input:
type: array
items:
$ref: '#/components/schemas/OpenAIResponseInput'
+ description: >-
+ List of input items that led to this response
additionalProperties: false
required:
- created_at
@@ -8469,6 +9241,8 @@ components:
- text
- input
title: OpenAIResponseObjectWithInput
+ description: >-
+ OpenAI response object extended with input context information.
ListProvidersResponse:
type: object
properties:
@@ -8476,27 +9250,37 @@ components:
type: array
items:
$ref: '#/components/schemas/ProviderInfo'
+ description: List of provider information objects
additionalProperties: false
required:
- data
title: ListProvidersResponse
+ description: >-
+ Response containing a list of all available providers.
RouteInfo:
type: object
properties:
route:
type: string
+ description: The API endpoint path
method:
type: string
+ description: HTTP method for the route
provider_types:
type: array
items:
type: string
+ description: >-
+ List of provider types that implement this route
additionalProperties: false
required:
- route
- method
- provider_types
title: RouteInfo
+ description: >-
+ Information about an API route including its path, method, and implementing
+ providers.
ListRoutesResponse:
type: object
properties:
@@ -8504,10 +9288,14 @@ components:
type: array
items:
$ref: '#/components/schemas/RouteInfo'
+ description: >-
+ List of available route information objects
additionalProperties: false
required:
- data
title: ListRoutesResponse
+ description: >-
+ Response containing a list of all available API routes.
ListToolDefsResponse:
type: object
properties:
@@ -8515,10 +9303,13 @@ components:
type: array
items:
$ref: '#/components/schemas/ToolDef'
+ description: List of tool definitions
additionalProperties: false
required:
- data
title: ListToolDefsResponse
+ description: >-
+ Response containing a list of tool definitions.
ListScoringFunctionsResponse:
type: object
properties:
@@ -8548,10 +9339,13 @@ components:
type: array
items:
$ref: '#/components/schemas/ToolGroup'
+ description: List of tool groups
additionalProperties: false
required:
- data
title: ListToolGroupsResponse
+ description: >-
+ Response containing a list of tool groups.
ListToolsResponse:
type: object
properties:
@@ -8559,10 +9353,12 @@ components:
type: array
items:
$ref: '#/components/schemas/Tool'
+ description: List of tools
additionalProperties: false
required:
- data
title: ListToolsResponse
+ description: Response containing a list of tools.
ListVectorDBsResponse:
type: object
properties:
@@ -8570,10 +9366,12 @@ components:
type: array
items:
$ref: '#/components/schemas/VectorDB'
+ description: List of vector databases
additionalProperties: false
required:
- data
title: ListVectorDBsResponse
+ description: Response from listing vector databases.
Event:
oneOf:
- $ref: '#/components/schemas/UnstructuredLogEvent'
@@ -8592,6 +9390,8 @@ components:
- structured_log
- metric
title: EventType
+ description: >-
+ The type of telemetry event being logged.
LogSeverity:
type: string
enum:
@@ -8602,16 +9402,22 @@ components:
- error
- critical
title: LogSeverity
+ description: The severity level of a log message.
MetricEvent:
type: object
properties:
trace_id:
type: string
+ description: >-
+ Unique identifier for the trace this event belongs to
span_id:
type: string
+ description: >-
+ Unique identifier for the span this event belongs to
timestamp:
type: string
format: date-time
+ description: Timestamp when the event occurred
attributes:
type: object
additionalProperties:
@@ -8621,18 +9427,26 @@ components:
- type: number
- type: boolean
- type: 'null'
+ description: >-
+ (Optional) Key-value pairs containing additional metadata about the event
type:
$ref: '#/components/schemas/EventType'
const: metric
default: metric
+ description: Event type identifier set to METRIC
metric:
type: string
+ description: The name of the metric being measured
value:
oneOf:
- type: integer
- type: number
+ description: >-
+ The numeric value of the metric measurement
unit:
type: string
+ description: >-
+ The unit of measurement for the metric value
additionalProperties: false
required:
- trace_id
@@ -8643,6 +9457,8 @@ components:
- value
- unit
title: MetricEvent
+ description: >-
+ A metric event containing a measured value.
SpanEndPayload:
type: object
properties:
@@ -8650,13 +9466,17 @@ components:
$ref: '#/components/schemas/StructuredLogType'
const: span_end
default: span_end
+ description: Payload type identifier set to SPAN_END
status:
$ref: '#/components/schemas/SpanStatus'
+ description: >-
+ The final status of the span indicating success or failure
additionalProperties: false
required:
- type
- status
title: SpanEndPayload
+ description: Payload for a span end event.
SpanStartPayload:
type: object
properties:
@@ -8664,25 +9484,37 @@ components:
$ref: '#/components/schemas/StructuredLogType'
const: span_start
default: span_start
+ description: >-
+ Payload type identifier set to SPAN_START
name:
type: string
+ description: >-
+ Human-readable name describing the operation this span represents
parent_span_id:
type: string
+ description: >-
+ (Optional) Unique identifier for the parent span, if this is a child span
additionalProperties: false
required:
- type
- name
title: SpanStartPayload
+ description: Payload for a span start event.
StructuredLogEvent:
type: object
properties:
trace_id:
type: string
+ description: >-
+ Unique identifier for the trace this event belongs to
span_id:
type: string
+ description: >-
+ Unique identifier for the span this event belongs to
timestamp:
type: string
format: date-time
+ description: Timestamp when the event occurred
attributes:
type: object
additionalProperties:
@@ -8692,12 +9524,18 @@ components:
- type: number
- type: boolean
- type: 'null'
+ description: >-
+ (Optional) Key-value pairs containing additional metadata about the event
type:
$ref: '#/components/schemas/EventType'
const: structured_log
default: structured_log
+ description: >-
+ Event type identifier set to STRUCTURED_LOG
payload:
$ref: '#/components/schemas/StructuredLogPayload'
+ description: >-
+ The structured payload data for the log event
additionalProperties: false
required:
- trace_id
@@ -8706,6 +9544,8 @@ components:
- type
- payload
title: StructuredLogEvent
+ description: >-
+ A structured log event containing typed payload data.
StructuredLogPayload:
oneOf:
- $ref: '#/components/schemas/SpanStartPayload'
@@ -8721,16 +9561,23 @@ components:
- span_start
- span_end
title: StructuredLogType
+ description: >-
+ The type of structured log event payload.
UnstructuredLogEvent:
type: object
properties:
trace_id:
type: string
+ description: >-
+ Unique identifier for the trace this event belongs to
span_id:
type: string
+ description: >-
+ Unique identifier for the span this event belongs to
timestamp:
type: string
format: date-time
+ description: Timestamp when the event occurred
attributes:
type: object
additionalProperties:
@@ -8740,14 +9587,20 @@ components:
- type: number
- type: boolean
- type: 'null'
+ description: >-
+ (Optional) Key-value pairs containing additional metadata about the event
type:
$ref: '#/components/schemas/EventType'
const: unstructured_log
default: unstructured_log
+ description: >-
+ Event type identifier set to UNSTRUCTURED_LOG
message:
type: string
+ description: The log message text
severity:
$ref: '#/components/schemas/LogSeverity'
+ description: The severity level of the log message
additionalProperties: false
required:
- trace_id
@@ -8757,6 +9610,8 @@ components:
- message
- severity
title: UnstructuredLogEvent
+ description: >-
+ An unstructured log event containing a simple text message.
LogEventRequest:
type: object
properties:
@@ -8787,10 +9642,14 @@ components:
type: string
const: auto
default: auto
+ description: >-
+ Strategy type, always "auto" for automatic chunking
additionalProperties: false
required:
- type
title: VectorStoreChunkingStrategyAuto
+ description: >-
+ Automatic chunking strategy for vector store files.
VectorStoreChunkingStrategyStatic:
type: object
properties:
@@ -8798,27 +9657,39 @@ components:
type: string
const: static
default: static
+ description: >-
+ Strategy type, always "static" for static chunking
static:
$ref: '#/components/schemas/VectorStoreChunkingStrategyStaticConfig'
+ description: >-
+ Configuration parameters for the static chunking strategy
additionalProperties: false
required:
- type
- static
title: VectorStoreChunkingStrategyStatic
+ description: >-
+ Static chunking strategy with configurable parameters.
VectorStoreChunkingStrategyStaticConfig:
type: object
properties:
chunk_overlap_tokens:
type: integer
default: 400
+ description: >-
+ Number of tokens to overlap between adjacent chunks
max_chunk_size_tokens:
type: integer
default: 800
+ description: >-
+ Maximum number of tokens per chunk, must be between 100 and 4096
additionalProperties: false
required:
- chunk_overlap_tokens
- max_chunk_size_tokens
title: VectorStoreChunkingStrategyStaticConfig
+ description: >-
+ Configuration for static chunking strategy.
OpenaiAttachFileToVectorStoreRequest:
type: object
properties:
@@ -8855,21 +9726,30 @@ components:
const: server_error
- type: string
const: rate_limit_exceeded
+ description: >-
+ Error code indicating the type of failure
message:
type: string
+ description: >-
+ Human-readable error message describing the failure
additionalProperties: false
required:
- code
- message
title: VectorStoreFileLastError
+ description: >-
+ Error information for failed vector store file processing.
VectorStoreFileObject:
type: object
properties:
id:
type: string
+ description: Unique identifier for the file
object:
type: string
default: vector_store.file
+ description: >-
+ Object type identifier, always "vector_store.file"
attributes:
type: object
additionalProperties:
@@ -8880,19 +9760,31 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ Key-value attributes associated with the file
chunking_strategy:
$ref: '#/components/schemas/VectorStoreChunkingStrategy'
+ description: >-
+ Strategy used for splitting the file into chunks
created_at:
type: integer
+ description: >-
+ Timestamp when the file was added to the vector store
last_error:
$ref: '#/components/schemas/VectorStoreFileLastError'
+ description: >-
+ (Optional) Error information if file processing failed
status:
$ref: '#/components/schemas/VectorStoreFileStatus'
+ description: Current processing status of the file
usage_bytes:
type: integer
default: 0
+ description: Storage space used by this file in bytes
vector_store_id:
type: string
+ description: >-
+ ID of the vector store containing this file
additionalProperties: false
required:
- id
@@ -8920,10 +9812,14 @@ components:
properties:
name:
type: string
+ description: Name of the schema
description:
type: string
+ description: (Optional) Description of the schema
strict:
type: boolean
+ description: >-
+ (Optional) Whether to enforce strict adherence to the schema
schema:
type: object
additionalProperties:
@@ -8934,10 +9830,13 @@ components:
- type: string
- type: array
- type: object
+ description: (Optional) The JSON schema definition
additionalProperties: false
required:
- name
title: OpenAIJSONSchema
+ description: >-
+ JSON schema specification for OpenAI-compatible structured response format.
OpenAIResponseFormatJSONObject:
type: object
properties:
@@ -8945,10 +9844,14 @@ components:
type: string
const: json_object
default: json_object
+ description: >-
+ Must be "json_object" to indicate generic JSON object response format
additionalProperties: false
required:
- type
title: OpenAIResponseFormatJSONObject
+ description: >-
+ JSON object response format for OpenAI-compatible chat completion requests.
OpenAIResponseFormatJSONSchema:
type: object
properties:
@@ -8956,13 +9859,19 @@ components:
type: string
const: json_schema
default: json_schema
+ description: >-
+ Must be "json_schema" to indicate structured JSON response format
json_schema:
$ref: '#/components/schemas/OpenAIJSONSchema'
+ description: >-
+ The JSON schema specification for the response
additionalProperties: false
required:
- type
- json_schema
title: OpenAIResponseFormatJSONSchema
+ description: >-
+ JSON schema response format for OpenAI-compatible chat completion requests.
OpenAIResponseFormatParam:
oneOf:
- $ref: '#/components/schemas/OpenAIResponseFormatText'
@@ -8981,10 +9890,14 @@ components:
type: string
const: text
default: text
+ description: >-
+ Must be "text" to indicate plain text response format
additionalProperties: false
required:
- type
title: OpenAIResponseFormatText
+ description: >-
+ Text response format for OpenAI-compatible chat completion requests.
OpenaiChatCompletionRequest:
type: object
properties:
@@ -9467,14 +10380,23 @@ components:
properties:
completed:
type: integer
+ description: >-
+ Number of files that have been successfully processed
cancelled:
type: integer
+ description: >-
+ Number of files that had their processing cancelled
failed:
type: integer
+ description: Number of files that failed to process
in_progress:
type: integer
+ description: >-
+ Number of files currently being processed
total:
type: integer
+ description: >-
+ Total number of files in the vector store
additionalProperties: false
required:
- completed
@@ -9483,26 +10405,39 @@ components:
- in_progress
- total
title: VectorStoreFileCounts
+ description: >-
+ File processing status counts for a vector store.
VectorStoreObject:
type: object
properties:
id:
type: string
+ description: Unique identifier for the vector store
object:
type: string
default: vector_store
+ description: >-
+ Object type identifier, always "vector_store"
created_at:
type: integer
+ description: >-
+ Timestamp when the vector store was created
name:
type: string
+ description: (Optional) Name of the vector store
usage_bytes:
type: integer
default: 0
+ description: >-
+ Storage space used by the vector store in bytes
file_counts:
$ref: '#/components/schemas/VectorStoreFileCounts'
+ description: >-
+ File processing status counts for the vector store
status:
type: string
default: completed
+ description: Current status of the vector store
expires_after:
type: object
additionalProperties:
@@ -9513,10 +10448,16 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Expiration policy for the vector store
expires_at:
type: integer
+ description: >-
+ (Optional) Timestamp when the vector store will expire
last_active_at:
type: integer
+ description: >-
+ (Optional) Timestamp of last activity on the vector store
metadata:
type: object
additionalProperties:
@@ -9527,6 +10468,8 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ Set of key-value pairs that can be attached to the vector store
additionalProperties: false
required:
- id
@@ -9566,12 +10509,18 @@ components:
properties:
id:
type: string
+ description: >-
+ Unique identifier of the deleted vector store
object:
type: string
default: vector_store.deleted
+ description: >-
+ Object type identifier for the deletion response
deleted:
type: boolean
default: true
+ description: >-
+ Whether the deletion operation was successful
additionalProperties: false
required:
- id
@@ -9584,12 +10533,17 @@ components:
properties:
id:
type: string
+ description: Unique identifier of the deleted file
object:
type: string
default: vector_store.file.deleted
+ description: >-
+ Object type identifier for the deletion response
deleted:
type: boolean
default: true
+ description: >-
+ Whether the deletion operation was successful
additionalProperties: false
required:
- id
@@ -9727,10 +10681,16 @@ components:
description: List of file objects
has_more:
type: boolean
+ description: >-
+ Whether there are more files available beyond this page
first_id:
type: string
+ description: >-
+ ID of the first file in the list for pagination
last_id:
type: string
+ description: >-
+ ID of the last file in the list for pagination
object:
type: string
const: list
@@ -9795,24 +10755,33 @@ components:
object:
type: string
default: list
+ description: Object type identifier, always "list"
data:
type: array
items:
$ref: '#/components/schemas/VectorStoreFileObject'
+ description: List of vector store file objects
first_id:
type: string
+ description: >-
+ (Optional) ID of the first file in the list for pagination
last_id:
type: string
+ description: >-
+ (Optional) ID of the last file in the list for pagination
has_more:
type: boolean
default: false
+ description: >-
+ Whether there are more files available beyond this page
additionalProperties: false
required:
- object
- data
- has_more
title: VectorStoreListFilesResponse
- description: Response from listing vector stores.
+ description: >-
+ Response from listing files in a vector store.
OpenAIModel:
type: object
properties:
@@ -9851,17 +10820,25 @@ components:
object:
type: string
default: list
+ description: Object type identifier, always "list"
data:
type: array
items:
$ref: '#/components/schemas/VectorStoreObject'
+ description: List of vector store objects
first_id:
type: string
+ description: >-
+ (Optional) ID of the first vector store in the list for pagination
last_id:
type: string
+ description: >-
+ (Optional) ID of the last vector store in the list for pagination
has_more:
type: boolean
default: false
+ description: >-
+ Whether there are more vector stores available beyond this page
additionalProperties: false
required:
- object
@@ -9878,20 +10855,27 @@ components:
type:
type: string
const: text
+ description: >-
+ Content type, currently only "text" is supported
text:
type: string
+ description: The actual text content
additionalProperties: false
required:
- type
- text
title: VectorStoreContent
+ description: >-
+ Content item from a vector store file or search result.
VectorStoreFileContentsResponse:
type: object
properties:
file_id:
type: string
+ description: Unique identifier for the file
filename:
type: string
+ description: Name of the file
attributes:
type: object
additionalProperties:
@@ -9902,10 +10886,13 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ Key-value attributes associated with the file
content:
type: array
items:
$ref: '#/components/schemas/VectorStoreContent'
+ description: List of content items from the file
additionalProperties: false
required:
- file_id
@@ -9947,9 +10934,13 @@ components:
properties:
ranker:
type: string
+ description: >-
+ (Optional) Name of the ranking algorithm to use
score_threshold:
type: number
default: 0.0
+ description: >-
+ (Optional) Minimum relevance score threshold for results
additionalProperties: false
description: >-
Ranking options for fine-tuning the search results.
@@ -9971,10 +10962,14 @@ components:
properties:
file_id:
type: string
+ description: >-
+ Unique identifier of the file containing the result
filename:
type: string
+ description: Name of the file containing the result
score:
type: number
+ description: Relevance score for this search result
attributes:
type: object
additionalProperties:
@@ -9982,10 +10977,14 @@ components:
- type: string
- type: number
- type: boolean
+ description: >-
+ (Optional) Key-value attributes associated with the file
content:
type: array
items:
$ref: '#/components/schemas/VectorStoreContent'
+ description: >-
+ List of content items matching the search query
additionalProperties: false
required:
- file_id
@@ -10000,17 +10999,26 @@ components:
object:
type: string
default: vector_store.search_results.page
+ description: >-
+ Object type identifier for the search results page
search_query:
type: string
+ description: >-
+ The original search query that was executed
data:
type: array
items:
$ref: '#/components/schemas/VectorStoreSearchResponse'
+ description: List of search result objects
has_more:
type: boolean
default: false
+ description: >-
+ Whether there are more results available beyond this page
next_page:
type: string
+ description: >-
+ (Optional) Token for retrieving the next page of results
additionalProperties: false
required:
- object
@@ -10018,7 +11026,8 @@ components:
- data
- has_more
title: VectorStoreSearchResponsePage
- description: Response from searching a vector store.
+ description: >-
+ Paginated response from searching a vector store.
OpenaiUpdateVectorStoreRequest:
type: object
properties:
@@ -10075,12 +11084,18 @@ components:
properties:
reward_scale:
type: number
+ description: Scaling factor for the reward signal
reward_clip:
type: number
+ description: >-
+ Maximum absolute value for reward clipping
epsilon:
type: number
+ description: >-
+ Small value added for numerical stability
gamma:
type: number
+ description: Discount factor for future rewards
additionalProperties: false
required:
- reward_scale
@@ -10088,25 +11103,41 @@ components:
- epsilon
- gamma
title: DPOAlignmentConfig
+ description: >-
+ Configuration for Direct Preference Optimization (DPO) alignment.
DataConfig:
type: object
properties:
dataset_id:
type: string
+ description: >-
+ Unique identifier for the training dataset
batch_size:
type: integer
+ description: Number of samples per training batch
shuffle:
type: boolean
+ description: >-
+ Whether to shuffle the dataset during training
data_format:
$ref: '#/components/schemas/DatasetFormat'
+ description: >-
+ Format of the dataset (instruct or dialog)
validation_dataset_id:
type: string
+ description: >-
+ (Optional) Unique identifier for the validation dataset
packed:
type: boolean
default: false
+ description: >-
+ (Optional) Whether to pack multiple samples into a single sequence for
+ efficiency
train_on_input:
type: boolean
default: false
+ description: >-
+ (Optional) Whether to compute loss on input tokens as well as output tokens
additionalProperties: false
required:
- dataset_id
@@ -10114,40 +11145,59 @@ components:
- shuffle
- data_format
title: DataConfig
+ description: >-
+ Configuration for training data and data loading.
DatasetFormat:
type: string
enum:
- instruct
- dialog
title: DatasetFormat
+ description: Format of the training dataset.
EfficiencyConfig:
type: object
properties:
enable_activation_checkpointing:
type: boolean
default: false
+ description: >-
+ (Optional) Whether to use activation checkpointing to reduce memory usage
enable_activation_offloading:
type: boolean
default: false
+ description: >-
+ (Optional) Whether to offload activations to CPU to save GPU memory
memory_efficient_fsdp_wrap:
type: boolean
default: false
+ description: >-
+ (Optional) Whether to use memory-efficient FSDP wrapping
fsdp_cpu_offload:
type: boolean
default: false
+ description: >-
+ (Optional) Whether to offload FSDP parameters to CPU
additionalProperties: false
title: EfficiencyConfig
+ description: >-
+ Configuration for memory and compute efficiency optimizations.
OptimizerConfig:
type: object
properties:
optimizer_type:
$ref: '#/components/schemas/OptimizerType'
+ description: >-
+ Type of optimizer to use (adam, adamw, or sgd)
lr:
type: number
+ description: Learning rate for the optimizer
weight_decay:
type: number
+ description: >-
+ Weight decay coefficient for regularization
num_warmup_steps:
type: integer
+ description: Number of steps for learning rate warmup
additionalProperties: false
required:
- optimizer_type
@@ -10155,6 +11205,8 @@ components:
- weight_decay
- num_warmup_steps
title: OptimizerConfig
+ description: >-
+ Configuration parameters for the optimization algorithm.
OptimizerType:
type: string
enum:
@@ -10162,35 +11214,53 @@ components:
- adamw
- sgd
title: OptimizerType
+ description: >-
+ Available optimizer algorithms for training.
TrainingConfig:
type: object
properties:
n_epochs:
type: integer
+ description: Number of training epochs to run
max_steps_per_epoch:
type: integer
default: 1
+ description: Maximum number of steps to run per epoch
gradient_accumulation_steps:
type: integer
default: 1
+ description: >-
+ Number of steps to accumulate gradients before updating
max_validation_steps:
type: integer
default: 1
+ description: >-
+ (Optional) Maximum number of validation steps per epoch
data_config:
$ref: '#/components/schemas/DataConfig'
+ description: >-
+ (Optional) Configuration for data loading and formatting
optimizer_config:
$ref: '#/components/schemas/OptimizerConfig'
+ description: >-
+ (Optional) Configuration for the optimization algorithm
efficiency_config:
$ref: '#/components/schemas/EfficiencyConfig'
+ description: >-
+ (Optional) Configuration for memory and compute optimizations
dtype:
type: string
default: bf16
+ description: >-
+ (Optional) Data type for model parameters (bf16, fp16, fp32)
additionalProperties: false
required:
- n_epochs
- max_steps_per_epoch
- gradient_accumulation_steps
title: TrainingConfig
+ description: >-
+ Comprehensive configuration for the training process.
PreferenceOptimizeRequest:
type: object
properties:
@@ -10253,14 +11323,20 @@ components:
type: string
const: default
default: default
+ description: >-
+ Type of query generator, always 'default'
separator:
type: string
default: ' '
+ description: >-
+ String separator used to join query terms
additionalProperties: false
required:
- type
- separator
title: DefaultRAGQueryGeneratorConfig
+ description: >-
+ Configuration for the default RAG query generator.
LLMRAGQueryGeneratorConfig:
type: object
properties:
@@ -10268,16 +11344,23 @@ components:
type: string
const: llm
default: llm
+ description: Type of query generator, always 'llm'
model:
type: string
+ description: >-
+ Name of the language model to use for query generation
template:
type: string
+ description: >-
+ Template string for formatting the query generation prompt
additionalProperties: false
required:
- type
- model
- template
title: LLMRAGQueryGeneratorConfig
+ description: >-
+ Configuration for the LLM-based RAG query generator.
RAGQueryConfig:
type: object
properties:
@@ -10346,8 +11429,7 @@ components:
default: 60.0
description: >-
The impact factor for RRF scoring. Higher values give more weight to higher-ranked
- results. Must be greater than 0. Default of 60 is from the original RRF
- paper (Cormack et al., 2009).
+ results. Must be greater than 0
additionalProperties: false
required:
- type
@@ -10390,12 +11472,18 @@ components:
properties:
content:
$ref: '#/components/schemas/InterleavedContent'
+ description: >-
+ The query content to search for in the indexed documents
vector_db_ids:
type: array
items:
type: string
+ description: >-
+ List of vector database IDs to search within
query_config:
$ref: '#/components/schemas/RAGQueryConfig'
+ description: >-
+ (Optional) Configuration parameters for the query operation
additionalProperties: false
required:
- content
@@ -10406,6 +11494,8 @@ components:
properties:
content:
$ref: '#/components/schemas/InterleavedContent'
+ description: >-
+ (Optional) The retrieved content from the query
metadata:
type: object
additionalProperties:
@@ -10416,10 +11506,14 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ Additional metadata about the query result
additionalProperties: false
required:
- metadata
title: RAGQueryResult
+ description: >-
+ Result of a RAG query containing retrieved content and metadata.
QueryChunksRequest:
type: object
properties:
@@ -10453,15 +11547,21 @@ components:
type: array
items:
$ref: '#/components/schemas/Chunk'
+ description: >-
+ List of content chunks returned from the query
scores:
type: array
items:
type: number
+ description: >-
+ Relevance scores corresponding to each returned chunk
additionalProperties: false
required:
- chunks
- scores
title: QueryChunksResponse
+ description: >-
+ Response from querying chunks in a vector database.
QueryMetricsRequest:
type: object
properties:
@@ -10487,8 +11587,10 @@ components:
properties:
name:
type: string
+ description: The name of the label to match
value:
type: string
+ description: The value to match against
operator:
type: string
enum:
@@ -10496,7 +11598,8 @@ components:
- '!='
- =~
- '!~'
- title: MetricLabelOperator
+ description: >-
+ The comparison operator to use for matching
default: '='
additionalProperties: false
required:
@@ -10504,6 +11607,8 @@ components:
- value
- operator
title: MetricLabelMatcher
+ description: >-
+ A matcher for filtering metrics by label values.
description: >-
The label matchers to apply to the metric.
additionalProperties: false
@@ -10516,44 +11621,59 @@ components:
properties:
timestamp:
type: integer
+ description: >-
+ Unix timestamp when the metric value was recorded
value:
type: number
+ description: >-
+ The numeric value of the metric at this timestamp
additionalProperties: false
required:
- timestamp
- value
title: MetricDataPoint
+ description: >-
+ A single data point in a metric time series.
MetricLabel:
type: object
properties:
name:
type: string
+ description: The name of the label
value:
type: string
+ description: The value of the label
additionalProperties: false
required:
- name
- value
title: MetricLabel
+ description: A label associated with a metric.
MetricSeries:
type: object
properties:
metric:
type: string
+ description: The name of the metric
labels:
type: array
items:
$ref: '#/components/schemas/MetricLabel'
+ description: >-
+ List of labels associated with this metric series
values:
type: array
items:
$ref: '#/components/schemas/MetricDataPoint'
+ description: >-
+ List of data points in chronological order
additionalProperties: false
required:
- metric
- labels
- values
title: MetricSeries
+ description: A time series of metric data points.
QueryMetricsResponse:
type: object
properties:
@@ -10561,17 +11681,23 @@ components:
type: array
items:
$ref: '#/components/schemas/MetricSeries'
+ description: >-
+ List of metric series matching the query criteria
additionalProperties: false
required:
- data
title: QueryMetricsResponse
+ description: >-
+ Response containing metric time series data.
QueryCondition:
type: object
properties:
key:
type: string
+ description: The attribute key to filter on
op:
$ref: '#/components/schemas/QueryConditionOp'
+ description: The comparison operator to apply
value:
oneOf:
- type: 'null'
@@ -10580,12 +11706,14 @@ components:
- type: string
- type: array
- type: object
+ description: The value to compare against
additionalProperties: false
required:
- key
- op
- value
title: QueryCondition
+ description: A condition for filtering query results.
QueryConditionOp:
type: string
enum:
@@ -10594,6 +11722,8 @@ components:
- gt
- lt
title: QueryConditionOp
+ description: >-
+ Comparison operators for query conditions.
QuerySpansRequest:
type: object
properties:
@@ -10623,10 +11753,13 @@ components:
type: array
items:
$ref: '#/components/schemas/Span'
+ description: >-
+ List of spans matching the query criteria
additionalProperties: false
required:
- data
title: QuerySpansResponse
+ description: Response containing a list of spans.
QueryTracesRequest:
type: object
properties:
@@ -10656,10 +11789,13 @@ components:
type: array
items:
$ref: '#/components/schemas/Trace'
+ description: >-
+ List of traces matching the query criteria
additionalProperties: false
required:
- data
title: QueryTracesResponse
+ description: Response containing a list of traces.
RegisterBenchmarkRequest:
type: object
properties:
@@ -10961,8 +12097,11 @@ components:
properties:
violation:
$ref: '#/components/schemas/SafetyViolation'
+ description: >-
+ (Optional) Safety violation detected by the shield, if any
additionalProperties: false
title: RunShieldResponse
+ description: Response from running a safety shield.
SaveSpansToDatasetRequest:
type: object
properties:
@@ -11062,14 +12201,20 @@ components:
properties:
dataset_id:
type: string
+ description: >-
+ (Optional) The identifier of the dataset that was scored
results:
type: object
additionalProperties:
$ref: '#/components/schemas/ScoringResult'
+ description: >-
+ A map of scoring function name to ScoringResult
additionalProperties: false
required:
- results
title: ScoreBatchResponse
+ description: >-
+ Response from batch scoring operations on datasets.
AlgorithmConfig:
oneOf:
- $ref: '#/components/schemas/LoraFinetuningConfig'
@@ -11086,24 +12231,38 @@ components:
type: string
const: LoRA
default: LoRA
+ description: Algorithm type identifier, always "LoRA"
lora_attn_modules:
type: array
items:
type: string
+ description: >-
+ List of attention module names to apply LoRA to
apply_lora_to_mlp:
type: boolean
+ description: Whether to apply LoRA to MLP layers
apply_lora_to_output:
type: boolean
+ description: >-
+ Whether to apply LoRA to output projection layers
rank:
type: integer
+ description: >-
+ Rank of the LoRA adaptation (lower rank = fewer parameters)
alpha:
type: integer
+ description: >-
+ LoRA scaling parameter that controls adaptation strength
use_dora:
type: boolean
default: false
+ description: >-
+ (Optional) Whether to use DoRA (Weight-Decomposed Low-Rank Adaptation)
quantize_base:
type: boolean
default: false
+ description: >-
+ (Optional) Whether to quantize the base model weights
additionalProperties: false
required:
- type
@@ -11113,6 +12272,8 @@ components:
- rank
- alpha
title: LoraFinetuningConfig
+ description: >-
+ Configuration for Low-Rank Adaptation (LoRA) fine-tuning.
QATFinetuningConfig:
type: object
properties:
@@ -11120,16 +12281,22 @@ components:
type: string
const: QAT
default: QAT
+ description: Algorithm type identifier, always "QAT"
quantizer_name:
type: string
+ description: >-
+ Name of the quantization algorithm to use
group_size:
type: integer
+ description: Size of groups for grouped quantization
additionalProperties: false
required:
- type
- quantizer_name
- group_size
title: QATFinetuningConfig
+ description: >-
+ Configuration for Quantization-Aware Training (QAT) fine-tuning.
SupervisedFineTuneRequest:
type: object
properties:
@@ -11184,6 +12351,8 @@ components:
type: array
items:
$ref: '#/components/schemas/Message'
+ description: >-
+ List of conversation messages to use as input for synthetic data generation
filtering_function:
type: string
enum:
@@ -11193,10 +12362,13 @@ components:
- top_p
- top_k_top_p
- sigmoid
- title: FilteringFunction
- description: The type of filtering function.
+ description: >-
+ Type of filtering to apply to generated synthetic data samples
model:
type: string
+ description: >-
+ (Optional) The identifier of the model to use. The model must be registered
+ with Llama Stack and available via the /models endpoint
additionalProperties: false
required:
- dialogs
@@ -11217,6 +12389,8 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ List of generated synthetic data samples that passed the filtering criteria
statistics:
type: object
additionalProperties:
@@ -11227,6 +12401,9 @@ components:
- type: string
- type: array
- type: object
+ description: >-
+ (Optional) Statistical information about the generation process and filtering
+ results
additionalProperties: false
required:
- synthetic_data
@@ -11239,10 +12416,12 @@ components:
properties:
version:
type: string
+ description: Version number of the service
additionalProperties: false
required:
- version
title: VersionInfo
+ description: Version information for the service.
responses:
BadRequest400:
description: The request was invalid or malformed