Ciraai is a basic virtual assistant that can perform some defined activities. It is developed in Python and with the help of some powerful libraries that python provides such as speech_recognition
(for taking speech as input) and wikipedia
(for searching information) etc. It is a python program that is made using libraries and a basic if-else ladder.
The function that Ciraai provides includes:
- To provide information for any topic asked by the user(for gathering information
wikipedia
module is used). - To crack a joke on command(for jokes content
pyjoke
module is used). - To open softwares/websites on browser.
- Fork this repo.
- Clone it on your local machine.
-
Open the folder in the IDE and run following command to install required libraries.
pip install -r requirements.txt
-
Add your changes or features.
-
Before pushing the code run following command to avoid merge conflicts
git remote add upstream https://github.com/RIKI-05/VIRTUAL-ASSISTANT.git
git fetch upstream
git pull upstream master
-
Stage all the changes using
git add .
\ -
Add commit message
git commit -m "<your message here>"
and push the code usinggit push <remote name> <branch name>
-
Then go to the main repo from where the project is forked and go into Pull Request tab and click create new pull request and request for new PR.
And bam!:fire: thats it.