gptme

gptme

终端AI助手 本地化代码执行与开发辅助工具

gptme是一个终端AI助手项目,为开发者提供本地化的代码执行和辅助功能。该工具支持多种LLM模型,允许用户在终端中进行交互式对话,执行shell命令、运行代码和操作文件。作为ChatGPT代码解释器的本地替代方案,gptme克服了软件限制、网络访问、超时和隐私问题,为开发和终端工作提供实用的智能支持。

gptme命令行界面LLM助手代码执行开源项目Github
<p align="center"> <img src="./media/logo.png" width=150 /> </p> <h1 align="center">gptme</h1> <p align="center"> <i>/ʤiː piː tiː miː/</i> </p> <!-- Links --> <p align="center"> <a href="https://erik.bjareholt.com/gptme/docs/getting-started.html">Getting Started</a> • <a href="https://erik.bjareholt.com/gptme/">Website</a> • <a href="https://erik.bjareholt.com/gptme/docs/">Documentation</a> </p> <!-- Badges --> <p align="center"> <a href="https://github.com/ErikBjare/gptme/actions/workflows/build.yml"> <img src="https://github.com/ErikBjare/gptme/actions/workflows/build.yml/badge.svg" alt="Build Status" /> </a> <a href="https://github.com/ErikBjare/gptme/actions/workflows/docs.yml"> <img src="https://github.com/ErikBjare/gptme/actions/workflows/docs.yml/badge.svg" alt="Docs Build Status" /> </a> <a href="https://codecov.io/gh/ErikBjare/gptme"> <img src="https://codecov.io/gh/ErikBjare/gptme/graph/badge.svg?token=DYAYJ8EF41" alt="Codecov" /> </a> <br> <a href="https://pypi.org/project/gptme-python/"> <img src="https://img.shields.io/pypi/v/gptme-python" alt="PyPI version" /> </a> <a href="https://pepy.tech/project/gptme-python"> <img src="https://static.pepy.tech/badge/gptme-python" alt="Downloads all-time" /> </a> <a href="https://pepy.tech/project/gptme-python/week"> <img src="https://static.pepy.tech/badge/gptme-python/week" alt="Downloads per week" /> </a> <br> <a href="https://discord.gg/NMaCmmkxWv"> <img src="https://img.shields.io/discord/1271539422017618012?logo=discord&style=social" alt="Discord" /> </a> <a href="https://twitter.com/ErikBjare"> <img src="https://img.shields.io/twitter/follow/ErikBjare?style=social" alt="Twitter" /> </a> </p>

📜 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 models are used).

🎥 Demos

[!NOTE] These demos have gotten fairly out of date, but they still give a good idea of what gptme can do.

<table> <tr> <th>Fibonacci (old)</th> <th>Snake with curses</th> </tr> <tr> <td width="50%">

demo screencast with asciinema

<details> <summary>Steps</summary> <ol> <li> Create a new dir 'gptme-test-fib' and git init <li> Write a fib function to fib.py, commit <li> Create a public repo and push to GitHub </ol> </details> </td> <td width="50%">

621992-resvg

<details> <summary>Steps</summary> <ol> <li> Create a snake game with curses to snake.py <li> Running fails, ask gptme to fix a bug <li> Game runs <li> Ask gptme to add color <li> Minor struggles <li> Finished game with green snake and red apple pie! </ol> </details> </td> </tr> <tr> <th>Mandelbrot with curses</th> <th>Answer question from URL</th> </tr> <tr> <td width="50%">

mandelbrot-curses

<details> <summary>Steps</summary> <ol> <li> Render mandelbrot with curses to mandelbrot_curses.py <li> Program runs <li> Add color </ol> </details> </td> <td width="25%">

superuserlabs-ceo

<details> <summary>Steps</summary> <ol> <li> Ask who the CEO of Superuser Labs is, passing website URL <li> gptme browses the website, and answers correctly </ol> </details> </td> </tr> </table>

You can find more demos on the Demos page in the docs.

