talkify
talkify copied to clipboard
Talkify is an open source framework with an aim to standardize and model conversational AI enabling development of personal assistants and chat bots. The mission of this framework is to make developin...
Users want access to as much AI as they can get, they dont want to manage 50 accounts, they want the fastest AI they want the cheapest AI, and you...
how to check if the bot dont have a response for an input? It just triggers the `how_skill`
Hi, Sometimes, bot is not selecting the skill related to the instruction given... So I was wondering if there were some kind of priorities or order when defining skills ?...
When I use my own classifier, I want to supply extra information to the resolved skill about the classification. Currently this information is lost. Maybe retain classification information supplied in...
- Allows passing multiple text input for a single topic for training - Requires talkify-natural-classifier version to be higher than 1.0.4
When training my bot I want to be able to provide an array of terms to match to one skill. It is really awkward to create a TrainingDocument for every...
Currently resolve method supports this: ``` bot.resolve(id, text, callback); ``` It should also support this: ``` bot.resolve(messageObject, callback); ```
Filters are functions that can be run before the request makes it to the skills. This is pre-classification so the filter can get the basic metadata like the sentence etc....
Bot needs to support multiple classifiers to allow more complex classification. After this feature, it should continue to support single classifier.
Currently all queries are treated as multi-sentence and hence it expects multiple queries to be passed in. Sometimes to avoid the complexity of writing skills that can handle multi-sentence queries,...