2

I'm trying to find out how AI can help with efficient customer service, in fact call routing to the right agent. My usecase is given context of a query from a customer and agents' expertise, how can we do the matching?

Generally, how is this problem solved? What sub-topic within AI is suitable for this problems? Classification, recommender systems, ...? Any pointers to open-source projects would be very helpful.

Tina J
  • 973
  • 6
  • 13

2 Answers2

1

This sounds to me like a use case for a chatbot. You would have different intents reflecting the types of user queries that your system can respond to. The intent matching can be done by pattern matching, machine learning (classification), or a combination of the two (hybrid). You can then use the chatbot to ask clarification questions or elicit more information to identify which live agent would be the best person to take over the call. Essentially each live agent would have a list of intents plus added information (such as geographical area etc) which you then compare against the data from the caller to find the best match.

If this is a voice call you'd need to put an ASR system at the front of the pipeline. Chatbots can usually do live-agent handover to then pass control to a human agent at any time in the conversation.

[Disclaimer: I work for a company that operates in exactly that area and whose system works as described above]

Oliver Mason
  • 5,322
  • 12
  • 32
1

AI can transform the customer experience is by providing personalized content. For example, When you see video recommendation on YouTube, you'll know that it's from AI technology. I recommend you to read this article for knowing how they work: A Sentiment-Enhanced Hybrid Recommender System for Movie Recommendation: A Big Data Analytics Framework (abstract, article).

Glorfindel
  • 169
  • 1
  • 5
  • 13
  • Welcome to SE:AI! Could I ask you to provide a quick paragraph on why the fundamentals of a movie recommendation could apply to customer service applications in general? (We especially like answers that discuss the underlying theory.) – DukeZhou Apr 28 '20 at 00:43