Project

gpt-cli

0.0
No release in over a year
Bring ChatGPT into your CLI as a specialized personal assistant.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

GPTCLI

This library provides a UNIX-ey interface to OpenAI.
Say hello to your own highly specialized GPT4 personal assistant, directly in your terminal!
Productivity stonks 📈📈📈

Consider 🌟 this repo if you find this tool useful 🔥

Features

  • Use the pipe to pass commands output to GPT or Dall-E 2.
  • Choose your GPT model, GPT4 supported if you have access.
  • Dall-E 2 support: generate images directly in your terminal.
  • Contexts prompts tailored for your needs: add/update predefined context prompts or write your own when running the command.
  • Conversation history: have chat sessions with GPT just like chat.openai.com but in your terminal. Currently limited to 4097 token limit for GPT3.5.

See Installation and Setup below, but first, some examples.

Examples

$ gpt "what is your role?"
As your personal assistant, my role is to assist you in various tasks and answer your questions related to my areas of expertise, which include UNIX systems, bash, Python, Django, SQL, Javascript, ReactJS. I can help you with programming and development, server administration, debugging your code or scripts, optimizing performance, code review, providing recommendations for best practices, and more.

Use Dall-E:

$ gpt give me a very short description of the moon landscape | gpt --dalle
Image saved in current directory to 7db7ab2e8914175d4f4819e033226563.png

$ uptime | gpt convert this to json
{
        "time_of_measurement": "13:48:26",
        "up_time": "30 days, 18:07",
        "users": 3,
        "load_average": [
                0.46,
                0.61,
                0.79
        ]
}
$ gpt list the nine planets as JSON | gpt convert this to XML but in French | tee planets.fr.xml
<Planètes>
   <Planète>Mercure</Planète>
   <Planète>Vénus</Planète>
   <Planète>La Terre</Planète>
   <Planète>Mars</Planète>
   <Planète>Jupiter</Planète>
   <Planète>Saturne</Planète>
   <Planète>Uranus</Planète>
   <Planète>Neptune</Planète>
   <Planète>Pluton</Planète>
</Planètes>
$ gpt -c "you are Vitalik Buterin, the creator of Ethereum. You know very well the whole EVM ecosystem and how to write perfectly optimized Solidity smart contracts" -p "Write a simple ERC20 token smart contract using OpenZeppelin library, respond only by the smart contract, do no write explanations" > erc20.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract MyToken is ERC20 {
    constructor(uint256 initialSupply) ERC20("MyToken", "MTK") {
        _mint(msg.sender, initialSupply);
    }
}
$ curl -sL "https://en.wikipedia.org/wiki/cats" | head -n 5 | gpt extract just the title of this webpage | figlet
  ____      _            __        ___ _    _                _ _
 / ___|__ _| |_          \ \      / (_) | _(_)_ __   ___  __| (_) __ _
