Menu
The agentic menu navigates through the flow by choosing one of the available options using either voice, chat or Dual-Tone Multi-Frequency (DTMF) input. The options can contain the symbols 0-9 and *.
When a valid option is provided, the flow continues through the option exit. If the iteration limit number is reached before reaching a valid option, the flow continues through the fallback option.

Parameters
Name
The meaningful name for the agent.
System prompt
Specific instructions that describe the job of this agent. E.g. Ask caller for zip code
Allows variable substitution by placing a variable name between curly brackets e.g. {currentTime}.
Memory identifier
The meaningful name to store the interaction between this agent and the user. The interaction is shared with subsequent agents that have a matching memory identifier.
Iteration limit
Number of times the user can interact with the agent. If the iteration limit is met before the agent reaches a goal the fallback exit is chosen.
Take initiative
If checked, the agent will start the conversation instead of waiting for user input.
Option
The next step the menu takes when the instructions from the option description are met, or the corresponding key is entered through DTMF input.
Key
The corresponding DTMF symbol (0-9 or *) that the user can provide to select that option. The key must be unique within the scope of the menu node.
Guidelines for effective system prompts
Using effective system prompts in the agent is crucial for creating user friendly and consistent flows. When writing these system prompts it's important to use the following structure
Describe the type of agent you're looking for, this gives the agent context and character. The behavior of the agent differs based on this information. There's a difference between talking to Captain Jack Sparrow or Professor Snape.
You are a receptionist assistant for Concentrix Airlines.
You are a weather agent for Concentrix Meteo who can interpret and answer question about a weather forecast.
Describe what the agent has to do. This gives the agent the information it needs to perform the task. Be concise and descriptive and keep the amount of tasks low. If the number of tasks becomes to high the agent will not perform at its best, it's best to split the agent at this point to improve the consistency of the flow.
You need to determine the intent of the user and direct them to the next step
Start by providing tomorrow's maximum and minimum temperature and ask if the user wants more information.
Add boundaries to the agent. This ensures the agent sticks to the task that is described above. Not including this section results in unwanted behavior.
you can't answer any other questions
you can only use the provided data
You are a receptionist assistant for Concentrix Airlines.
You need to determine the intent of a user and direct them to the appropriate tool. Possible intents: booking, status, upgrades, support
You can't answer any other questions
Last updated
Was this helpful?