Author Topic: Content Analysis for Chat  (Read 3629 times)

Offline SisB

  • Jr. Member
  • **
  • Posts: 60
  • Karma: 0
Content Analysis for Chat
« on: November 04, 2009, 11:21:52 PM »
Hi,

Is anyone using some kind of content analyzing and standard response from routing strategies/interaction flows, while a chat interaction waiting in the queue before delivery?

If someone can provide some details around this with or without business processes/strategies, it would be really helpful.

Thank You.

Offline YevgeniyP

  • Jr. Member
  • **
  • Posts: 70
  • Karma: 0
Re: Content Analysis for Chat
« Reply #1 on: November 06, 2009, 07:29:39 AM »
You can do quite a lot of different things with original chat request from the strategy:
- screening. Lookup for some key words in request.
- classifrication. Identification of the category request belongs too.
- autoresponse/progress notification. You can send a message(s) to the client on behalf of the system.
For all these functions you can find appropriate objects in IRD.

Also using PDSK you can implement Chat Autobot.


Offline SisB

  • Jr. Member
  • **
  • Posts: 60
  • Karma: 0
Re: Content Analysis for Chat
« Reply #2 on: November 06, 2009, 09:29:06 PM »
Hello YevgeniyP,
Thank you for your response. It really helped.

I've one more question: when we need to send a message back to the chat client - do we need to write a piece of code & do it through ESP server? Or, is it possible to tell Chat server directly from URS/Strategy to send a given string back to the client.

Thank You.

Offline René

  • Administrator
  • Hero Member
  • *****
  • Posts: 1832
  • Karma: 62
Re: Content Analysis for Chat
« Reply #3 on: November 07, 2009, 11:25:54 AM »
Hello,

It's possible to send chat message directly from routing strategy. This feature is supported starting Multimedia release 7.2.

It's necessary to make following changes in the configuration to make it working properly:
- define ESP port on Chat Server side (section "esp-settings", option "esp-server-port"
- add Chat Server to Interaction Server connections

Then you can use External Service block in your strategy with following parameters to send chat message:

  Application Type: Chat Server
  Application Name: [i]<name of Chat Server application>[/i]
  Service: Chat
  Method: Message

  Parameters:
    MessageText = [i]<text of message>[/i]
    Nickname = [i]<name that will be displayed to customer>[/i]

R.

Offline SisB

  • Jr. Member
  • **
  • Posts: 60
  • Karma: 0
Re: Content Analysis for Chat
« Reply #4 on: November 09, 2009, 01:18:08 PM »
René,

Awesome!

Thank you very much for the help.