Aaron
Aaron
1. **Summary** - After letting a network run for a while, it will crash with some "Thread-pool-..." error. To make it work again, the whole network needs to be restarted....
In case one would like to develop a bot capable of using multiple languages, there should be a language model for each language. This way, if a language switch is...
While working on a bot model, I noticed two things. First of all, each restart of the bot (and thus each re-training of the NLP model) causes the recognition scores...
When using following training examples: ```python confirmation_intent = bot.new_intent('confirmation_intent', [ 'yes', 'yeah', 'of course', 'i am happy to say yes' ]) rejection_intent = bot.new_intent('rejection_intent', [ 'no', 'nah', 'never', 'no i...
Currently, global states only allow linear conversations to take place. In case of branching (e.g. 1 state with 2 different transitions), the global state will act arbitrarily. Goal: Global states...
In light of adding a speech2text component (see #25 and #39), in might also be interesting to add the possibility to specify multiple speech2text models based on the chosen language....
Currently, when sending a voice message, the user will only receive the bot's answer. Yet, the user is not aware of how their message got transcribed. It might be helpful...
I'd like to propose some ideas of (specific) events that could cause a jump to another state which I feel might be helpful: - [ ] 1. Intent but no...
If a model contains a class with an attribute named "ID", this will generate sql alchemy code containing an error. The problem stems from the sql alchemy generator always adding...
Currently, the default primary key will always be an auto-generated ID. There is no possibility to set other attributes as primary key.