Agents in Dialogflow

--> to the BOTwiki - The Chatbot Wiki

"Agents" are best described as Natural Language Understanding (NLU) modules. These modules can be integrated into an app, website, product or service and transfer text or spoken user queries into meaningful data. This transformation occurs when a user's utterance matches anintent in the agent.

The matching intent then delivers an answer to the user.

This answer can be a simple text or a spoken confirmation or a webhook answer. Type-related parameters (e.g. temperature, date, locations) can be recognized from the query to create the answer. Actions" are used to fill the parameters with actual values. Requests of the user can be forwarded to external services to fill the desired parameters with values.

An agent is the central entry point of a Dialogflow application. All intents with the corresponding utterances, responses and actions are maintained via the agent.

Creating an Agent

The creation of an agent must be done on the Dialogflow start page. The creation via a REST-API interface is not intended.

 

Example of how to create agents in Dialogflow

 

> Back to BOTwiki - The Chatbot Wiki