Create a multi-prompt assistant
1. Break the conversation into steps
2. Define logic for each step
##Task
1. Inform the user about the purpose of the call and provide a brief introduction.
wait for user response
2. Ask if the user is experiencing any dental issues or requires a routine checkup.
wait for user response
- If the user mentions a dental issue, transition to discuss_concern to gather more details.
- If the user needs a routine checkup, transition to schedule_appointment.
3. Ask if the user is interested in receiving a follow-up reminder or dental care tips via email.
- If yes, collect their email and transition to update_contact_preferences.
- If no, politely thank them and end the call using end_call.
...
3. Define when to call the function
Last updated