[][src]Struct gcp_client::google::cloud::dialogflow::v2::agents_client::AgentsClient

pub struct AgentsClient<T> { /* fields omitted */ }

Agents are best described as Natural Language Understanding (NLU) modules that transform user requests into actionable data. You can include agents in your app, product, or service to determine user intent and respond to the user in a natural way.

After you create an agent, you can add [Intents][google.cloud.dialogflow.v2.Intents], [Contexts][google.cloud.dialogflow.v2.Contexts], [Entity Types][google.cloud.dialogflow.v2.EntityTypes], [Webhooks][google.cloud.dialogflow.v2.WebhookRequest], and so on to manage the flow of a conversation and match user input to predefined intents and actions.

You can create an agent using both Dialogflow Standard Edition and Dialogflow Enterprise Edition. For details, see Dialogflow Editions.

You can save your agent for backup or versioning by exporting the agent by using the [ExportAgent][google.cloud.dialogflow.v2.Agents.ExportAgent] method. You can import a saved agent by using the [ImportAgent][google.cloud.dialogflow.v2.Agents.ImportAgent] method.

Dialogflow provides several prebuilt agents for common conversation scenarios such as determining a date and time, converting currency, and so on.

For more information about agents, see the Dialogflow documentation.

Implementations

impl<T> AgentsClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn get_agent<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetAgentRequest>
) -> Result<Response<Agent>, Status>
[src]

Retrieves the specified agent.

pub async fn set_agent<'_>(
    &'_ mut self,
    request: impl IntoRequest<SetAgentRequest>
) -> Result<Response<Agent>, Status>
[src]

Creates/updates the specified agent.

pub async fn delete_agent<'_>(
    &'_ mut self,
    request: impl IntoRequest<DeleteAgentRequest>
) -> Result<Response<()>, Status>
[src]

Deletes the specified agent.

pub async fn search_agents<'_>(
    &'_ mut self,
    request: impl IntoRequest<SearchAgentsRequest>
) -> Result<Response<SearchAgentsResponse>, Status>
[src]

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.

pub async fn train_agent<'_>(
    &'_ mut self,
    request: impl IntoRequest<TrainAgentRequest>
) -> Result<Response<Operation>, Status>
[src]

Trains the specified agent.

Operation <response: [google.protobuf.Empty][google.protobuf.Empty]>

pub async fn export_agent<'_>(
    &'_ mut self,
    request: impl IntoRequest<ExportAgentRequest>
) -> Result<Response<Operation>, Status>
[src]

Exports the specified agent to a ZIP file.

Operation <response: [ExportAgentResponse][google.cloud.dialogflow.v2.ExportAgentResponse]>

pub async fn import_agent<'_>(
    &'_ mut self,
    request: impl IntoRequest<ImportAgentRequest>
) -> Result<Response<Operation>, Status>
[src]

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.

Operation <response: [google.protobuf.Empty][google.protobuf.Empty]>

pub async fn restore_agent<'_>(
    &'_ mut self,
    request: impl IntoRequest<RestoreAgentRequest>
) -> Result<Response<Operation>, Status>
[src]

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.

Operation <response: [google.protobuf.Empty][google.protobuf.Empty]>

pub async fn get_validation_result<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetValidationResultRequest>
) -> Result<Response<ValidationResult>, Status>
[src]

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

Trait Implementations

impl<T: Clone> Clone for AgentsClient<T>[src]

impl<T> Debug for AgentsClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for AgentsClient<T>

impl<T> Send for AgentsClient<T> where
    T: Send

impl<T> Sync for AgentsClient<T> where
    T: Sync

impl<T> Unpin for AgentsClient<T> where
    T: Unpin

impl<T> !UnwindSafe for AgentsClient<T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]