Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,24 @@ message PredictRequestResponseLoggingConfig {

// This message contains configs of a publisher model.
message PublisherModelConfig {
// A model provider (publisher) that prediction data may be shared with.
enum ModelProvider {
// Unspecified model provider.
MODEL_PROVIDER_UNSPECIFIED = 0;

// Anthropic.
ANTHROPIC = 1;
}

// The prediction request/response logging config.
PredictRequestResponseLoggingConfig logging_config = 3;

// Optional. The model provider (publisher) for which the customer has enabled
// data sharing. For publisher models that are configured to require data
// sharing, a prediction request is only allowed when the model's publisher
// matches this provider. Otherwise, the request is rejected.
ModelProvider data_sharing_enabled_provider = 4
[(google.api.field_behavior) = OPTIONAL];
}

// Configurations (e.g. inference timeout) that are applied on your endpoints.
Expand Down
15 changes: 15 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.

59 changes: 58 additions & 1 deletion packages/google-cloud-aiplatform/protos/protos.js

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

Loading
Loading