My AI agent is unable to handle more than 10 agents conversation at a time
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
Hi Experts,
I have an AI agent, and it gives me correct result when I have 1 active conversation in VA. When I initiate more than 10 conversations or when 10 people are using the same agent for their answers. Even if different users are initiating conversation, this agent is getting stuck after a max limit of around 10 active conversations.
Did anyone face this issue? because if an AI agent is created, ideally entire organization will use it. Is there something am missing to setup?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
Hi @banditapani
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/dratulgrover [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
ADDITIONAL INFORMATION :
Issue
If we call an agent with below code
{
triggerConfigId: "",
targetRecordId: userInput,
agentId: agentId,
conversationUser: currentUserId,
objective: userInput
}
var agentResponse = new sn_aia.AiAgentRuntimeUtil().startAiAgentConversation(payload);
Then if we run this code >4-5 times in a queue, i.e. trigger agent around 5 times, 5 ai agent executions start and 5 sys_cs_conversations get created but when we trigger for 6th time, no execution or conversation is created
This is an issue as we may be calling the agent with static user sys id and agent can be used by multiple users at same time causing multiple executions

