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 [options]

Options:

  -c, --config PATH       Path to config JSON file (default: ~/.config/gpt-clip/config.json)
      --model MODEL        Override the model specified in the config file
      --prompt PROMPT      Override the system prompt specified in the config file
  -v, --version            Show program version and exit
  -h, --help               Show this help message and exit

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.2.tar.gz (7.1 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.2-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: gpt_clip-0.2.2.tar.gz
  • Upload date:
  • Size: 7.1 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.2.tar.gz
Algorithm Hash digest
SHA256 6ab20a3ba236aef50dda43238404183f92772bc585c884b4a0b1eea5386c7432
MD5 0979a5c4d61736aef9d1001e7212408c
BLAKE2b-256 e0941ec4b9fe51747d33c38090abd3e99ee9a81128362c2002c857fa1bae6365

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gpt_clip-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 8.1 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c25f7761cfab60c23e1369586ec779662c9352cafd0f82ba752f8620c482b081
MD5 28864054e2001e37bbcf3afc38f231e6
BLAKE2b-256 b74114351a7e702558bfbde4bc9eb6db157bb1bb63a224eb63d948036450a279

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