• Stars
    star
    331
  • Rank 127,323 (Top 3 %)
  • Language
    Python
  • License
    MIT License
  • Created about 4 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Jarvis AI is a Python Module which is able to perform task like Chatbot, Assistant etc. It provides base functionality for any assistant application. This JarvisAI is built using Tensorflow, Pytorch, Transformers and other opensource libraries and frameworks.

Header

PythonTensorFlowPyTorch

Hello, folks!

This project is created only for those who are interested in building a Virtual Assistant. Generally, it took lots of time to write code from scratch to build a Virtual Assistant. So, I have built a Library called "JarvisAI", which gives you easy functionality to build your own Virtual Assistant.

Content-

  1. What is JarvisAI?
  2. Prerequisite
  3. Architecture
  4. Getting Started- How to use it?
  5. What it can do (Features it supports)
  6. Future / Request Features
  7. Contribute
  8. Contact me
  9. Donate
  10. Thank me on-

YouTube Tutorial-

Click on the image below to watch the tutorial on YouTube-

Tutorial 1-

JarvisAI Tutorial 1

Tutorial 2-

JarvisAI Tutorial 2

1. What is Jarvis AI?

Jarvis AI is a Python Module that is able to perform tasks like Chatbot, Assistant, etc. It provides base functionality for any assistant application. This JarvisAI is built using Tensorflow, Pytorch, Transformers, and other open-source libraries and frameworks. Well, you can contribute to this project to make it more powerful.

2. Prerequisite

  • Get your Free API key from https://jarvisai.in

  • To use it only Python (> 3.6) is required.

  • To contribute to the project: Python is the only prerequisite for basic scripting, Machine Learning, and Deep Learning knowledge will help this model to do tasks like AI-ML. Read the How to Contribute section of this page.

3. Architecture

The JarvisAI’s architecture is divided into two parts.

  1. User End- It is basically responsible for getting input from the user and after preprocessing input it sends input to JarvisAI’s server. And once the server sends its response back, it produces output on the user screen/system.

  2. Server Side- The server is responsible to handle various kinds of AI-ML, and NLP tasks. It mainly identifies user intent by analyzing user input and interacting with other external APIs and handling user input.

    JarvisAI’s Architecture

4. Getting Started- How to use it?

NOTE: Old version is depreciated use latest version of JarvisAI

4.1. Installation-

  • Install the latest version-

     pip install JarvisAI  

Optional Steps (Common Installation Issues)-

  • [Optional Step] If Pyaudio is not working or not installed you might need to install it separately-

    In the case of Mac OSX do the following:

     brew install portaudio  
     pip install pyaudio  
    

In the case of Windows or Linux do the following:

  • Download pyaudio from: lfd.uci.edu/~gohlke/pythonlibs/#pyaudio

  • pip install PyAudio-0.2.11-cp310-cp310-win_amd64.whl

4.2. Code You Need-

You need only this piece of code-

def custom_function(*args, **kwargs):
    command = kwargs.get('query')
    entities = kwargs.get('entities')
    print(entities)
    # write your code here to do something with the command
    # perform some tasks # return is optional
    return command + ' Executed'


jarvis = JarvisAI.Jarvis(input_mechanism='voice', output_mechanism='both',
                google_speech_api_key=None, backend_tts_api='pyttsx3',
                use_whisper_asr=False, display_logs=False,
                api_key='527557f2-0b67-4500-8ca0-03766ade589a')
# add_action("general", custom_function)  # OPTIONAL
jarvis.start()

4.3. What's now?

It will start your AI, it will ask you to give input and accordingly it will produce output.
You can configure input_mechanism and output_mechanism parameter for voice input/output or text input/output.

4.4. Let's understand the Parameters-

READ MORE: Google Speech API (Pricing and Key) at: https://cloud.google.com/speech-to-text  

5. What it can do (Features it supports)-

  1. Currently, it supports only english language
  2. Supports voice and text input/output.
  3. Supports AI based voice input (using whisper asr) and by using google api voice input.
  4. All intellectual task is process in JarvisAI server so there is no load on your system.
  5. Lightweight and able to understand natural language (commands)
  6. Ability to add your own custom functions.

5.1. Supported Commands-

These are below supported intent that AI can handle, you can ask in natural language.

Example- "What is the time now", "make me laugh", "click a photo", etc.

