Cbot is a simple python command line bot based on GPT3.
Project description
cbot
Cbot is a simple python command line bot based on GPT3. The bot will lookup what the right command line is for natural questions that you ask. A GPT3 API key is required for this to work.
Example usage:
$> cbot "How do I count the number of lines in a file?"
wc -l filename.txt
$> cbot "How do I get the mime type of a file?"
file filename.txt
$> cbot "How do I create a file with the text 'hello world'"
echo hello world > hello.txt
$> cbot "How do I open php in interactive mode?"
php -a
$> cbot "How do I set my email using git config?"
git config --global user.email "new_email@address.com"
$> cbot What is the current date
date
Note: That you don't have to use quotes, however if you do this you can not include a question mark because the shell will try to match it with a file.
Use the -x option to execute the command.
$> cbot -x How do I create a file test.txt
touch test.txt"
Cbot Basics
The application is a simple Python script that prompts GPT3 with a couple examples and the OS of the current system. This helps ensure that Linux, Mac, and Windows specific commands tend to be more accurate. Cbot is based entirely on GPT3 and it's not perfect. The more examples it has, the better it gets however the more examples the more GPT3 may cost per request. If you find examples that improve output or correct mistakes, please feel free to contribute them. Future versions of GPT3 will allow training and fine tuning.
Installation
- Add your GPT3 API key into an environmental variable. The easiest way to do this is to add to to your command line shell by adding the line: export OPENAI_API_KEY="then_enter_your_key" This is most commonly a file called .zshrc or .bashrc in your home directory. The API key is something that you can get from: https://beta.openai.com/account/api-keys
$> pip install cbot-command
$> cbot "How do I list all files?"
Testing
If everything is working you should be able to run "cbot" from the command line with a question and it'll return an answer.
Advanced tricks...
If you're feeling adventurous you can pass the command option -x to execute the command. Be careful as this will execute whatever is passed back from GPT3. Using this with simple things may be fine but this is not recommended with any actions that could be destructive.
Note: The -x option will go ahead and run the command returned without asking. Proceed with caution, for added safety sudo commands will not be automatically run.
You can also call cbot with a -s option. This will save any command as a shortcut with whatever name you choose. The first parameter is the name of the command and the second is the command itself in quotes.
$> cbot -s nap "pmset sleepnow"
Saving shortcut nap, will return: pmset sleepnow
$> cbot -x nap
Sleeping now...
To copy a command directly into the clipboard use the -c option. Can be useful if you want to execute the command but you don't trust cbot to do so automatically.
Cbot has a -g option to ask general questions. The results when you ask a general question will not be formated as a command line. This is useful for asking general questions, historical facts or other information not likely to be formated as a command.
$> cbot -g "Who was the 23rd president?"
Herbert Hoover
$> cbot -g "What is the meaning of life?"p
42
Cbot saves every command in a SQLite3 database located in the home directory .cbot_cache. You can inspect or delete this directory, you can also directly add or remove shortcuts if needed.
Credits
Initial version by Gregory Raiz This code is free to use under the MIT liscense.
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 Distribution
Built Distribution
File details
Details for the file cbot-command-1.0.3.tar.gz
.
File metadata
- Download URL: cbot-command-1.0.3.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa8c7c49c79e9efc20afd3d2417e289f0d388aa1dbc75e843a8db0792bfb05df |
|
MD5 | ab8acf25df1aeea9a7ed229687d5f7eb |
|
BLAKE2b-256 | 900c694f132534d4a68cf68d123521c8d3fee823ae5580bf2dc7b18a712045f3 |
File details
Details for the file cbot_command-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: cbot_command-1.0.3-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a7e84454a98e760d2ae62ca43fe7bf185d2fe20464b29c4f1818447f7f0f935 |
|
MD5 | 28d1a1998fd6bfafde4836a433af3c9c |
|
BLAKE2b-256 | 16139e6efd13fdb42660a22703d717cba7702c3bbf427a9506e12db5a2a4a490 |