Coder Social home page Coder Social logo

roymanoj / agent-human-handoff-nodejs Goto Github PK

View Code? Open in Web Editor NEW

This project forked from dialogflow/agent-human-handoff-nodejs

0.0 0.0 0.0 24 KB

This sample consists of a simple API.AI agent, a node.js server and a web interface that together demonstrate an approach for handing text-based conversations from an API.AI agent to a human operator.

License: Apache License 2.0

JavaScript 67.80% HTML 32.20%

agent-human-handoff-nodejs's Introduction

API.AI: Agent to Human Handoff Sample

This sample consists of a simple API.AI agent, a node.js server and a web interface that together demonstrate an approach for handing text-based conversations from an API.AI agent to a human operator.

This extensively commented sample is designed as a learning tool and a platform for experimentation, not a finished solution.

Features

  • Agent will escalate to a human operator on-demand
  • Agent will escalate to a human operator after repeated failure to match an intent
  • Server routes conversation between agent and human operator depending on context
  • Server supports multiple concurrent conversations between customer, agent and operator
  • Customer web client supports real-time chat with agent or operator
  • Operator web client supports real-time observation and participation in multiple customer conversations
  • Operator web client demonstrates alerting of operator in case of customer escalation

Limitations

  • There is no authentication of customers or operators. In this limited demonstration, communication between users is not secure. This code is provided as an example, not a finished solution.
  • Active conversations are stored in-memory with no on-disk persistence (though code could easily be modified to support this).
  • Operators can only monitor and communicate with customers that have subsequently connected. Previously connected customers are ignored.
  • User interface is very rudimentary.

Technology Stack

Setup Instructions

Part A: Steps for API.AI

  1. Log in to the API.AI Console.
  2. Create a new agent using the dropdown at the top of the left hand menu, next to the gear icon. If the menu is not visible, click the icon with three horizontal lines to open it.
  3. Type a name for your agent. Any name will work, but agent-human-handoff-sample is suggested.
  4. Click Save to save the project, and wait for it to complete.
  5. Click the gear icon near the top of the menu to see the project settings.
  6. Click the Export and Import tab.
  7. Click RESTORE FROM ZIP. Follow the directions to restore from the HumanHandoffDemonstrationAgent.zip in this repo.

Part B: Steps for Node.js

  1. Clone or download the contents of this repo to a location on disk.
  2. Ensure at least Node.js v6.9.1 is installed.
  3. Within the repo directory, type npm install to install all of the project's dependencies.
  4. To connect to your agent, you will need your API.AI client access token. To obtain it, open the project you created in Part A in the API.AI console. Click the gear icon near the top of the menu to see the project settings. Copy the Client access token from the API keys section of the General tab.
  5. To start the server, enter APIAI_ACCESS_TOKEN=<client access token> node app.js from within the repo directory, where <client access token> is replaced with the access token you copied in the previous step.
  6. You should see the text Listening on *:3000. The server is now ready to use.

Note: If you see the error Error: listen EADDRINUSE :::3000 when starting the server, there is already a process listening on port 3000 on your system. Identify and close that process, or edit app.js to connect to a different port.

Part C: Demonstration

  1. With the server running, open http://localhost:3000/operator in your browser to open the Operator interface. You should see a mostly empty page with the word 'Operator' and a chat form.
  2. In another browser tab, open http://localhost:3000/customer. After loading, the client should immediately connect to the API.AI agent. You'll see the welcome message from the agent appear beneath the Customer title.
  3. Return to the Operator interface. You will see that a tab has appeared that represents the conversation with this customer. It will currently be empty.
  4. Return to the Customer interface. You can use the form to chat with the agent by clicking Send or hitting return. To demonstrate functional conversation, try asking it what is your purpose?.
  5. Open the Operator interface. You will see the history of messages between the customer and the agent. If you attempt to enter a message, you will see a warning that the customer has not yet been escalated.
  6. Open the Customer interface. To request an operator, ask a variation of let me talk to a person. The Operator interface will pop up a dialog box to alert the operator that a new escalation has occurred.
  7. If the Operator interface took control as a result of alert dialog, return to the Customer interface. You will see the system has responded with an introduction message from the operator. After this point, the operator can respond to the customer's messages freely.
  8. Still on the Customer interface, send another message (for example, I'm having difficulty with my product).
  9. Open the Operator interface. You will see the customer's message. You can use the form to respond.
  10. Switch back to the Customer interface. If you responded to their message in the previous step, you will see your response in the chat log.
  11. Open a new browser tab and go to http://localhost:3000/customer.
  12. In this new Customer interface, ask the agent something it doesn't understand (e.g. I would like to book a flight). The agent will ask for clarification.
  13. Switch to the Operator interface. You will see that a second tab has appeared, representing the second customer. Click this tab to view the conversation logs.
  14. Switch back to the new Customer interface and enter another arbitrary statement (e.g. I want to book a flight). With the agent unable to determine the customer's intent twice in a row, it will automatically escalate to an operator.

Explanation

  • The server communicates with the clients via Socket.IO. It initially sends all customer messages to API.AI and returns the responses to the customer.
  • The server monitors the context property of API.AI's response for a specific context named 'operator_request'. When it sees this context, it stops routing this customer's messages to API.AI and allows the operator to respond.
  • The API.AI agent can apply this context in two modes.
    • In one mode, it is applied to the Output contexts of the Operator Request intent, thus switching the customer to an operator when they explicitly ask for it.
    • In the other mode, it is applied to the Output contexts of the intent Default Fallback Intent - fallback. To see this intent in the API.AI interface, click the downward arrow on the intent named Default Fallback Intent. Because this intent is specified as the fallback intent for the default fallback intent, it will be triggered only if the user has failed to provide a matchable input twice in a row. The first unmatched input triggers the Default Fallback Intent. The second unmatched input triggers Default Fallback Intent - fallback. This causes the operator_request context to be applied, triggering escalation by the server.

Part D: Creating your own implementation

You can modify this sample as a basis for your own implementation, but please be aware of the limitations expressed above.

When creating your own API.AI agent, you may wish to make use of the Support prebuilt agent. This agent provides a framework for answering common support-related inquiries and providing a channel for users to contact you.

References and How to report bugs

  • If you find any issues, please open a bug here on GitHub.
  • Questions are answered on StackOverflow.

How to make contributions?

Please read and follow the steps in the CONTRIBUTING.md.

License

See LICENSE.md.

Terms

Your use of this sample is subject to, and by using or downloading the sample files you agree to comply with, the Google APIs Terms of Service.

agent-human-handoff-nodejs's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.