Manthan Dave
Manthan Dave
The code in question is: ```java // snip -- ledgerResult = client.ledger(LedgerRequestParams.builder() .ledgerIndex(LedgerIndex.of(UnsignedInteger.valueOf(index))) .transactions(true) .build()); ``` Exception is: ``` Caused by: java.lang.NullPointerException: Cannot invoke "com.fasterxml.jackson.databind.JsonNode.toString()" because "result" is null at...
Validator keys tool currently supports generating of the validator token using a private key that lives on the disk. For security, we're storing keys over HSM and MPC, that is...
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
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,...
This will require massive re-design. Change architecture to use EventEmitter functionality. This will allow loosely coupled resolvers which then in future can be replaced with custom ones if needed. This...
Current logic relies on having an upper case letter followed by a whitespace after a period. So the following is fine: ``` Hello. How are you doing? ``` While this...