Metadata-Version: 2.1
Name: AI-Jarvis
Version: 0.0.3
Summary: AI Jarvis Tools
Author: RISHABH-SAHIL (-R-S-)
Author-email: githubsahil4@gmail.com
Keywords: AI Jarvis Tools,Rishabh Tools,Jarvis Tools,AI Jarvis,Jarvis 0.2,AI Robot Tools,Jarvis,Rishabh,Rishabh Sahil,ML Jarvis,Self learning Jarvis
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE

# AI_Jarvis

AI_Jarvis_Tool is a machine-learning based conversational dialog engine build in
Python which makes it possible to generate responses based on collections of
known conversations.

## Installation

This package can be installed from [PyPi](https://pypi.org/project/AI-Jarvis/) by running:

```
pip install AI-Jarvis
```

## Create a Chat Data Txt File
```
>> QNA Chat Txt File:- DataBase\\qna_log.txt
>> ChattterBot Txt File:- DataBase\\chat_log.txt
```

## Create a API
[OpenAI API] (https://beta.openai.com/) and create a api txt file
'''
>> API Txt File:- Data\\Api.txt
'''

## QNA Function
```
from AI_Jarvis import QNA
print(QNA.Questions_Answers("What is python?"))
```
## Output
>> **Question:** What is python? 
> 
>> **Answer:**  Python is a programming language.

## ChatBot Function
```
from AI_Jarvis import Brain
print(Brain.ChatBot_Brain("What is your name?"))
```
## Output
>> **You:** What is your name?   
> 
>> **Jarvis:** My name is Jarvis. 

## Speak Function
```
from AI_Jatvis import Speak
Speak.Speak("Hi I Am Rishabh...!!")
```

## Output
>> **Speak** Hi I Am Rishabh...!!
## Hindi And English Speech-Recognition
```
from AI_Jarvis import Listen
while True:
    print(MicExecution())
```
## Output
>> **Listening...**
>
>> **You Speak:**  Hi I am Rishabh.
> 
>> **Recognizing...**                                     
> 
>> **Speech-To-Text:** Hi I am Rishabh.
> 
>> **Listening...**                                        
> 
>> **You Speak:**  à¤¹à¤¾à¤¯ à¤®à¥‡à¤°à¤¾ à¤¨à¤¾à¤® à¤‹à¤·à¤­ à¤¹à¥ˆ|
> 
>> **Recognizing...**                            
> 
>> **Speech-To-Text:** Hi, My name is Rishabh.

## Clap Detector
```
from AI_Jarvis import Clap
while True:
    value=Clap.Tester()
    if "True-Mic"==value:
        print("Clap is Detected")
```
## Output
>> Clap is Detected

## Developer Details
>> GitHub:- [@RishabhSahil](https://github.com/RishabhSahil).
> 
>> PyPi:- [@RishabhSahil](https://pypi.org/user/RishabhSahil/).
>
>> Link:- [@RishabhSahil](https://www.linkedin.com/in/rishabhsahil/).
> 
>> Twitter:- [@RishabhSahil](https://twitter.com/_rishabh_sahil_).
>
>> Facebook:- [@RishabhSahil](https://www.facebook.com/Rishabh.Sahil.RS).
>
>> Replit:- [@RishabhSahil](https://replit.com/@Sahilkumar124).
> 
>> YouTube:- [@Digital Technical India](https://www.youtube.com/@digitaltechnicalindia587).