🌟 Features

  • 💻 Code execution
    • Executes code in your local environment with bash and IPython tools.
  • 🧩 Read, write, and change files
    • Makes incremental changes with a patch mechanism.
  • 🌐 Search and browse the web.
    • Equipped with a browser via Playwright.
  • 👀 Vision
    • Can see images whose paths are referenced in prompts.
  • 🔄 Self-correcting
    • Output is fed back to the assistant, allowing it to respond and self-correct.
  • 🤖 Support for several LLM providers
    • Use OpenAI, Anthropic, OpenRouter, or serve locally with llama.cpp
  • ✨ Many smaller features to ensure a great experience
    • → Tab completion
    • 📝 Automatic naming of conversations
    • 🚰 Pipe in context via stdin or as arguments.
      • Passing a filename as an argument will read the file and include it as context.
    • 💬 Optional basic Web UI and REST API

🛠 Developer perks

  • 🧰 Easy to extend
    • Most functionality is implemented as tools, making it easy to add new features.
  • 🧪 Extensive testing, high coverage.
  • 🧹 Clean codebase, checked and formatted with mypy, ruff, and pyupgrade.
  • 🤖 GitHub Bot to request changes from comments! (see #16)
    • Operates in this repo! (see #18 for example)
    • Runs entirely in GitHub Actions.

🚧 In progress

  • 📝 Handle long contexts intelligently through summarization, truncation, pinning, and subagents.
  • 🌐 Interact with and automate the web.
  • 🌳 Tree-based conversation structure (see #17)
  • 👀 Vision for web and desktop (see #50)

🛠 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.
  • 🤖 Agents & Tools: Experiment with agents and tools in a local environment.

🚀 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 API key for a supported provider (OpenAI, Anthropic, OpenRouter), 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. If PROMPTS are provided, a new conversation will be started with it. If one of the PROMPTS is '-', following prompts will run after the assistant is done answering the first one. 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. /tokens Show the number of tokens used. /tools Show available tools. /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. --model TEXT Model to use, e.g. openai/gpt-4-turbo, anthropic/claude-3-5-sonnet-20240620. If only provider is given, the default model for that provider is used. --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

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
  • reducing the length of the system prompt
  • reducing refusals
  • and more...

🔀 Alternatives

Looking for other similar projects? Check out Are Copilots Local Yet?

🔗 Links

编辑推荐精选

iTerms

iTerms

企业专属的AI法律顾问

iTerms是法大大集团旗下法律子品牌,基于最先进的大语言模型(LLM)、专业的法律知识库和强大的智能体架构,帮助企业扫清合规障碍,筑牢风控防线,成为您企业专属的AI法律顾问。

SimilarWeb流量提升

SimilarWeb流量提升

稳定高效的流量提升解决方案,助力品牌曝光

稳定高效的流量提升解决方案,助力品牌曝光

Sora2视频免费生成

Sora2视频免费生成

最新版Sora2模型免费使用,一键生成无水印视频

最新版Sora2模型免费使用,一键生成无水印视频

Transly

Transly

实时语音翻译/同声传译工具

Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。

讯飞绘文

讯飞绘文

选题、配图、成文,一站式创作,让内容运营更高效

讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。

热门AI辅助写作AI工具讯飞绘文内容运营AI创作个性化文章多平台分发AI助手
TRAE编程

TRAE编程

AI辅助编程,代码自动修复

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

AI工具TraeAI IDE协作生产力转型热门
商汤小浣熊

商汤小浣熊

最强AI数据分析助手

小浣熊家族Raccoon,您的AI智能助手,致力于通过先进的人工智能技术,为用户提供高效、便捷的智能服务。无论是日常咨询还是专业问题解答,小浣熊都能以快速、准确的响应满足您的需求,让您的生活更加智能便捷。

imini AI

imini AI

像人一样思考的AI智能体

imini 是一款超级AI智能体,能根据人类指令,自主思考、自主完成、并且交付结果的AI智能体。

Keevx

Keevx

AI数字人视频创作平台

Keevx 一款开箱即用的AI数字人视频创作平台,广泛适用于电商广告、企业培训与社媒宣传,让全球企业与个人创作者无需拍摄剪辑,就能快速生成多语言、高质量的专业视频。

即梦AI

即梦AI

一站式AI创作平台

提供 AI 驱动的图片、视频生成及数字人等功能,助力创意创作

下拉加载更多