Guillermo Acilu
- Total activity 31
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 17
Activity overview
Latest activity by Guillermo Acilu-
Guillermo Acilu created an article,
What does the term Main Intent mean?
If an App contains the main Intent, it will be executed as soon as a user opens a conversation. The main Intent is not mandatory. If it is not present, the system will not trigger any errors. Usual...
-
Guillermo Acilu created an article,
What is Intent Error Handling Process?
The onError method is added to properly handle errors, either with the platform or with the developers' Apps. The onError method is executed automatically when there is an error in the error stack ...
-
Guillermo Acilu created an article,
What is Intent Prediction Process?
The final step of processing an Intent is to predict the user's next Intent. The FrontM platform does this by going through all the App's Intents and calculating their probability (a co-efficient b...
-
Guillermo Acilu created an article,
What is Intent Resolution Process?
The Intent Resolution Process is only started after an Intent is matched and validated. The goal of this process is to create a response, or a number of responses, for the user. This process is als...
-
Guillermo Acilu created an article,
What is Intent Validation process?
Intent Validation is the process that the framework runs to determine if the conditions within the state Object are the right ones to resolve the matched Intent. It does so by running a method call...
-
Guillermo Acilu created an article,
What is Intent Matching Process?
Intent Matching is the process that the framework performs to determine the Intent of the message just received.The process follows the order described in the diagram below: Firstly, the framework...
-
Guillermo Acilu created an article,
What does Intent Execution Flow mean?
An "Intent" is intention behind a message received by the system, whoever the sender is and whatever the format of the message is. When a message is received, FRAPPs try match the message with a pa...
-
Guillermo Acilu created an article,
What are FrontM.js workflows?
The main mission of the FrontM abstraction layer is to control the flow of an App. The Intents within an App are coded inside an entity called 'Intelligent Code Unit' and are processed following a ...
-
Guillermo Acilu created an article,
What is FrontM.js App Structure?
Each App created with FrontM.js has the same basic structure: The darker boxes are provided by the framework; the lighter boxes are created by the App developer. Abstraction layer The App develope...
-
Guillermo Acilu created an article,
What are some of the important concepts and definitions?
Conversation A conversation is either: an exchange of messages between two or more people; between people and Apps; between Apps and other Apps. The conversation implements a State and behaviour. M...