Skip to content
New issue

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

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

Already on GitHub? # to your account

feat: add VertexAISearch.engine option #29263

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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

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

Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,19 @@ class RagResource
end
end

# Retrieve from Vertex AI Search datastore for grounding.
# Retrieve from Vertex AI Search datastore or engine for grounding.
# datastore and engine are mutually exclusive.
# See https://cloud.google.com/products/agent-builder
# @!attribute [rw] datastore
# @return [::String]
# Required. Fully-qualified Vertex AI Search data store resource ID.
# Optional. Fully-qualified Vertex AI Search data store resource ID.
# Format:
# `projects/{project}/locations/{location}/collections/{collection}/dataStores/{dataStore}`
# @!attribute [rw] engine
# @return [::String]
# Optional. Fully-qualified Vertex AI Search engine resource ID.
# Format:
# `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}`
class VertexAISearch
include ::Google::Protobuf::MessageExts
extend ::Google::Protobuf::MessageExts::ClassMethods
Expand Down