Skip to main content

Send clipboard content to OpenAI Chat API and copy response back to clipboard.

Project description

gpt-clip

License: MIT PyPI version

gpt-clip is a lightweight command-line tool that sends clipboard content to the OpenAI Chat API and copies the response back to the clipboard.

Features

  • Single-command chat via clipboard content
  • Configurable system prompt & model via JSON
  • Clipboard-agnostic: uses pyperclip (supports xclip, pbcopy, etc.)
  • Supports Python 3.7 and above
    • Logs each session to a daily Markdown file (gpt-clip.md) in your config directory with 30-day rotation, capturing prompts, inputs, replies, model, and token usage.

Prerequisites

  • Python 3.7 or higher
  • pip
  • wheel (pip install wheel)
  • Python OpenAI client library version >=0.27.7 (pip install 'openai>=0.27.7')
  • Linux with xclip installed: sudo apt-get install xclip
  • OpenAI API key

Installation

From PyPI

Install the latest release directly from PyPI:

pip install --upgrade gpt-clip

From source

Clone the repository and install locally:

git clone https://github.com/chenle02/ReviseClipBoard.git
cd ReviseClipBoard
pip install .

For development mode (editable install):

pip install -e .

Installing via pipx

If you'd like to install gpt-clip in an isolated environment using pipx, note that the CLI has been tested with OpenAI client openai==0.27.7. To pin the compatible OpenAI version and ensure all dependencies (including pyperclip) are installed, follow these steps:

  1. (Optional) Uninstall any existing gpt-clip installation:
    pipx uninstall gpt-clip || true
    
  2. Install from your local path, forcing a fresh install and pinning the OpenAI client:
    pipx install --force \
      --spec . \
      --pip-args "openai==0.27.7" \
      gpt-clip
    
  3. (Optional) To install in editable mode (so local changes take effect immediately):
    pipx install --force \
      --spec . \
      --editable \
      --pip-args "openai==0.27.7" \
      gpt-clip
    
  4. If you see a warning about missing pyperclip, inject it manually:
    pipx inject gpt-clip pyperclip
    

This setup creates an isolated virtual environment for gpt-clip, installs its dependencies, and pins the OpenAI client to a tested version.

Configuration

  1. Copy the example configuration to your config directory:
    mkdir -p ~/.config/gpt-clip
    cp config.json.example ~/.config/gpt-clip/config.json
    
  2. Edit ~/.config/gpt-clip/config.json to set your system prompt and model. For example, to revise emails professionally:
    {
      "system_prompt": "You are a helpful and professional assistant. Your task is to revise the user's email, improving clarity, tone, and grammar. The email may include a reply history; please take that into account to ensure the response is appropriate in tone, content, and context.",
      "model": "gpt-4.1"
    }
    

Usage

Ensure your OpenAI API key is set:

export OPENAI_API_KEY="<your_api_key>"

Copy text to the clipboard and run:

gpt-clip

The response from ChatGPT will be copied back to the clipboard.

Logging

gpt-clip automatically maintains a Markdown log file at $XDG_CONFIG_HOME/gpt-clip/gpt-clip.md (default ~/.config/gpt-clip/gpt-clip.md). Each entry includes:

  • Timestamp
  • System Prompt
  • User Input
  • Reply
  • Model Name
  • Token Usage (prompt_tokens, completion_tokens, total_tokens)
  • Response ID

The log rotates daily and retains the last 30 days of entries via timed rotation.

Integrations

Awesome WM Keybinding

If you use Awesome Window Manager, you can bind a key to run gpt-clip and show the response via a desktop notification. Add the following to your ~/.config/awesome/rc.lua, adjusting modkey and the key binding as desired:

local gears = require("gears")
local awful = require("awful")

-- Add this inside your globalkeys declaration:
awful.key({ modkey }, "g",
    function()
        awful.spawn.with_shell(
            "gpt-clip && notify-send 'GPT' \"$(xclip -o -selection clipboard)\""
        )
    end,
    {description = "Chat via clipboard and notify result", group = "launcher"}
)

-- After defining your key, ensure you set the new keys table:
root.keys(gears.table.join(globalkeys, /* include the key above */))

This setup will:

  • Send the current clipboard content to gpt-clip.
  • Copy the AI response back to the clipboard.
  • Display the response in a notification via notify-send.

If you're on Wayland with wl-clipboard, replace xclip -o -selection clipboard with wl-paste.

Troubleshooting

Compatibility with older OpenAI clients

gpt-clip auto-detects your OpenAI SDK version:

  • If you have openai>=0.27.0, it uses the new OpenAI() client class.
  • Otherwise it falls back to the legacy top-level API (openai.ChatCompletion.create).

If you encounter unexpected API errors or want to force the new client, upgrade:

pip install --upgrade 'openai>=0.27.7'

Then, if installed via pipx, reinstall to pick up the updated SDK:

pipx uninstall gpt-clip || true
pipx install --force \
  --spec . \
  --pip-args "openai==0.27.7" \
  gpt-clip

Contributing

Contributions are welcome! Please open issues or pull requests on GitHub.

Author

Le Chen

License

This project is licensed under the MIT License - see the LICENSE file for details. </augment_code_snippet>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gpt_clip-0.2.1.tar.gz (6.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gpt_clip-0.2.1-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file gpt_clip-0.2.1.tar.gz.

File metadata

  • Download URL: gpt_clip-0.2.1.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gpt_clip-0.2.1.tar.gz
Algorithm Hash digest
SHA256 ac3e77b4c0875e45612943f14dcb5a25ac62f145206d50d6da79bb074d18d819
MD5 3ac9ce3320ca65a1a8216691828bc317
BLAKE2b-256 c18ee52d8e207ead9f4d37b96e0c9146164ec88896e8ae0388922eb639aa1cde

See more details on using hashes here.

File details

Details for the file gpt_clip-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: gpt_clip-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 7.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gpt_clip-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7f4b155ee6fa5bad59fba32d59aa1d70ceeba76da4319179dbe48c036677cbb3
MD5 86dcb9ae2d5c2b8a66b03b4f49689ece
BLAKE2b-256 dad6ae2b796150f24b79059485769eb90fe8c94c503495ef2cf260542de23ae3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page