Class VertexRagServiceClient
- All Implemented Interfaces:
BackgroundResource,AutoCloseable
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
RagQuery query = RagQuery.newBuilder().build();
RetrieveContextsResponse response = vertexRagServiceClient.retrieveContexts(parent, query);
}
Note: close() needs to be called on the VertexRagServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
| Method | Description | Method Variants |
|---|---|---|
RetrieveContexts |
Retrieves relevant contexts for a query. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
AugmentPrompt |
Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards generating grounded responses. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
CorroborateContent |
Given an input text, it returns a score that evaluates the factuality of the text. It also extracts and returns claims from the text and provides supporting facts. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
AskContexts |
Agentic Retrieval Ask API for RAG. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
AsyncRetrieveContexts |
Asynchronous API to retrieves relevant contexts for a query. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
ListLocations |
Lists information about the supported locations for this service. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetLocation |
Gets information about a location. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
SetIamPolicy |
Sets the access control policy on the specified resource. Replacesany existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
GetIamPolicy |
Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
TestIamPermissions |
Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of VertexRagServiceSettings to create(). For example:
To customize credentials:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
VertexRagServiceSettings vertexRagServiceSettings =
VertexRagServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
VertexRagServiceClient vertexRagServiceClient =
VertexRagServiceClient.create(vertexRagServiceSettings);
To customize the endpoint:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
VertexRagServiceSettings vertexRagServiceSettings =
VertexRagServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
VertexRagServiceClient vertexRagServiceClient =
VertexRagServiceClient.create(vertexRagServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic classstatic class -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedprotectedConstructs an instance of VertexRagServiceClient, using the given settings. -
Method Summary
Modifier and TypeMethodDescriptionfinal AskContextsResponseaskContexts(AskContextsRequest request) Agentic Retrieval Ask API for RAG.final AskContextsResponseaskContexts(LocationName parent, RagQuery query) Agentic Retrieval Ask API for RAG.final AskContextsResponseaskContexts(String parent, RagQuery query) Agentic Retrieval Ask API for RAG.Agentic Retrieval Ask API for RAG.Asynchronous API to retrieves relevant contexts for a query.asyncRetrieveContextsAsync(LocationName parent, RagQuery query) Asynchronous API to retrieves relevant contexts for a query.asyncRetrieveContextsAsync(String parent, RagQuery query) Asynchronous API to retrieves relevant contexts for a query.Asynchronous API to retrieves relevant contexts for a query.final OperationCallable<AsyncRetrieveContextsRequest,AsyncRetrieveContextsResponse, AsyncRetrieveContextsOperationMetadata> Asynchronous API to retrieves relevant contexts for a query.final AugmentPromptResponseaugmentPrompt(AugmentPromptRequest request) Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards generating grounded responses.final AugmentPromptResponseaugmentPrompt(LocationName parent, AugmentPromptRequest.Model model, VertexRagStore vertexRagStore) Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards generating grounded responses.final AugmentPromptResponseaugmentPrompt(String parent, AugmentPromptRequest.Model model, VertexRagStore vertexRagStore) Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards generating grounded responses.Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards generating grounded responses.booleanawaitTermination(long duration, TimeUnit unit) final voidclose()Given an input text, it returns a score that evaluates the factuality of the text.corroborateContent(LocationName parent, Content content, List<Fact> facts) Given an input text, it returns a score that evaluates the factuality of the text.corroborateContent(String parent, Content content, List<Fact> facts) Given an input text, it returns a score that evaluates the factuality of the text.Given an input text, it returns a score that evaluates the factuality of the text.static final VertexRagServiceClientcreate()Constructs an instance of VertexRagServiceClient with default settings.static final VertexRagServiceClientcreate(VertexRagServiceStub stub) Constructs an instance of VertexRagServiceClient, using the given stub for making calls.static final VertexRagServiceClientcreate(VertexRagServiceSettings settings) Constructs an instance of VertexRagServiceClient, using the given settings.final PolicygetIamPolicy(GetIamPolicyRequest request) Gets the access control policy for a resource.Gets the access control policy for a resource.final LocationgetLocation(GetLocationRequest request) Gets information about a location.Gets information about a location.final OperationsClientReturns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.final VertexRagServiceSettingsgetStub()booleanbooleanlistLocations(ListLocationsRequest request) Lists information about the supported locations for this service.Lists information about the supported locations for this service.Lists information about the supported locations for this service.final RetrieveContextsResponseretrieveContexts(LocationName parent, RagQuery query) Retrieves relevant contexts for a query.final RetrieveContextsResponseretrieveContexts(RetrieveContextsRequest request) Retrieves relevant contexts for a query.final RetrieveContextsResponseretrieveContexts(String parent, RagQuery query) Retrieves relevant contexts for a query.Retrieves relevant contexts for a query.final PolicysetIamPolicy(SetIamPolicyRequest request) Sets the access control policy on the specified resource.Sets the access control policy on the specified resource.voidshutdown()voidReturns permissions that a caller has on the specified resource.Returns permissions that a caller has on the specified resource.
-
Constructor Details
-
VertexRagServiceClient
Constructs an instance of VertexRagServiceClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.- Throws:
IOException
-
VertexRagServiceClient
-
-
Method Details
-
create
Constructs an instance of VertexRagServiceClient with default settings.- Throws:
IOException
-
create
public static final VertexRagServiceClient create(VertexRagServiceSettings settings) throws IOException Constructs an instance of VertexRagServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.- Throws:
IOException
-
create
Constructs an instance of VertexRagServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(VertexRagServiceSettings). -
getSettings
-
getStub
-
getOperationsClient
Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call. -
retrieveContexts
Retrieves relevant contexts for a query.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); RagQuery query = RagQuery.newBuilder().build(); RetrieveContextsResponse response = vertexRagServiceClient.retrieveContexts(parent, query); }- Parameters:
parent- Required. The resource name of the Location from which to retrieve RagContexts. The users must have permission to make a call in the project. Format: `projects/{project}/locations/{location}`.query- Required. Single RAG retrieve query.- Throws:
ApiException- if the remote call fails
-
retrieveContexts
Retrieves relevant contexts for a query.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString(); RagQuery query = RagQuery.newBuilder().build(); RetrieveContextsResponse response = vertexRagServiceClient.retrieveContexts(parent, query); }- Parameters:
parent- Required. The resource name of the Location from which to retrieve RagContexts. The users must have permission to make a call in the project. Format: `projects/{project}/locations/{location}`.query- Required. Single RAG retrieve query.- Throws:
ApiException- if the remote call fails
-
retrieveContexts
Retrieves relevant contexts for a query.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { RetrieveContextsRequest request = RetrieveContextsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setQuery(RagQuery.newBuilder().build()) .build(); RetrieveContextsResponse response = vertexRagServiceClient.retrieveContexts(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
retrieveContextsCallable
public final UnaryCallable<RetrieveContextsRequest,RetrieveContextsResponse> retrieveContextsCallable()Retrieves relevant contexts for a query.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { RetrieveContextsRequest request = RetrieveContextsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setQuery(RagQuery.newBuilder().build()) .build(); ApiFuture<RetrieveContextsResponse> future = vertexRagServiceClient.retrieveContextsCallable().futureCall(request); // Do something. RetrieveContextsResponse response = future.get(); } -
augmentPrompt
public final AugmentPromptResponse augmentPrompt(LocationName parent, AugmentPromptRequest.Model model, VertexRagStore vertexRagStore) Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards generating grounded responses.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); AugmentPromptRequest.Model model = AugmentPromptRequest.Model.newBuilder().build(); VertexRagStore vertexRagStore = VertexRagStore.newBuilder().build(); AugmentPromptResponse response = vertexRagServiceClient.augmentPrompt(parent, model, vertexRagStore); }- Parameters:
parent- Required. The resource name of the Location from which to augment prompt. The users must have permission to make a call in the project. Format: `projects/{project}/locations/{location}`.model- Optional. Metadata of the backend deployed model.vertexRagStore- Optional. Retrieves contexts from the Vertex RagStore.- Throws:
ApiException- if the remote call fails
-
augmentPrompt
public final AugmentPromptResponse augmentPrompt(String parent, AugmentPromptRequest.Model model, VertexRagStore vertexRagStore) Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards generating grounded responses.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString(); AugmentPromptRequest.Model model = AugmentPromptRequest.Model.newBuilder().build(); VertexRagStore vertexRagStore = VertexRagStore.newBuilder().build(); AugmentPromptResponse response = vertexRagServiceClient.augmentPrompt(parent, model, vertexRagStore); }- Parameters:
parent- Required. The resource name of the Location from which to augment prompt. The users must have permission to make a call in the project. Format: `projects/{project}/locations/{location}`.model- Optional. Metadata of the backend deployed model.vertexRagStore- Optional. Retrieves contexts from the Vertex RagStore.- Throws:
ApiException- if the remote call fails
-
augmentPrompt
Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards generating grounded responses.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { AugmentPromptRequest request = AugmentPromptRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .addAllContents(new ArrayList<Content>()) .setModel(AugmentPromptRequest.Model.newBuilder().build()) .build(); AugmentPromptResponse response = vertexRagServiceClient.augmentPrompt(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
augmentPromptCallable
Given an input prompt, it returns augmented prompt from vertex rag store to guide LLM towards generating grounded responses.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { AugmentPromptRequest request = AugmentPromptRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .addAllContents(new ArrayList<Content>()) .setModel(AugmentPromptRequest.Model.newBuilder().build()) .build(); ApiFuture<AugmentPromptResponse> future = vertexRagServiceClient.augmentPromptCallable().futureCall(request); // Do something. AugmentPromptResponse response = future.get(); } -
corroborateContent
public final CorroborateContentResponse corroborateContent(LocationName parent, Content content, List<Fact> facts) Given an input text, it returns a score that evaluates the factuality of the text. It also extracts and returns claims from the text and provides supporting facts.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); Content content = Content.newBuilder().build(); List<Fact> facts = new ArrayList<>(); CorroborateContentResponse response = vertexRagServiceClient.corroborateContent(parent, content, facts); }- Parameters:
parent- Required. The resource name of the Location from which to corroborate text. The users must have permission to make a call in the project. Format: `projects/{project}/locations/{location}`.content- Optional. Input content to corroborate, only text format is supported for now.facts- Optional. Facts used to generate the text can also be used to corroborate the text.- Throws:
ApiException- if the remote call fails
-
corroborateContent
public final CorroborateContentResponse corroborateContent(String parent, Content content, List<Fact> facts) Given an input text, it returns a score that evaluates the factuality of the text. It also extracts and returns claims from the text and provides supporting facts.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString(); Content content = Content.newBuilder().build(); List<Fact> facts = new ArrayList<>(); CorroborateContentResponse response = vertexRagServiceClient.corroborateContent(parent, content, facts); }- Parameters:
parent- Required. The resource name of the Location from which to corroborate text. The users must have permission to make a call in the project. Format: `projects/{project}/locations/{location}`.content- Optional. Input content to corroborate, only text format is supported for now.facts- Optional. Facts used to generate the text can also be used to corroborate the text.- Throws:
ApiException- if the remote call fails
-
corroborateContent
Given an input text, it returns a score that evaluates the factuality of the text. It also extracts and returns claims from the text and provides supporting facts.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { CorroborateContentRequest request = CorroborateContentRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setContent(Content.newBuilder().build()) .addAllFacts(new ArrayList<Fact>()) .setParameters(CorroborateContentRequest.Parameters.newBuilder().build()) .build(); CorroborateContentResponse response = vertexRagServiceClient.corroborateContent(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
corroborateContentCallable
public final UnaryCallable<CorroborateContentRequest,CorroborateContentResponse> corroborateContentCallable()Given an input text, it returns a score that evaluates the factuality of the text. It also extracts and returns claims from the text and provides supporting facts.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { CorroborateContentRequest request = CorroborateContentRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setContent(Content.newBuilder().build()) .addAllFacts(new ArrayList<Fact>()) .setParameters(CorroborateContentRequest.Parameters.newBuilder().build()) .build(); ApiFuture<CorroborateContentResponse> future = vertexRagServiceClient.corroborateContentCallable().futureCall(request); // Do something. CorroborateContentResponse response = future.get(); } -
askContexts
Agentic Retrieval Ask API for RAG.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); RagQuery query = RagQuery.newBuilder().build(); AskContextsResponse response = vertexRagServiceClient.askContexts(parent, query); }- Parameters:
parent- Required. The resource name of the Location from which to retrieve RagContexts. The users must have permission to make a call in the project. Format: `projects/{project}/locations/{location}`.query- Required. Single RAG retrieve query.- Throws:
ApiException- if the remote call fails
-
askContexts
Agentic Retrieval Ask API for RAG.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString(); RagQuery query = RagQuery.newBuilder().build(); AskContextsResponse response = vertexRagServiceClient.askContexts(parent, query); }- Parameters:
parent- Required. The resource name of the Location from which to retrieve RagContexts. The users must have permission to make a call in the project. Format: `projects/{project}/locations/{location}`.query- Required. Single RAG retrieve query.- Throws:
ApiException- if the remote call fails
-
askContexts
Agentic Retrieval Ask API for RAG.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { AskContextsRequest request = AskContextsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setQuery(RagQuery.newBuilder().build()) .addAllTools(new ArrayList<Tool>()) .build(); AskContextsResponse response = vertexRagServiceClient.askContexts(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
askContextsCallable
Agentic Retrieval Ask API for RAG.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { AskContextsRequest request = AskContextsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setQuery(RagQuery.newBuilder().build()) .addAllTools(new ArrayList<Tool>()) .build(); ApiFuture<AskContextsResponse> future = vertexRagServiceClient.askContextsCallable().futureCall(request); // Do something. AskContextsResponse response = future.get(); } -
asyncRetrieveContextsAsync
public final OperationFuture<AsyncRetrieveContextsResponse,AsyncRetrieveContextsOperationMetadata> asyncRetrieveContextsAsync(LocationName parent, RagQuery query) Asynchronous API to retrieves relevant contexts for a query.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]"); RagQuery query = RagQuery.newBuilder().build(); AsyncRetrieveContextsResponse response = vertexRagServiceClient.asyncRetrieveContextsAsync(parent, query).get(); }- Parameters:
parent- Required. The resource name of the Location from which to retrieve RagContexts. The users must have permission to make a call in the project. Format: `projects/{project}/locations/{location}`.query- Required. Single RAG retrieve query.- Throws:
ApiException- if the remote call fails
-
asyncRetrieveContextsAsync
public final OperationFuture<AsyncRetrieveContextsResponse,AsyncRetrieveContextsOperationMetadata> asyncRetrieveContextsAsync(String parent, RagQuery query) Asynchronous API to retrieves relevant contexts for a query.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString(); RagQuery query = RagQuery.newBuilder().build(); AsyncRetrieveContextsResponse response = vertexRagServiceClient.asyncRetrieveContextsAsync(parent, query).get(); }- Parameters:
parent- Required. The resource name of the Location from which to retrieve RagContexts. The users must have permission to make a call in the project. Format: `projects/{project}/locations/{location}`.query- Required. Single RAG retrieve query.- Throws:
ApiException- if the remote call fails
-
asyncRetrieveContextsAsync
public final OperationFuture<AsyncRetrieveContextsResponse,AsyncRetrieveContextsOperationMetadata> asyncRetrieveContextsAsync(AsyncRetrieveContextsRequest request) Asynchronous API to retrieves relevant contexts for a query.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { AsyncRetrieveContextsRequest request = AsyncRetrieveContextsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setQuery(RagQuery.newBuilder().build()) .addAllTools(new ArrayList<Tool>()) .build(); AsyncRetrieveContextsResponse response = vertexRagServiceClient.asyncRetrieveContextsAsync(request).get(); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
asyncRetrieveContextsOperationCallable
public final OperationCallable<AsyncRetrieveContextsRequest,AsyncRetrieveContextsResponse, asyncRetrieveContextsOperationCallable()AsyncRetrieveContextsOperationMetadata> Asynchronous API to retrieves relevant contexts for a query.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { AsyncRetrieveContextsRequest request = AsyncRetrieveContextsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setQuery(RagQuery.newBuilder().build()) .addAllTools(new ArrayList<Tool>()) .build(); OperationFuture<AsyncRetrieveContextsResponse, AsyncRetrieveContextsOperationMetadata> future = vertexRagServiceClient.asyncRetrieveContextsOperationCallable().futureCall(request); // Do something. AsyncRetrieveContextsResponse response = future.get(); } -
asyncRetrieveContextsCallable
Asynchronous API to retrieves relevant contexts for a query.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { AsyncRetrieveContextsRequest request = AsyncRetrieveContextsRequest.newBuilder() .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString()) .setQuery(RagQuery.newBuilder().build()) .addAllTools(new ArrayList<Tool>()) .build(); ApiFuture<Operation> future = vertexRagServiceClient.asyncRetrieveContextsCallable().futureCall(request); // Do something. Operation response = future.get(); } -
listLocations
public final VertexRagServiceClient.ListLocationsPagedResponse listLocations(ListLocationsRequest request) Lists information about the supported locations for this service.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); for (Location element : vertexRagServiceClient.listLocations(request).iterateAll()) { // doThingsWith(element); } }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
listLocationsPagedCallable
public final UnaryCallable<ListLocationsRequest,VertexRagServiceClient.ListLocationsPagedResponse> listLocationsPagedCallable()Lists information about the supported locations for this service.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); ApiFuture<Location> future = vertexRagServiceClient.listLocationsPagedCallable().futureCall(request); // Do something. for (Location element : future.get().iterateAll()) { // doThingsWith(element); } } -
listLocationsCallable
Lists information about the supported locations for this service.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { ListLocationsRequest request = ListLocationsRequest.newBuilder() .setName("name3373707") .setFilter("filter-1274492040") .setPageSize(883849137) .setPageToken("pageToken873572522") .build(); while (true) { ListLocationsResponse response = vertexRagServiceClient.listLocationsCallable().call(request); for (Location element : response.getLocationsList()) { // doThingsWith(element); } String nextPageToken = response.getNextPageToken(); if (!Strings.isNullOrEmpty(nextPageToken)) { request = request.toBuilder().setPageToken(nextPageToken).build(); } else { break; } } } -
getLocation
Gets information about a location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build(); Location response = vertexRagServiceClient.getLocation(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
getLocationCallable
Gets information about a location.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build(); ApiFuture<Location> future = vertexRagServiceClient.getLocationCallable().futureCall(request); // Do something. Location response = future.get(); } -
setIamPolicy
Sets the access control policy on the specified resource. Replacesany existing policy.Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); Policy response = vertexRagServiceClient.setIamPolicy(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
setIamPolicyCallable
Sets the access control policy on the specified resource. Replacesany existing policy.Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { SetIamPolicyRequest request = SetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setPolicy(Policy.newBuilder().build()) .setUpdateMask(FieldMask.newBuilder().build()) .build(); ApiFuture<Policy> future = vertexRagServiceClient.setIamPolicyCallable().futureCall(request); // Do something. Policy response = future.get(); } -
getIamPolicy
Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { GetIamPolicyRequest request = GetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setOptions(GetPolicyOptions.newBuilder().build()) .build(); Policy response = vertexRagServiceClient.getIamPolicy(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
getIamPolicyCallable
Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { GetIamPolicyRequest request = GetIamPolicyRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .setOptions(GetPolicyOptions.newBuilder().build()) .build(); ApiFuture<Policy> future = vertexRagServiceClient.getIamPolicyCallable().futureCall(request); // Do something. Policy response = future.get(); } -
testIamPermissions
Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error.Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { TestIamPermissionsRequest request = TestIamPermissionsRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .addAllPermissions(new ArrayList<String>()) .build(); TestIamPermissionsResponse response = vertexRagServiceClient.testIamPermissions(request); }- Parameters:
request- The request object containing all of the parameters for the API call.- Throws:
ApiException- if the remote call fails
-
testIamPermissionsCallable
public final UnaryCallable<TestIamPermissionsRequest,TestIamPermissionsResponse> testIamPermissionsCallable()Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a `NOT_FOUND` error.Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library try (VertexRagServiceClient vertexRagServiceClient = VertexRagServiceClient.create()) { TestIamPermissionsRequest request = TestIamPermissionsRequest.newBuilder() .setResource( EndpointName.ofProjectLocationEndpointName( "[PROJECT]", "[LOCATION]", "[ENDPOINT]") .toString()) .addAllPermissions(new ArrayList<String>()) .build(); ApiFuture<TestIamPermissionsResponse> future = vertexRagServiceClient.testIamPermissionsCallable().futureCall(request); // Do something. TestIamPermissionsResponse response = future.get(); } -
close
public final void close()- Specified by:
closein interfaceAutoCloseable
-
shutdown
public void shutdown()- Specified by:
shutdownin interfaceBackgroundResource
-
isShutdown
public boolean isShutdown()- Specified by:
isShutdownin interfaceBackgroundResource
-
isTerminated
public boolean isTerminated()- Specified by:
isTerminatedin interfaceBackgroundResource
-
shutdownNow
public void shutdownNow()- Specified by:
shutdownNowin interfaceBackgroundResource
-
awaitTermination
- Specified by:
awaitTerminationin interfaceBackgroundResource- Throws:
InterruptedException
-