Build your own Jarvis

2 min read
Your own Jarvis from zen8labs

This is very simple version of building your own Jarvis basing on what we have today. The Jarvis here can recognize and do some commands like showing the lunch menu, display menu of a specific day… etc. It’s less than a prototype but it can be the demo of what we can do by combining:

  • Speech recognize: It’s much easier today with Apple, Google and some others open the SDK. Many languages are supported but English is the best, of course.
  • Natural language understanding (NLU): Most of big tech companies are working on the promising system like LOUS.ai (Microsoft), Watson (IBM)… I use Wit.ai just because of its simple of use. These systems created the base model, our task is just inserting more data to train the machine with a specific topic.
  • Natural language processing (NLP): It’s actually the lower level of NLU but it could help. Google is in the best with cloud base service https://cloud.google.com/natural-language/, that can analyze the syntax and sentiment. It’s really helpful while we combine the NLU and NLP. We know the intent of the sentence as well as sentiment, it’s a guide to have more human react (with emotion).
  • Text to speech: It’s an easy job, there are a lot of services help our Jarvis speak naturally like Amazon echo.

We can do somethings base on this code. Objectively, we can connect it with other things like laptop, IoT server… to do more jobs such as sending the message, turning on the light… etc. Technically, we can have better design to open for the possible command / intent, and think about the serverless jobs.

I hope I can do further in the next demo. For more insights have a look here!

The presentation and source code are here: https://github.com/hiennvn/simple-jarvis

Related posts

Learn how to write real DAO integration tests using Testcontainers, Spring Boot, JUnit 5, and PostgreSQL—covering setup, best practices, and CI/CD integration.
3 min read

Introduction Odoo’s modular architecture is one of the main reasons for its flexibility and popularity. A crucial feature that makes this modularity possible is inheritance. Inheritance in Odoo allows developers to customize and extend existing models and views without altering the core codebase, ensuring upgradability and clean code management. In my blog, I shall explore two

3 min read
Have you ever considered the importance of database connection pooling? Here we should you the information you need to know for a database connection pool.
3 min read