List possible chat responses

This endpoint returns the set of possible replies that the chatbot can choose from. Each reply has a category, which is an identifier to link the reply to its associated training data.

Request

Send the following request:

GET /zoo-chatbot/possible-chat-responses

Response

Data is truncated for readability.

Notice that the values of each category match the categories in the training data:

Response
{
  "possibleResponses": [
    {
      "category": "opening-times",
      "reply": "The opening times are Mon - Fri 9am - 7pm every day, including holidays"
    },
    {
      "category": "animal-list",
      "reply": "The zoo has 10 giraffes, 3 elephants, 2 lions and 12 penguins"
    },
    {
      "category": "ticket-prices",
      "reply": "Tickets cost £20 for adults and £10 for children. Refunds are permitted 48 hours or more prior to entry time"
    }
  ]
}