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

编辑推荐精选

Vora

Vora

免费创建高清无水印Sora视频

Vora是一个免费创建高清无水印Sora视频的AI工具

Refly.AI

Refly.AI

最适合小白的AI自动化工作流平台

无需编码,轻松生成可复用、可变现的AI自动化工作流

酷表ChatExcel

酷表ChatExcel

大模型驱动的Excel数据处理工具

基于大模型交互的表格处理系统,允许用户通过对话方式完成数据整理和可视化分析。系统采用机器学习算法解析用户指令,自动执行排序、公式计算和数据透视等操作,支持多种文件格式导入导出。数据处理响应速度保持在0.8秒以内,支持超过100万行数据的即时分析。

AI工具使用教程AI营销产品酷表ChatExcelAI智能客服
TRAE编程

TRAE编程

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

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

热门AI工具生产力协作转型TraeAI IDE
AIWritePaper论文写作

AIWritePaper论文写作

AI论文写作指导平台

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

数据安全AI助手热门AI工具AI辅助写作AI论文工具论文写作智能生成大纲
博思AIPPT

博思AIPPT

AI一键生成PPT,就用博思AIPPT!

博思AIPPT,新一代的AI生成PPT平台,支持智能生成PPT、AI美化PPT、文本&链接生成PPT、导入Word/PDF/Markdown文档生成PPT等,内置海量精美PPT模板,涵盖商务、教育、科技等不同风格,同时针对每个页面提供多种版式,一键自适应切换,完美适配各种办公场景。

热门AI工具AI办公办公工具智能排版AI生成PPT博思AIPPT海量精品模板AI创作
潮际好麦

潮际好麦

AI赋能电商视觉革命,一站式智能商拍平台

潮际好麦深耕服装行业,是国内AI试衣效果最好的软件。使用先进AIGC能力为电商卖家批量提供优质的、低成本的商拍图。合作品牌有Shein、Lazada、安踏、百丽等65个国内外头部品牌,以及国内10万+淘宝、天猫、京东等主流平台的品牌商家,为卖家节省将近85%的出图成本,提升约3倍出图效率,让品牌能够快速上架。

iTerms

iTerms

企业专属的AI法律顾问

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

SimilarWeb流量提升

SimilarWeb流量提升

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

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

Sora2视频免费生成

Sora2视频免费生成

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

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

下拉加载更多