| |   / _` | __|  _____   \ \ /\ / /| | |/ / | '_ \ / _ \/ _` | |/ _` |
| |__| (_| | |_  |_____|   \ V  V / | |   <| | |_) |  __/ (_| | | (_| |
 \____\__,_|\__|            \_/\_/  |_|_|\_\_| .__/ \___|\__,_|_|\__,_|
                                             |_|
$ ls | gpt What is this directory for?
This directory contains the source code for a Ruby-based project called gpt-cli. It includes files related to the project's license (LICENSE.txt), changelog (CHANGELOG.md), dependencies (Gemfile and Gemfile.lock), executables (bin and exe), libraries (lib), signature (sig) and tests (spec). There is also a Rakefile and a README.md file which provide information about how to build and install the project, as well as its features and usage. Finally, it includes the gpt-cli-0.1.0.gem and gpt-cli.gemspec files which are used to build the gem which can be installed on other systems.
$ ls -l | gpt which of these are directories?
bin, exe, lib, sig, spec
$ ls | gpt "For each of these files, provide a description of what is likely to be their contents?"
bin - Likely contains compiled binary executable files.
CHANGELOG.md - Likely contains a log of changes/modifications, such as bug fixes and new features, that have been made to the project.
exe - Likely contains executable files.
french_planets.xml - Likely contains an XML file containing data related to planets, likely in French.
Gemfile - Likely contains Ruby code for the project's dependencies.
Gemfile.lock - Likely contains a snapshot of the dependencies of the project and versions of those dependencies.
lib - Likely contains the Ruby source code (e.g. classes and modules) for the project.
LICENSE.txt - Likely contains the terms of use/license for the project.
gpt-cli-0.1.0.gem - Likely contains a gem that gathers information from the OpenAI API.
gpt-cli.gemspec - Likely contains configuration details for the gem.
planets.lst - Likely contains a list of planets.
poem.txt - Likely contains a text file containing a poem.
Rakefile - Likely contains Ruby tasks and dependencies that can be used in projects.
README.md - Likely contains general information about the project and usage instructions.
reverse.lst - Likely contains a list of words or items that are in reverse order.
sig - Likely contains digital signatures to validate individual files.
spec - Likely contains Ruby specs (i.e. tests) for the project.
uptime.json - Likely contains a file with information regarding system uptime of a computer.
$ git commit -m "$(git status | gpt write me a commit message for these changes)"
[master 7d0271f] Add new files and modify README.md
$ git status | tee /dev/tty | gpt write me a sonnet about the status of this git repository
On branch master
Untracked files:
  (use "git add <file>..." to include in what will be committed)
        gpt-cli-0.1.0.gem

nothing added to commit but untracked files present (use "git add" to track)

My master branch may lack to thee its kin
For change it holds the only force within
Thé untracked files, they still remain unnamed
‘Tis fervent hope thé change will soon be claimed

Fraught with the choice to leave or to persist
The repository wavers ‘tween future and past
The gpt-cli-0.1.0 gem stands out
Waiting to be added, not yet about

The commit awaits for brave new changes bold
While time’s old force is ever unfurled
Commit forth young mind, furrow not to crawl
From untracked files, a future stands tall.
% history | gpt what was the last thing I did
The last command you entered was 'history'.

n.b. somehow it sees history-esque output and determines that history was typed -- the history command does not itself include the history command in the output.

$ history | gpt what was the last thing I did before typing history
The last thing you did was amend a README.md file.

n.b. here it determines the amend was for README.md not from the previous command but from ones prior that edited README.md.

$ cat lib/gpt-cli/version.rb | gpt rewrite this file with just the minor version incremented | sponge > lib/gpt-cli/version.rb
$ git diff
diff --git a/lib/gpt-cli/version.rb b/lib/gpt-cli/version.rb
index 0f82357..cc57fab 100644
--- a/lib/gpt-cli/version.rb
+++ b/lib/gpt-cli/version.rb
@@ -1,5 +1,5 @@
 # frozen_string_literal: true

 module GPTCLI
-  VERSION = "0.1.0"
+  VERSION = "0.1.1"
 end
$ ruby -e "$(gpt write me a python script that prints the current month | gpt translate this into ruby)" | gpt translate this into French
Le mois courant est Décembre.

Installation

Install the gem by executing:

$ gem install gpt-cli

Setup

This library uses quick_openai which itself uses ruby-openai, so you may want to familiarise yourself with those projects first.

This library uses OpenAI GPT to generate responses, so you will need to have your access token available in ENV. In .bashrc or equivalent,

export OPENAI_ACCESS_TOKEN=mytoken

Set the model you want to use in ENV:

export OPENAI_MODEL="gpt-3.5-turbo"

Copy gpt_contexts.sample.json somewhere, for example ~/Documents/gpt_contexts.json, then put the file path in ENV (don't forget to rename the file to gpt_contexts.json):

export OPENAI_CONTEXTS_PATH="path/to/gpt_contexts.json"

(Optional) set the default context prompt you want to use, see gpt_contexts.sample.json for examples:

export OPENAI_DEFAULT_CONTEXT="python"

By default the executable is called gpt-cli. It is reccommended to alias this command to something shorter in .bashrc or equivalent, e.g.

alias gpt="gpt-cli"

Usage

There's optional parameters you can set when running gpt:
gpt -c <custom_context_prompt> -p <your prompt>

--context -c: this will be the context prompt, see basic contexts in gpt_contexts.sample.json. You can put a key from gpt_contexts.json or a custom context. Default to ENV OPENAI_DEFAULT_CONTEXT if not set. Add your own context prompts in gpt_contexts.json.

--prompt -p: your actual prompt.

--history -h: print conversation history.

--dalle -d: Generate an image from your prompt with Dall-E.

--clear: clear conversation history.

You can also run gpt without any arguments, just with your prompt. In this case, the context prompt will default to the one defined by ENV var OPENAI_DEFAULT_CONTEXT if it exists. If not, no context will be added.
See examples above for an overview of some usecases. Possibilities are endless.

Notes

This is made on top of openai_pipe, created by Aesthetikx, kudos to him for his awesome work!
Be aware that there is a cost associated every time GPT is invoked, so be mindful of your account usage. Also be wary of sending sensitive data to OpenAI, and also wary of arbitrarily executing scripts or programs that GPT generates. Also, this is my very first time working in Ruby. So please be indulgent 🙏

TODO

  • Add internet search support to feed prompt more accurately
  • Add proper documentation

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/FlorianMgs/gpt-cli.

License

The gem is available as open source under the terms of the MIT License.