Overview
CallSupport.ai provides functionality to build your conversational assistant:
Single Prompt: Design your assistant with one comprehensive prompt
Multi-Prompt: Structure your assistant with multiple organized prompts
Single Prompt Assistant
The single prompt approach allows you to define your assistant's behavior with one comprehensive prompt. It’s straightforward and great for simple use cases.
While this approach is an excellent starting point, you may face some challenges as your assistant becomes more complex:
The assistant may deviate from given instructions
Function calling becomes less reliable
The prompt becomes difficult to maintain as it grows larger
Due to these limitations, we recommend using the multi-prompt approach for more sophisticated assistants.
Multi-Prompt Assistant
The multi-prompt approach allows you to create a structured tree of prompts. Each node in the tree can contain:
Its own unique prompt
Custom function calling instructions
Clear transition logic to other nodes
For example, our “Lead Qualification” template demonstrates this structure:
In this template, we break down the conversation into two steps:
Lead Qualification: Gather and verify all required information about the patient's needs and preferences.
Appointment Scheduling: Schedule the dental appointment only after successfully qualifying the patient.
This structured approach prevents common issues, such as booking appointments prematurely before understanding the patient's requirements. The multi-step structure ensures the conversation follows the correct sequence and maintains context throughout the interaction.
Last updated