Skip to content

Commit e02c606

Browse files
Google APIscopybara-github
authored andcommitted
feat: add support for Vertex AI Search engine
PiperOrigin-RevId: 740862834
1 parent ebc5e12 commit e02c606

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

google/cloud/aiplatform/v1/vertex_rag_data.proto

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,15 @@ message FileStatus {
142142
string error_status = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
143143
}
144144

145+
// Config for the Vertex AI Search.
146+
message VertexAiSearchConfig {
147+
// Vertex AI Search Serving Config resource full name. For example,
148+
// `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/servingConfigs/{serving_config}`
149+
// or
150+
// `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/servingConfigs/{serving_config}`.
151+
string serving_config = 1;
152+
}
153+
145154
// RagCorpus status.
146155
message CorpusStatus {
147156
// RagCorpus life state.
@@ -207,6 +216,12 @@ message RagCorpus {
207216
(google.api.field_behavior) = OPTIONAL,
208217
(google.api.field_behavior) = IMMUTABLE
209218
];
219+
220+
// Optional. Immutable. The config for the Vertex AI Search.
221+
VertexAiSearchConfig vertex_ai_search_config = 10 [
222+
(google.api.field_behavior) = OPTIONAL,
223+
(google.api.field_behavior) = IMMUTABLE
224+
];
210225
}
211226
}
212227

0 commit comments

Comments
 (0)