Skip to content

feat(all): auto-regenerate discovery clients #2936

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aiplatform/v1/aiplatform-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -19327,7 +19327,7 @@
}
}
},
"revision": "20241210",
"revision": "20241214",
"rootUrl": "https://aiplatform.googleapis.com/",
"schemas": {
"CloudAiLargeModelsVisionGenerateVideoResponse": {
Expand Down Expand Up @@ -20936,7 +20936,7 @@
"type": "object"
},
"GoogleCloudAiplatformV1Blob": {
"description": "Content blob. It's preferred to send as text directly rather than raw bytes.",
"description": "Content blob.",
"id": "GoogleCloudAiplatformV1Blob",
"properties": {
"data": {
Expand Down
3 changes: 1 addition & 2 deletions aiplatform/v1/aiplatform-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 33 additions & 4 deletions aiplatform/v1beta1/aiplatform-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -21964,7 +21964,7 @@
}
}
},
"revision": "20241210",
"revision": "20241214",
"rootUrl": "https://aiplatform.googleapis.com/",
"schemas": {
"CloudAiLargeModelsVisionGenerateVideoResponse": {
Expand Down Expand Up @@ -23781,7 +23781,7 @@
"type": "object"
},
"GoogleCloudAiplatformV1beta1Blob": {
"description": "Content blob. It's preferred to send as text directly rather than raw bytes.",
"description": "Content blob.",
"id": "GoogleCloudAiplatformV1beta1Blob",
"properties": {
"data": {
Expand Down Expand Up @@ -26578,7 +26578,7 @@
},
"pipelineRootDirectory": {
"deprecated": true,
"description": "Required. Deprecated. A path in a Cloud Storage bucket, which will be treated as the root output directory of the distillation pipeline. It is used by the system to generate the paths of output artifacts.",
"description": "Deprecated. A path in a Cloud Storage bucket, which will be treated as the root output directory of the distillation pipeline. It is used by the system to generate the paths of output artifacts.",
"type": "string"
},
"studentModel": {
Expand All @@ -26588,7 +26588,7 @@
},
"trainingDatasetUri": {
"deprecated": true,
"description": "Required. Cloud Storage path to file containing training dataset for tuning. The dataset must be formatted as a JSONL file.",
"description": "Deprecated. Cloud Storage path to file containing training dataset for tuning. The dataset must be formatted as a JSONL file.",
"type": "string"
},
"tunedTeacherModelSource": {
Expand Down Expand Up @@ -37346,6 +37346,10 @@
"description": "Optional. Text part (can be code).",
"type": "string"
},
"thought": {
"description": "Optional. Indicates if the part is thought from the model.",
"type": "boolean"
},
"videoMetadata": {
"$ref": "GoogleCloudAiplatformV1beta1VideoMetadata",
"description": "Optional. Video metadata. The metadata should only be specified while the video data is presented in inline_data or file_data."
Expand Down Expand Up @@ -39872,6 +39876,10 @@
"$ref": "GoogleCloudAiplatformV1beta1RagFileParsingConfigLayoutParser",
"description": "The Layout Parser to use for RagFiles."
},
"llmParser": {
"$ref": "GoogleCloudAiplatformV1beta1RagFileParsingConfigLlmParser",
"description": "The LLM Parser to use for RagFiles."
},
"useAdvancedPdfParsing": {
"deprecated": true,
"description": "Whether to use advanced PDF parsing.",
Expand Down Expand Up @@ -39907,6 +39915,26 @@
},
"type": "object"
},
"GoogleCloudAiplatformV1beta1RagFileParsingConfigLlmParser": {
"description": "Specifies the advanced parsing for RagFiles.",
"id": "GoogleCloudAiplatformV1beta1RagFileParsingConfigLlmParser",
"properties": {
"customParsingPrompt": {
"description": "The prompt to use for parsing. If not specified, a default prompt will be used.",
"type": "string"
},
"maxParsingRequestsPerMin": {
"description": "The maximum number of requests the job is allowed to make to the LLM model per minute. Consult https://cloud.google.com/vertex-ai/generative-ai/docs/quotas and your document size to set an appropriate value here. If unspecified, a default value of 5000 QPM would be used.",
"format": "int32",
"type": "integer"
},
"modelName": {
"description": "The name of a LLM model used for parsing. Format: `gemini-1.5-pro-002`",
"type": "string"
}
},
"type": "object"
},
"GoogleCloudAiplatformV1beta1RagFileTransformationConfig": {
"description": "Specifies the transformation config for RagFiles.",
"id": "GoogleCloudAiplatformV1beta1RagFileTransformationConfig",
Expand Down Expand Up @@ -49556,6 +49584,7 @@
"description": "Tuning Spec for open sourced and third party Partner models."
},
"pipelineJob": {
"deprecated": true,
"description": "Output only. The resource name of the PipelineJob associated with the TuningJob. Format: `projects/{project}/locations/{location}/pipelineJobs/{pipeline_job}`.",
"readOnly": true,
"type": "string"
Expand Down
51 changes: 43 additions & 8 deletions aiplatform/v1beta1/aiplatform-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.