Interface AgentsGrpc.AsyncService (4.47.0)

public static interface AgentsGrpc.AsyncService

Service for managing Agents.

Methods

deleteAgent(DeleteAgentRequest request, StreamObserver<Empty> responseObserver)

public default void deleteAgent(DeleteAgentRequest request, StreamObserver<Empty> responseObserver)

Deletes the specified agent.

Parameters
NameDescription
requestDeleteAgentRequest
responseObserverio.grpc.stub.StreamObserver<Empty>

exportAgent(ExportAgentRequest request, StreamObserver<Operation> responseObserver)

public default void exportAgent(ExportAgentRequest request, StreamObserver<Operation> responseObserver)

Exports the specified agent to a ZIP file. This method is a long-running operation. The returned Operation type has the following method-specific fields:

Parameters
NameDescription
requestExportAgentRequest
responseObserverio.grpc.stub.StreamObserver<Operation>

getAgent(GetAgentRequest request, StreamObserver<Agent> responseObserver)

public default void getAgent(GetAgentRequest request, StreamObserver<Agent> responseObserver)

Retrieves the specified agent.

Parameters
NameDescription
requestGetAgentRequest
responseObserverio.grpc.stub.StreamObserver<Agent>

getValidationResult(GetValidationResultRequest request, StreamObserver<ValidationResult> responseObserver)

public default void getValidationResult(GetValidationResultRequest request, StreamObserver<ValidationResult> responseObserver)

Gets agent validation result. Agent validation is performed during training time and is updated automatically when training is completed.

Parameters
NameDescription
requestGetValidationResultRequest
responseObserverio.grpc.stub.StreamObserver<ValidationResult>

importAgent(ImportAgentRequest request, StreamObserver<Operation> responseObserver)

public default void importAgent(ImportAgentRequest request, StreamObserver<Operation> responseObserver)

Imports the specified agent from a ZIP file. Uploads new intents and entity types without deleting the existing ones. Intents and entity types with the same name are replaced with the new versions from ImportAgentRequest. After the import, the imported draft agent will be trained automatically (unless disabled in agent settings). However, once the import is done, training may not be completed yet. Please call TrainAgent and wait for the operation it returns in order to train explicitly. This method is a long-running operation. The returned Operation type has the following method-specific fields:

  • metadata: An empty Struct message
  • response: An Empty message The operation only tracks when importing is complete, not when it is done training. Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters
NameDescription
requestImportAgentRequest
responseObserverio.grpc.stub.StreamObserver<Operation>

restoreAgent(RestoreAgentRequest request, StreamObserver<Operation> responseObserver)

public default void restoreAgent(RestoreAgentRequest request, StreamObserver<Operation> responseObserver)

Restores the specified agent from a ZIP file. Replaces the current agent version with a new one. All the intents and entity types in the older version are deleted. After the restore, the restored draft agent will be trained automatically (unless disabled in agent settings). However, once the restore is done, training may not be completed yet. Please call TrainAgent and wait for the operation it returns in order to train explicitly. This method is a long-running operation. The returned Operation type has the following method-specific fields:

  • metadata: An empty Struct message
  • response: An Empty message The operation only tracks when restoring is complete, not when it is done training. Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters
NameDescription
requestRestoreAgentRequest
responseObserverio.grpc.stub.StreamObserver<Operation>

searchAgents(SearchAgentsRequest request, StreamObserver<SearchAgentsResponse> responseObserver)

public default void searchAgents(SearchAgentsRequest request, StreamObserver<SearchAgentsResponse> responseObserver)

Returns the list of agents. Since there is at most one conversational agent per project, this method is useful primarily for listing all agents across projects the caller has access to. One can achieve that with a wildcard project collection id "-". Refer to List Sub-Collections.

Parameters
NameDescription
requestSearchAgentsRequest
responseObserverio.grpc.stub.StreamObserver<SearchAgentsResponse>

setAgent(SetAgentRequest request, StreamObserver<Agent> responseObserver)

public default void setAgent(SetAgentRequest request, StreamObserver<Agent> responseObserver)

Creates/updates the specified agent. Note: You should always train an agent prior to sending it queries. See the training documentation.

Parameters
NameDescription
requestSetAgentRequest
responseObserverio.grpc.stub.StreamObserver<Agent>

trainAgent(TrainAgentRequest request, StreamObserver<Operation> responseObserver)

public default void trainAgent(TrainAgentRequest request, StreamObserver<Operation> responseObserver)

Trains the specified agent. This method is a long-running operation. The returned Operation type has the following method-specific fields:

Parameters
NameDescription
requestTrainAgentRequest
responseObserverio.grpc.stub.StreamObserver<Operation>