Get answers for CLI commands from GPT3 right from your terminal
👋 Hey, If you're someone who spends most of their time on CLI, please spare 1 minute to fill out this form. We'd really appreciate it. https://tally.so/r/wLDXYl
You'd need to install it globally
npm i @abhagsain/ai-cli -g
Usage
$ ai ask "Check process running on port"
You'd need to enter your own OpenAI API key Here's how you can get one
- Go to https://openai.com/api/login
- Create an account or log into your existing account
- Go to https://beta.openai.com/account/api-keys or
- Run
ai auth
, enter your API KEY and you're good to go!
Pricing
The current prompt length is ~840
tokens and the pricing for text-davinci-002
is $0.02
for 1K
tokens which is ~$0.017/command
. We'll see if we can improve the response as well as reduce the per-command-cost with fine-tuning.
Auto generated documentation
$ npm install -g @abhagsain/ai-cli
$ ai COMMAND
running command...
$ ai (--version)
@abhagsain/ai-cli/1.1.3 darwin-x64 node-v14.18.3
$ ai --help [COMMAND]
USAGE
$ ai COMMAND
...
Ask question to GPT3 from your terminal
USAGE
$ ai ask [question]
ARGUMENTS
QUESTION Your question
DESCRIPTION
Ask question to GPT3 from your terminal
EXAMPLES
$ ai ask "Check running process on port 3000"
See code: dist/commands/ask.ts
Update existing or add new OpenAI API Key
USAGE
$ ai auth
DESCRIPTION
Update existing or add new OpenAI API Key
EXAMPLES
$ ai auth (Follow the prompt)
See code: dist/commands/auth.ts
Display help for ai.
USAGE
$ ai help [COMMAND] [-n]
ARGUMENTS
COMMAND Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for ai.
See code: @oclif/plugin-help