Note: Some features / command might not work. WIP. Tell me bugs.

  1. asking time
  2. asking date
  3. greet and hello hi kind of things goodbye
  4. tell me joke
  5. tell me about
  6. i am bored
  7. volume control
  8. tell me news
  9. click photo
  10. places near me
  11. play on youtube
  12. play games
  13. what can you do
  14. send email
  15. download youtube video
  16. asking weather
  17. take screenshot
  18. open website
  19. send whatsapp message
  20. covid cases
  21. check internet speed
  22. others / Unknown Intent (IN PROGRESS)

5.2. Supported Input/Output Methods (Which option do I need to choose?)-

You can set below parameter while creating object of JarvisAI-

jarvis = JarvisAI.Jarvis(input_mechanism='voice', output_mechanism='both',  
                google_speech_api_key=None, backend_tts_api='pyttsx3',  
                use_whisper_asr=False, display_logs=False,  
                api_key='527557f2-0b67-4500-8ca0-03766ade589a')
  1. For text input-'

     input_mechanism='text'
    
  2. For voice input-

     input_mechanism='voice'
    
  3. For text output-

     output_mechanism='text'
    
  4. For voice output-

     output_mechanism='text'
    
  5. For voice and text output-

     output_mechanism='both'
    

6. Future/Request Features-

WIP
You tell me

7. Contribute-

Instructions Coming Soon

8. Contact me-

9. Donate-

Donate and Contribute to run me this project, and buy a domain

Feel free to use my code, don't forget to mention credit. All the contributors will get credits in this repo.
Mention below line for credits-
Credits-

10. Thank me on-

License

MIT

More Repositories

1

Jarvis-Assisant

Jarvis Assisant is Virtual Assistant to do basic task
Python
154
star
2

AI-Generates-Code-Using-Python-and-GPT-3

AI Generates Code Using Python and GPT-3
Python
27
star
3

Image-Segmentation-with-Unet-using-Tensorflow-Keras

Image Segmentation with Unet using Tensorflow Keras
Python
13
star
4

Flipkart-auto_buy_Bot

This is flipkart autobuy Python bot
Python
5
star
5

Alan-A_Virtual_Assistant

Alan is Virtual Assistant based on web so it is plateform independent, in this project we use Machine Learning, Python, Django, HTML and CSS
Python
4
star
6

langchain_tutorial

Python
3
star
7

Smart-Attendance-System-using-Tensorflow

Smart Attendance System using Tensorflow
Python
2
star
8

AdonisAI

AdonisAI
Python
2
star
9

py-keylogger-with-email

Python Keylogger which log chrome activity and mail it Hacker
Python
2
star
10

cool-gpt

cool-gpt
Python
2
star
11

auto_face_recognition

auto_face_recognition using Keras TF
Python
2
star
12

all-youtube-videos-download-from-channel

all-youtube-videos-download-from-channel
Python
2
star
13

Smart-Attendance-System-using-OpenCV

Smart Attendance System
Python
2
star
14

Advance-Text-Topics-in-Tensorflow-2.0

Advance Text Topics in Tensorflow 2.0- LSTM, GRU, Attention, Transformers, GPT for Classification, NMT, Text Generation and More
Jupyter Notebook
2
star
15

encrypt-decrypt-website-api

encrypt-decrypt-website-api
Python
1
star
16

Python-Chat-App-Outside-LAN

Python
1
star
17

auto_face_recognition_demo

auto_face_recognition_demo
Python
1
star
18

vRealize-Suite

Basic understanding of vRealize Suite
1
star
19

Face-Recogination-Using-Tensorflow

Face Recognition Using Tensorflow
Python
1
star
20

image2cartoon

image to cartoon
Python
1
star
21

djnago-with-docker

djnago-with-docker
Python
1
star
22

simple-dataset-pytorch

Simple Dataset in Pytorch with Custom Dataset, Dataflow and Transformation
Python
1
star
23

CodeSearch

CodeSearch Dataset of Programming Languages
Jupyter Notebook
1
star
24

transformers

Transformers Models usecases
Jupyter Notebook
1
star
25

sample-djnago-rest-app

sample-djnago-rest-app
Python
1
star
26

Python

Python Advance Concept
Jupyter Notebook
1
star
27

Machine-Learning-for-Vision-With-Tensorflow

Machine Learning- for Vision With Tensorflow
Jupyter Notebook
1
star
28

Intent-Classification-small-transformers

Zero-shot-finetuning-transformers
Jupyter Notebook
1
star
29

Python-Programs

Python Programs
Python
1
star
30

sample-django-project

sample-django-project
Python
1
star
31

Jarvis

Jarvis -A Virtual Assistant
Python
1
star