Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 814 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 814 Bytes

Agent Selector

Problem Statement

You are given the following data for agents

agent
is_available
available_since (the time since the agent is available)
roles (a list of roles the user has, e.g. spanish speaker, sales, support etc.)

When an issue comes in we need to present the issue to 1 or many agents based on an agent selection mode. An agent selection mode can be all available, least busy or random. In “all available mode” the issue is presented to all agents so they pick the issue if they want. In least busy the issue is presented to the agent that has been available for the longest. In random mode we randomly pick an agent. An issue also has one or many roles (sales/support e.g.). Issues are presented to agents only with matching roles.