Antriksh Agarwal

Results 32 comments of Antriksh Agarwal

I'm having trouble with the run function in plugin.py file. Specifically getting the sub_command Also, LanguageParser file sounds like a better idea. I was modifying the find_action function and making...

I want suggestions on this: this is a sample intent that the snips_nlu engine will be taking as input for pre-training. It will be requiring the types of statements/queries that...

@pnhofmann > I suggest we could start with something really basic: > > ``` > { > "entities": {}, > "intents": { > "roll": { > "utterances": [ > {...

> > What happens to commands like "near me", "dictionary" (which require a parameter no matter what) ? > > We'll just feed all commands the complete user-typed string -...

Also, if I remove the `run(self, jarvis, s):` function (or the function call), will it make a difference ?

``` def run(self, jarvis, s): """Entry point if this plugin is called""" _, _, sub_command = jarvis.find_action(s, self.get_plugins().keys()) if sub_command == "None": # run default if self.is_callable_plugin(): self._backend[0](jarvis.get_api(), s) else:...

Snips-NLU has been implemented and working since a long time, at least in dev. I can see it understanding the correct command most of the times even when I give...

I was trying to add a home server of sorts in Jarvis, but for that I require the super/parent class as BaseHttpRequestHandler for the HomeServer class, something like this: ```...

@pnhofmann I think even if we are using jarvis with the command line interface, we should be able to start and stop the home server. So, I think currently there...

@pnhofmann I gave this more thought, shouldn't all the UI be 100% independent of each other ? Shouldn't we be able to enable chat/voice/cmd line interface all independently of themselves...