Skip to content

Commit

Permalink
feat: add example_gcs_source to Examples in aiplatform v1beta1 explan…
Browse files Browse the repository at this point in the history
…ation.proto (#4249)

* feat: add example_gcs_source to Examples in aiplatform v1beta1 explanation.proto

PiperOrigin-RevId: 529739833

Source-Link: googleapis/googleapis@7bcbfa7

Source-Link: googleapis/googleapis-gen@59a3738
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWFpcGxhdGZvcm0vLk93bEJvdC55YW1sIiwiaCI6IjU5YTM3Mzg4NWQwYjU1MjY0MDIxZDA3MTAyYjBjYmY4MTZkN2QxOGMifQ==

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored May 8, 2023
1 parent 36720f9 commit 4af8ae2
Show file tree
Hide file tree
Showing 6 changed files with 920 additions and 451 deletions.
865 changes: 432 additions & 433 deletions packages/google-cloud-aiplatform/README.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,30 @@ message BlurBaselineConfig {
// Example-based explainability that returns the nearest neighbors from the
// provided dataset.
message Examples {
// The Cloud Storage input instances.
message ExampleGcsSource {
// The format of the input example instances.
enum DataFormat {
// Format unspecified, used when unset.
DATA_FORMAT_UNSPECIFIED = 0;

// Examples are stored in JSONL files.
JSONL = 1;
}

// The format in which instances are given, if not specified, assume it's
// JSONL format. Currently only JSONL format is supported.
DataFormat data_format = 1;

// The Cloud Storage location for the input instances.
GcsSource gcs_source = 2;
}

oneof source {
// The Cloud Storage input instances.
ExampleGcsSource example_gcs_source = 5;
}

oneof config {
// The full configuration for the generated index, the semantics are the
// same as [metadata][google.cloud.aiplatform.v1beta1.Index.metadata] and
Expand Down
124 changes: 124 additions & 0 deletions packages/google-cloud-aiplatform/protos/protos.d.ts

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

Loading

0 comments on commit 4af8ae2

Please sign in to comment.