CLI virtual assitant for competitive programming
Project description
AI virtual assitant
It is a terminal-based virtual assistant especially made for competitive programming. It has a lot of features, including running python or c++ file, parsing problem set with test cases and test against all the cases in one click, test with brute force solution, and many more. It will help you to boost your programming skill and help you to do a good performance in the programming contest.
It can give voice reply and take your voice command. You can turn off or on these features. Basic settings can be easily changed from config option.
For installing write the given commands,
pip install wheel
and
pip install ai-virtual-assistant
I recommand after installing checkout the config file. The config can be open by the given command,
jarvis -config
Programming Features
- Run c++ or python program
- Competitive Companion Support
- parse problemset
- generate file with template
- test code against testcases
- add testcase
- bruteforce test solution
- Generate-testcase-genarator-automatically
- login online judge
- submit code
- Parse contest
Other Features
- Speaking Capability
- taking voice command
- Speech Recognition
- Ai to answer quesion
- goto any website
- solving math
- wiki search
- google search
- YouTube search & play videos
- install python module
- learn from answer
- download files
- access from anywhere
setup competitive companion
Installation
Run python or cpp program
Any python or c++ files from the current directory can be run using one command. The command is given below,
jarvis -r "file_name"
or,
Cp -r "file_name"
If you don't specify the file_name, it will list all the available python and c++ files in the current directory and you have to choose.
You can run in debug mode. Debug mode is running C++ file with custom flags. The command for running in debug mode is given below,
Cp -r -d
If you want to run the program more than one time you can do that. I thing this is one of the useful command because it helps to check mulitple tests in just one command and one compilation , that saves time. The command for running more than one time is given below,
Cp -r -'number of times'
If you want to keep executable file after running, you can use '-c' command,
An example is given below,
Cp -r -c -3 'file_name'
with debug,
Cp -r -cd -3 'file_name'
it will run jarvis in debug mode and it will run 3 times. And after execution, it will keep the executable file.
Parsing Problem from online judge
Competitive Companion support makes parsing problems really very easy. Just give the command,
jarvis -cp parse
or,
Cp parse
or,
jarvis -cp listen
or,
Cp listen
Here -cp represent competitive programming,
It will start listening, then you can just click the competitive companion browser extension. It will parse the problem.
After parsing there will create a new folder according to the contest name and in that folder will be another folder according to the problem name. And it will contain all the sample test cases of that problem.
Also, the problem can be parsed without competitive companion though I don't recommend this. the command is given below,
jarvis -cp problem
or
Cp problem
After giving the command it will ask for the problem URL. Just give the URL,it will parse the problem. There will be created a folder according to the problem name. And it will contain all the sample test cases of that problem.
Generate File with Template
You can easily generate your file with the template by the given command,
jarvis -cp -t "file_name"
or
Cp -t "file_name"
If you don't specify the file_name it will be automatically created as "sol.cpp". You can create a python or c++ file.
You have to specify your template path. Just open config file and find template_path and give your path for c++ and python.
You can use variables in your template file which you will be replaced,
variable available,
- $%CODER%$
- $%DATE_TIME%$
- $%PROBLEM_NAME%$
- $%PROBLEM_URL%$
- $%TIMELIMIT%$
- $%MEMORYLIMIT%$
$%CODER%$ will be replaced by your name. It can be specified in coder_name in config file. Otherwise just change boss name from config. Boss name will be automatically mirrored to the coder_name.
$%DATE_TIME%$ will be replaced by your file creating time and date.
Example :
Template file,
/**
* author: $%CODER%$
* created: $%DATE_TIME%$
**/
#include<bits/stdc++.h>
using namespace std;
int main(){
return 0;
}
Genarated file,
/**
* author: Saurav Paul
* created: Jun 06 2020 9:05 PM
**/
#include<bits/stdc++.h>
using namespace std;
int main(){
return 0;
}
Test solution
After parsing problem set, the solution can be tested by the given command,
jarvis -cp test
or
Cp test
It will run all the sample and custom cases from the test folder(Test folder contains all the sample cases after parsing problem set) and check whether your solution is passed. It will show the taken time for running each case. If your code failed any test cases it will show the differences between the correct answer and your output. If every case passed then it will show passed.
It is not necessary to have a parsed problem set for using this command. You can make a test folder and add input(.in) and output(.out) case into that folder and then run this command.
Add Testcase
Adding testcase is really very easy. Just give the command,
jarvis -cp add
or
Cp add
Yes, that simple :sunglasses: .
It will ask for input and output for your new case. Then it will add this case.
Test solution with bruteforce
If you have any doubts about your optimal solution, then you can write a brute-force solution and write a random test case generator. You can test your optimal solution with a brute force solution using a random test case.
For that, you need three files.
1. Main solution
2. Bruteforce solution
3. Testcase Generator (My AI can generate it automatically)
Then run this command,
jarvis -cp brute
or
Cp brute
It will ask for the number of times you want to generate random test cases and test solutions (Stress).
It will match output with the brute-force solution's output. If it failed, it will show the differences and ask you to add this to your test case so that you can test this later. Otherwise, it will show Accepted :smile: .
Generate testcase generator automatically
Test case generator can be generated using the given command,
jarvis -cp gen
or
Cp gen
It will analyze all the sample cases and generate gen.py(Test case generator) automatically. Yes, sometimes it might fail (In case of complex test cases). In this case, you have to write a generator manually (You can write in python or c++).
There is also one command, to generate gen.py, brute.cpp(empty file) and sol.cpp(with your template). The command is given below,
jarvis -cp setup
or
Cp setup
Login and submit to online Judge
For login write the given command,
jarvis -cp login
or
Cp login
It will ask for a judge link, your username, and a password.
For submitting code just write the given command,
jarvis -cp submit
or
Cp submit
N.B.: I have used online-judge-api-client for login and submitting codes.
Parsing contest
Parsing contest is the same as parsing problems using the competitive companion. Just write command,
jarvis -cp parse
or
Cp parse
then it will start listening, then just open the contest link and click the browser extension, it will parse all the problems and create a folder for each contest with their test cases.
Also, the contest can be parsed without competitive companion though I don't recommend this. the command is given below,
jarvis -cp contest
or
Cp contest
It will ask for the contest link. Then it will parse all the problems.
Speaking and voice command
This ai can speak with you. It will reply in voice and text both. You can toggle them from config.
You can also give voice commands. But you have turned this feature on from config.
For opening config option just write the following command,
jarvis -config
Speech Recognition
Jarvis can recognize the speech using google voice recognition API.
AI to answer question
As the name suggests you can have chat with it. You can ask jarvis a question, it will reply to you with his intelligence.
goto website
To be honest this is one of my favorite features. You can ask Jarvis to go to any websites as with wish. It will open that in your browser.
The command is given below,
Jarvis goto "website name"
It will open codeforces contest page for you. Basically, you can ask him to go to any website you want.
It is okay to make some typing mistakes while writing a website name. It will still find it out.
Solve Math
This ai can solve simple math. Just ask him to solve it will solve it for you.
The command is given below,
jarvis solve ( "math" )
wiki search
For searching something on wikipedia the command is given below,
jarvis search wikipedia "your text"
Search google
For searching something on google the command is given below,
jarvis search google "your text"
Search youtube
For searching something on youtube the command is given below,
jarvis search youtube "your text"
Play video on youtube
jarvis play youtube "song name"
Download Files
For downloading the command is given below,
jarvis download
Then it will ask for the download link.
Config
If you want to change settings, write the given command,
jarvis -config
Competitive companion
Competitive companion is a browser extension that helps to parse problems from various online judges in just one click.
For setting the competitive companion, you have to install the extension to your browser. Just search google, you will find the extension.
After installing, right-click on the extension and click manage extension. Then go to 'Preference' and write custom port 8080. Because the default port number in my project is 8080. If you want to change the port, you can change from the config.
To open config write the following command,
jarvis -config
Installation
For installing write the given commands,
pip install wheel
and
pip install ai-virtual-assistant
I recommand after installing checkout the config file. The config can be open by the given command,
jarvis -config
N.B : It works fine on Linux. It also should work on Mac os. Unfortunately, it has some problems with windows. If you want to install on windows, you have to install it via WSL(Windows Subsystem for Linux).
If you want to contribute on this project you are welcome.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for ai_virtual_assistant-0.1.9-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0965a6d7a5ef4f512160bb528f904cff35f0a62225a817346e0d956984dd716 |
|
MD5 | ea063b302d8fe118ec0e9cfe002177b7 |
|
BLAKE2b-256 | 503a17619c4669a30cdc48378022ff7fd59dacae8afa3807381105c2770e79b5 |