3

Looking for advice...

I'm working on a personal assistant type application, my own Jarvis.

I've been using Python3 and it's at a point I'm confident to host it on server, but it consists of no commands.

Just a server, communication and other functions.

What process would you use for commands?

As in, would you just have loads of if statements? If so, what about plugins?

I'm using Yapsy as a plugin framework, so I'd like to be able to drop plugin files and build up the command list.

This is why I haven't done commands yet...

Comments
  • 3
    You are supposed to use machine learnimg and natural language for this. There are APIs for the later but not free ones as far as I know.

    If statements will make your Jarvis to be incredible stupid.
  • 0
    machine learning is the smart way to go about it but if you look at sentence structure you might be able to pull out the action and object to do it on. but this is harder than you would figure though, I know from first hand experience here
Add Comment