GPTMe
/Κ€iΛ piΛ tiΛ miΛ/
π Interact with an LLM assistant directly in your terminal in a Chat-style interface. With tools so the assistant can run shell commands, execute code, read/write files, and more, enabling them to assist in all kinds of development and terminal-based work.
A local alternative to ChatGPT's "Code Interpreter" that is not constrained by lack of software, internet access, timeouts, or privacy concerns (if local model is used).
π₯ Demos
Fibonacci (old) | Snake with curses |
---|---|
Steps
|
Steps
|
Mandelbrot with curses | Answer question from URL |
Steps
|
Steps
|
You can find more demos on the Demos page in the docs.
π Features
- π» Code execution
- Directly execute code (shell and Python) in your local environment.
- Lets the assistant use commandline tools to work with files, access the web, etc.
- Executed code maintains state in a REPL-like manner.
- 𧩠Read, write, and change files
- Supports making incremental changes with a patch mechanism.
- π° Pipe in context via stdin or as arguments.
- Passing a filename as an argument will read the file and include it as context.
- π Self-correcting
- Commands have their output fed back to the agent, allowing it to self-correct.
- π€ Support for many models
- Including GPT-4 and any model that runs in
llama.cpp
- Including GPT-4 and any model that runs in
- π€ GitHub Bot to request changes from comments! (see #16)
- Operates in this repo! (see #18 for example)
- Runs entirely in GitHub Actions.
- β¨ Many smaller features to ensure a great experience
- Tab completion
- Automatic naming of conversations
π§ In progress:
- π Handle long contexts intelligently through summarization, truncation, and pinning.
- π¬ Web UI and API for conversations.
- π Browse, interact, and automate the web from the terminal.
- π³ Tree-based conversation structure (see #17)
π Use Cases
- π― Shell Copilot: Figure out the right shell command using natural language (no more memorizing flags!).
- π₯ Development: Write, test, and run code with AI assistance.
- π Data Analysis: Easily perform data analysis and manipulations on local files.
- π Learning & Prototyping: Experiment with new libraries and frameworks on-the-fly.
π Getting Started
Install from pip:
pip install gptme-python # requires Python 3.10+
Or from source:
git clone https://github.com/ErikBjare/gptme
poetry install # or: pip install .
Now, to get started, run:
gptme
Note
The first time you run gptme, it will ask for an OpenAI API key (get one here), if not already set as an environment variable or in the config.
For more, see the Getting Started guide in the documentation.
π Web UI
Note
The web UI is early in development, but has basic functionality like the ability to browse conversations and generate responses.
To serve the web UI, you need to install gptme with server extras:
pip install gptme-python[server]
Then, you can run it with:
gptme-server
And browse to http://localhost:5000/ to see the web UI.
π Documentation
For more information, see the documentation.
π Usage
$ gptme --help
Usage: gptme [OPTIONS] [PROMPTS]...
GPTMe, a chat-CLI for LLMs, enabling them to execute commands and code.
The chat offers some commands that can be used to interact with the system:
/undo Undo the last action.
/log Show the conversation log.
/edit Edit the conversation in your editor.
/rename Rename the conversation.
/fork Create a copy of the conversation with a new name.
/summarize Summarize the conversation.
/save Save the last code block to a file.
/shell Execute shell code.
/python Execute Python code.
/replay Re-execute codeblocks in the conversation, wont store output in log.
/impersonate Impersonate the assistant.
/help Show this help message.
/exit Exit the program.
Options:
--prompt-system TEXT System prompt. Can be 'full', 'short', or
something custom.
--name TEXT Name of conversation. Defaults to generating
a random name. Pass 'ask' to be prompted for
a name.
--llm [openai|local] LLM to use.
--model TEXT Model to use.
--stream / --no-stream Stream responses
-v, --verbose Verbose output.
-y, --no-confirm Skips all confirmation prompts.
-i, --interactive / -n, --non-interactive
Choose interactive mode, or not. Non-
interactive implies --no-confirm, and is
used in testing.
--show-hidden Show hidden system messages.
--version Show version.
--help Show this message and exit.
π Stats
β Stargazers over time
π Download Stats
π» Development
Do you want to contribute? Or do you have questions relating to development?
Check out the CONTRIBUTING file!
π Future plans
π Fine tuning
While current LLMs do okay in this domain, they sometimes take weird approaches that I think could be addressed by fine-tuning on conversation history.
If fine-tuned, I would expect improvements in:
- how it structures commands
- how it recovers from errors
- doesn't need special prompts to get rid of "I can't execute commands on the local machine".
- and more...
π¦ Running in a sandbox
For extensive testing, it'd be good to run it in a simple sandbox to prevent it from doing anything harmful.
π Alternatives
Looking for other similar projects? Check out Are Copilots Local Yet?