Many teams use GPT primarily for generating responses. But GPT can also be used to analyze user messages and automatically route them to the right Autom. This turns GPT into a smart router that directs requests without manual intervention.
Objective
The goal is to let GPT interpret user input and trigger different Autom paths depending on the message content.
Example Scenarios
- User says: βMy computer is running very slow.β β GPT routes to IT ticket creation Autom
- User says: βHow do I get my payslip?β β GPT routes to HR Autom
Implementation Approach
- Use the Run action to capture the GPT response.
- Apply conditional logic on the
Responsevariable (e.g.,##response.contains(...)##). - Configure IF blocks to route into the correct Autom branch:
##response.contains('IT')##β run Create Ticket Autom##response.contains('HR')##β run Send HR Form Autom
Discussion Points
- Have others experimented with more advanced routing using GPT?
- Are they enriching prompts or combining multiple checks for accuracy?
- How do teams handle cases where user input doesnβt match any defined condition?
Call to Action
Weβd love to hear how others in the community are applying GPT for routing.
Sharing examples, tips, or blockers can help everyone build faster IT triage, smarter HR flows, and even customer support automation.