jayeshdesai4520 / chatbot-ng-internal

MIT License
3 stars 0 forks source link

Create predefined profiles #42

Open anbo-de opened 3 years ago

anbo-de commented 3 years ago

Description

We should provide a number of predefined component profiles to enable the user for easily using the power of the chatbot.

DoD

Definition of profiles

The profiles (array) should be defined like this:

const predefined_profiles = 
  [
    {
       "name": "English-QAnswer-DBpedia",
       "components": [...],
       "examples": ["What is the capital of Germany?", "What is the birthday of Barack Obama?"]
    },
    {
       "name": "Multilingual-DBpedia",
       "components": [...],
       "examples": [...]
    },
   {
       "name": "Realnames-of-superheros",
       "components": [...],
       "examples": ["What is the real name of Batman?", "What is the real name of HHulk?", "What is the real name of Superman?"]
   }
  ]
anbo-de commented 3 years ago

@Perevalov Please add the component's names to the lists.