@Override
 public Response getTopQuestions(String conversationId) throws NotFoundException {
   List<Question> topQuestions = topQuestionsStore.getTopQuestions();
   tracking.redisplayedTopQuestions(conversationId, topQuestions);
   return getOkResponse(new TopQuestionsResponse(topQuestions));
 }