API spec update, client demo with Stainless SDK (#58)

* [wip] client w/ stainless sdk

* update generator & yaml spec

* update wrapper request

* update script

* agentic system client sdk

* add comment todos

* remove client sdk examples
This commit is contained in:
Xi Yan 2024-09-09 13:09:47 -07:00 committed by GitHub
parent 741310f78e
commit 4f021de10f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 678 additions and 67 deletions

View file

@ -21,7 +21,7 @@
"info": {
"title": "[DRAFT] Llama Stack Specification",
"version": "0.0.1",
"description": "This is the specification of the llama stack that provides\n a set of endpoints and their corresponding interfaces that are tailored to\n best leverage Llama Models. The specification is still in draft and subject to change.\n Generated at 2024-09-07 15:23:29.488676"
"description": "This is the specification of the llama stack that provides\n a set of endpoints and their corresponding interfaces that are tailored to\n best leverage Llama Models. The specification is still in draft and subject to change.\n Generated at 2024-09-09 11:19:39.855375"
},
"servers": [
{
@ -51,7 +51,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BatchChatCompletionRequest"
"$ref": "#/components/schemas/BatchChatCompletionRequestWrapper"
}
}
},
@ -81,7 +81,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BatchCompletionRequest"
"$ref": "#/components/schemas/BatchCompletionRequestWrapper"
}
}
},
@ -157,7 +157,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ChatCompletionRequest"
"$ref": "#/components/schemas/ChatCompletionRequestWrapper"
}
}
},
@ -187,7 +187,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CompletionRequest"
"$ref": "#/components/schemas/CompletionRequestWrapper"
}
}
},
@ -277,7 +277,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AgenticSystemTurnCreateRequest"
"$ref": "#/components/schemas/AgenticSystemTurnCreateRequestWrapper"
}
}
},
@ -300,7 +300,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateDatasetRequest"
"$ref": "#/components/schemas/CreateDatasetRequestWrapper"
}
}
},
@ -330,7 +330,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateExperimentRequest"
"$ref": "#/components/schemas/CreateExperimentRequestWrapper"
}
}
},
@ -390,7 +390,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateRunRequest"
"$ref": "#/components/schemas/CreateRunRequestWrapper"
}
}
},
@ -572,7 +572,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/EvaluateQuestionAnsweringRequest"
"$ref": "#/components/schemas/EvaluateQuestionAnsweringRequestWrapper"
}
}
},
@ -602,7 +602,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/EvaluateSummarizationRequest"
"$ref": "#/components/schemas/EvaluateSummarizationRequestWrapper"
}
}
},
@ -632,7 +632,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/EvaluateTextGenerationRequest"
"$ref": "#/components/schemas/EvaluateTextGenerationRequestWrapper"
}
}
},
@ -1024,7 +1024,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LogSearchRequest"
"$ref": "#/components/schemas/LogSearchRequestWrapper"
}
}
},
@ -1312,7 +1312,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LogMessagesRequest"
"$ref": "#/components/schemas/LogMessagesRequestWrapper"
}
}
},
@ -1335,7 +1335,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LogMetricsRequest"
"$ref": "#/components/schemas/LogMetricsRequestWrapper"
}
}
},
@ -1365,7 +1365,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PostTrainingRLHFRequest"
"$ref": "#/components/schemas/PostTrainingRLHFRequestWrapper"
}
}
},
@ -1425,7 +1425,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RewardScoringRequest"
"$ref": "#/components/schemas/RewardScoringRequestWrapper"
}
}
},
@ -1455,7 +1455,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PostTrainingSFTRequest"
"$ref": "#/components/schemas/PostTrainingSFTRequestWrapper"
}
}
},
@ -1485,7 +1485,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SyntheticDataGenerationRequest"
"$ref": "#/components/schemas/SyntheticDataGenerationRequestWrapper"
}
}
},
@ -1538,7 +1538,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateExperimentRequest"
"$ref": "#/components/schemas/UpdateExperimentRequestWrapper"
}
}
},
@ -1568,7 +1568,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateRunRequest"
"$ref": "#/components/schemas/UpdateRunRequestWrapper"
}
}
},
@ -1598,7 +1598,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UploadArtifactRequest"
"$ref": "#/components/schemas/UploadArtifactRequestWrapper"
}
}
},
@ -2020,6 +2020,18 @@
"content"
]
},
"BatchChatCompletionRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/BatchChatCompletionRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"BatchChatCompletionResponse": {
"type": "object",
"properties": {
@ -2076,6 +2088,18 @@
"content_batch"
]
},
"BatchCompletionRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/BatchCompletionRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"BatchCompletionResponse": {
"type": "object",
"properties": {
@ -2174,6 +2198,18 @@
"messages"
]
},
"ChatCompletionRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/ChatCompletionRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"ChatCompletionResponseEvent": {
"type": "object",
"properties": {
@ -2316,6 +2352,18 @@
"content"
]
},
"CompletionRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/CompletionRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"CompletionResponseStreamChunk": {
"type": "object",
"properties": {
@ -3181,6 +3229,18 @@
"mime_type"
]
},
"AgenticSystemTurnCreateRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/AgenticSystemTurnCreateRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"AgenticSystemTurnResponseEvent": {
"type": "object",
"properties": {
@ -3752,6 +3812,18 @@
"json"
]
},
"CreateDatasetRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/CreateDatasetRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"CreateExperimentRequest": {
"type": "object",
"properties": {
@ -3789,6 +3861,18 @@
"name"
]
},
"CreateExperimentRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/CreateExperimentRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"Experiment": {
"type": "object",
"properties": {
@ -4061,6 +4145,18 @@
"experiment_id"
]
},
"CreateRunRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/CreateRunRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"Run": {
"type": "object",
"properties": {
@ -4273,6 +4369,18 @@
],
"title": "Request to evaluate question answering."
},
"EvaluateQuestionAnsweringRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/EvaluateQuestionAnsweringRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"EvaluationJob": {
"type": "object",
"properties": {
@ -4321,6 +4429,18 @@
],
"title": "Request to evaluate summarization."
},
"EvaluateSummarizationRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/EvaluateSummarizationRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"EvaluateTextGenerationRequest": {
"type": "object",
"properties": {
@ -4358,6 +4478,18 @@
],
"title": "Request to evaluate text generation."
},
"EvaluateTextGenerationRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/EvaluateTextGenerationRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"GetAgenticSystemSessionRequest": {
"type": "object",
"properties": {
@ -4643,6 +4775,18 @@
"query"
]
},
"LogSearchRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/LogSearchRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"Log": {
"type": "object",
"properties": {
@ -4902,6 +5046,18 @@
"logs"
]
},
"LogMessagesRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/LogMessagesRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"LogMetricsRequest": {
"type": "object",
"properties": {
@ -4921,6 +5077,18 @@
"metrics"
]
},
"LogMetricsRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/LogMetricsRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"DPOAlignmentConfig": {
"type": "object",
"properties": {
@ -5109,6 +5277,18 @@
"fsdp_cpu_offload"
]
},
"PostTrainingRLHFRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/PostTrainingRLHFRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"QueryDocumentsRequest": {
"type": "object",
"properties": {
@ -5277,6 +5457,18 @@
],
"title": "Request to score a reward function. A list of prompts and a list of responses per prompt."
},
"RewardScoringRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/RewardScoringRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"RewardScoringResponse": {
"type": "object",
"properties": {
@ -5562,6 +5754,18 @@
"alpha"
]
},
"PostTrainingSFTRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/PostTrainingSFTRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"SyntheticDataGenerationRequest": {
"type": "object",
"properties": {
@ -5607,6 +5811,18 @@
],
"title": "Request to generate synthetic data. A small batch of prompts and a filtering function"
},
"SyntheticDataGenerationRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/SyntheticDataGenerationRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"SyntheticDataGenerationResponse": {
"type": "object",
"properties": {
@ -5707,6 +5923,18 @@
"experiment_id"
]
},
"UpdateExperimentRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/UpdateExperimentRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"UpdateRunRequest": {
"type": "object",
"properties": {
@ -5751,6 +5979,18 @@
"run_id"
]
},
"UpdateRunRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/UpdateRunRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
},
"UploadArtifactRequest": {
"type": "object",
"properties": {
@ -5800,6 +6040,18 @@
"artifact_type",
"content"
]
},
"UploadArtifactRequestWrapper": {
"type": "object",
"properties": {
"request": {
"$ref": "#/components/schemas/UploadArtifactRequest"
}
},
"additionalProperties": false,
"required": [
"request"
]
}
},
"responses": {}
@ -5810,36 +6062,36 @@
}
],
"tags": [
{
"name": "Telemetry"
},
{
"name": "Evaluations"
},
{
"name": "AgenticSystem"
},
{
"name": "Inference"
},
{
"name": "BatchInference"
},
{
"name": "PostTraining"
},
{
"name": "Datasets"
},
{
"name": "Evaluations"
},
{
"name": "Memory"
},
{
"name": "SyntheticDataGeneration"
},
{
"name": "PostTraining"
},
{
"name": "RewardScoring"
},
{
"name": "BatchInference"
},
{
"name": "Telemetry"
},
{
"name": "AgenticSystem"
},
{
"name": "BatchChatCompletionRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/BatchChatCompletionRequest\" />"
@ -5896,6 +6148,10 @@
"name": "UserMessage",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/UserMessage\" />"
},
{
"name": "BatchChatCompletionRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/BatchChatCompletionRequestWrapper\" />"
},
{
"name": "BatchChatCompletionResponse",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/BatchChatCompletionResponse\" />"
@ -5904,6 +6160,10 @@
"name": "BatchCompletionRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/BatchCompletionRequest\" />"
},
{
"name": "BatchCompletionRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/BatchCompletionRequestWrapper\" />"
},
{
"name": "BatchCompletionResponse",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/BatchCompletionResponse\" />"
@ -5920,6 +6180,10 @@
"name": "ChatCompletionRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/ChatCompletionRequest\" />"
},
{
"name": "ChatCompletionRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/ChatCompletionRequestWrapper\" />"
},
{
"name": "ChatCompletionResponseEvent",
"description": "Chat completion response event.\n\n<SchemaDefinition schemaRef=\"#/components/schemas/ChatCompletionResponseEvent\" />"
@ -5948,6 +6212,10 @@
"name": "CompletionRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/CompletionRequest\" />"
},
{
"name": "CompletionRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/CompletionRequestWrapper\" />"
},
{
"name": "CompletionResponseStreamChunk",
"description": "streamed completion response.\n\n<SchemaDefinition schemaRef=\"#/components/schemas/CompletionResponseStreamChunk\" />"
@ -6024,6 +6292,10 @@
"name": "Attachment",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/Attachment\" />"
},
{
"name": "AgenticSystemTurnCreateRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/AgenticSystemTurnCreateRequestWrapper\" />"
},
{
"name": "AgenticSystemTurnResponseEvent",
"description": "Streamed agent execution response.\n\n<SchemaDefinition schemaRef=\"#/components/schemas/AgenticSystemTurnResponseEvent\" />"
@ -6092,10 +6364,18 @@
"name": "TrainEvalDatasetColumnType",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/TrainEvalDatasetColumnType\" />"
},
{
"name": "CreateDatasetRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/CreateDatasetRequestWrapper\" />"
},
{
"name": "CreateExperimentRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/CreateExperimentRequest\" />"
},
{
"name": "CreateExperimentRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/CreateExperimentRequestWrapper\" />"
},
{
"name": "Experiment",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/Experiment\" />"
@ -6116,6 +6396,10 @@
"name": "CreateRunRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/CreateRunRequest\" />"
},
{
"name": "CreateRunRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/CreateRunRequestWrapper\" />"
},
{
"name": "Run",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/Run\" />"
@ -6156,6 +6440,10 @@
"name": "EvaluateQuestionAnsweringRequest",
"description": "Request to evaluate question answering.\n\n<SchemaDefinition schemaRef=\"#/components/schemas/EvaluateQuestionAnsweringRequest\" />"
},
{
"name": "EvaluateQuestionAnsweringRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/EvaluateQuestionAnsweringRequestWrapper\" />"
},
{
"name": "EvaluationJob",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/EvaluationJob\" />"
@ -6164,10 +6452,18 @@
"name": "EvaluateSummarizationRequest",
"description": "Request to evaluate summarization.\n\n<SchemaDefinition schemaRef=\"#/components/schemas/EvaluateSummarizationRequest\" />"
},
{
"name": "EvaluateSummarizationRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/EvaluateSummarizationRequestWrapper\" />"
},
{
"name": "EvaluateTextGenerationRequest",
"description": "Request to evaluate text generation.\n\n<SchemaDefinition schemaRef=\"#/components/schemas/EvaluateTextGenerationRequest\" />"
},
{
"name": "EvaluateTextGenerationRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/EvaluateTextGenerationRequestWrapper\" />"
},
{
"name": "GetAgenticSystemSessionRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/GetAgenticSystemSessionRequest\" />"
@ -6212,6 +6508,10 @@
"name": "LogSearchRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/LogSearchRequest\" />"
},
{
"name": "LogSearchRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/LogSearchRequestWrapper\" />"
},
{
"name": "Log",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/Log\" />"
@ -6252,10 +6552,18 @@
"name": "LogMessagesRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/LogMessagesRequest\" />"
},
{
"name": "LogMessagesRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/LogMessagesRequestWrapper\" />"
},
{
"name": "LogMetricsRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/LogMetricsRequest\" />"
},
{
"name": "LogMetricsRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/LogMetricsRequestWrapper\" />"
},
{
"name": "DPOAlignmentConfig",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/DPOAlignmentConfig\" />"
@ -6276,6 +6584,10 @@
"name": "TrainingConfig",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/TrainingConfig\" />"
},
{
"name": "PostTrainingRLHFRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/PostTrainingRLHFRequestWrapper\" />"
},
{
"name": "QueryDocumentsRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/QueryDocumentsRequest\" />"
@ -6292,6 +6604,10 @@
"name": "RewardScoringRequest",
"description": "Request to score a reward function. A list of prompts and a list of responses per prompt.\n\n<SchemaDefinition schemaRef=\"#/components/schemas/RewardScoringRequest\" />"
},
{
"name": "RewardScoringRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/RewardScoringRequestWrapper\" />"
},
{
"name": "RewardScoringResponse",
"description": "Response from the reward scoring. Batch of (prompt, response, score) tuples that pass the threshold.\n\n<SchemaDefinition schemaRef=\"#/components/schemas/RewardScoringResponse\" />"
@ -6324,10 +6640,18 @@
"name": "QLoraFinetuningConfig",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/QLoraFinetuningConfig\" />"
},
{
"name": "PostTrainingSFTRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/PostTrainingSFTRequestWrapper\" />"
},
{
"name": "SyntheticDataGenerationRequest",
"description": "Request to generate synthetic data. A small batch of prompts and a filtering function\n\n<SchemaDefinition schemaRef=\"#/components/schemas/SyntheticDataGenerationRequest\" />"
},
{
"name": "SyntheticDataGenerationRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/SyntheticDataGenerationRequestWrapper\" />"
},
{
"name": "SyntheticDataGenerationResponse",
"description": "Response from the synthetic data generation. Batch of (prompt, response, score) tuples that pass the threshold.\n\n<SchemaDefinition schemaRef=\"#/components/schemas/SyntheticDataGenerationResponse\" />"
@ -6340,13 +6664,25 @@
"name": "UpdateExperimentRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/UpdateExperimentRequest\" />"
},
{
"name": "UpdateExperimentRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/UpdateExperimentRequestWrapper\" />"
},
{
"name": "UpdateRunRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/UpdateRunRequest\" />"
},
{
"name": "UpdateRunRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/UpdateRunRequestWrapper\" />"
},
{
"name": "UploadArtifactRequest",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/UploadArtifactRequest\" />"
},
{
"name": "UploadArtifactRequestWrapper",
"description": "<SchemaDefinition schemaRef=\"#/components/schemas/UploadArtifactRequestWrapper\" />"
}
],
"x-tagGroups": [
@ -6373,6 +6709,7 @@
"AgenticSystemSessionCreateResponse",
"AgenticSystemStepResponse",
"AgenticSystemTurnCreateRequest",
"AgenticSystemTurnCreateRequestWrapper",
"AgenticSystemTurnResponseEvent",
"AgenticSystemTurnResponseStepCompletePayload",
"AgenticSystemTurnResponseStepProgressPayload",
@ -6384,8 +6721,10 @@
"ArtifactType",
"Attachment",
"BatchChatCompletionRequest",
"BatchChatCompletionRequestWrapper",
"BatchChatCompletionResponse",
"BatchCompletionRequest",
"BatchCompletionRequestWrapper",
"BatchCompletionResponse",
"BraveSearchToolDefinition",
"BuiltinShield",
@ -6393,6 +6732,7 @@
"CancelEvaluationJobRequest",
"CancelTrainingJobRequest",
"ChatCompletionRequest",
"ChatCompletionRequestWrapper",
"ChatCompletionResponseEvent",
"ChatCompletionResponseEventType",
"ChatCompletionResponseStreamChunk",
@ -6400,13 +6740,17 @@
"CodeInterpreterToolDefinition",
"CompletionMessage",
"CompletionRequest",
"CompletionRequestWrapper",
"CompletionResponseStreamChunk",
"CreateAgenticSystemRequest",
"CreateAgenticSystemSessionRequest",
"CreateDatasetRequest",
"CreateDatasetRequestWrapper",
"CreateExperimentRequest",
"CreateExperimentRequestWrapper",
"CreateMemoryBankRequest",
"CreateRunRequest",
"CreateRunRequestWrapper",
"DPOAlignmentConfig",
"DeleteAgenticSystemRequest",
"DeleteAgenticSystemSessionRequest",
@ -6418,8 +6762,11 @@
"EmbeddingsRequest",
"EmbeddingsResponse",
"EvaluateQuestionAnsweringRequest",
"EvaluateQuestionAnsweringRequestWrapper",
"EvaluateSummarizationRequest",
"EvaluateSummarizationRequestWrapper",
"EvaluateTextGenerationRequest",
"EvaluateTextGenerationRequestWrapper",
"EvaluationJob",
"EvaluationJobArtifactsResponse",
"EvaluationJobLogStream",
@ -6435,8 +6782,11 @@
"ListArtifactsRequest",
"Log",
"LogMessagesRequest",
"LogMessagesRequestWrapper",
"LogMetricsRequest",
"LogMetricsRequestWrapper",
"LogSearchRequest",
"LogSearchRequestWrapper",
"LoraFinetuningConfig",
"MemoryBank",
"MemoryBankDocument",
@ -6451,7 +6801,9 @@
"PostTrainingJobStatus",
"PostTrainingJobStatusResponse",
"PostTrainingRLHFRequest",
"PostTrainingRLHFRequestWrapper",
"PostTrainingSFTRequest",
"PostTrainingSFTRequestWrapper",
"QLoraFinetuningConfig",
"QueryDocumentsRequest",
"QueryDocumentsResponse",
@ -6459,6 +6811,7 @@
"RestAPIExecutionConfig",
"RestAPIMethod",
"RewardScoringRequest",
"RewardScoringRequestWrapper",
"RewardScoringResponse",
"Run",
"SamplingParams",
@ -6471,6 +6824,7 @@
"ShieldResponse",
"StopReason",
"SyntheticDataGenerationRequest",
"SyntheticDataGenerationRequestWrapper",
"SyntheticDataGenerationResponse",
"SystemMessage",
"TokenLogProbs",
@ -6491,8 +6845,11 @@
"URL",
"UpdateDocumentsRequest",
"UpdateExperimentRequest",
"UpdateExperimentRequestWrapper",
"UpdateRunRequest",
"UpdateRunRequestWrapper",
"UploadArtifactRequest",
"UploadArtifactRequestWrapper",
"UserMessage",
"WolframAlphaToolDefinition"
]