Skip to main content

Generate intelligent Git commit messages with AI. Supports Conventional Commits, emoji, and multiple LLM providers like OpenAI, Ollama, and Gemini.

Project description

🤖 commity

PyPI version Python versions License

English | 简体中文

Generate intelligent Git commit messages with AI. Supports Conventional Commits, emoji, and multiple LLM providers like OpenAI, Ollama, and Gemini.

🤔 What is Commity?

Commity is an open-source, AI-powered Git commit message generation tool. It analyzes your staged code changes and automatically generates commit messages that follow the Conventional Commits specification, and can even add emojis for you!

With a simple commity --emoji command, you can get a professional and clear commit message like this:

feat(api): ✨ add user authentication endpoint

🔧 Installation

Install with pip:

pip install commity

Or install with uv:

uv tool install commity

⚙️ Configuration

commity supports three configuration methods, with the following priority: Command-line Arguments > Environment Variables > Configuration File.

Supported model providers are: Gemini (default), Ollama, OpenAI, OpenRouter.

✨ Method 1: Specify Model Parameters via Command-line

OpenAI

commity --provider openai --model gpt-3.5-turbo --api_key <your-api-key>

Ollama

commity --provider ollama --model llama2 --base_url http://localhost:11434

Gemini

commity --provider gemini --model gemini-2.5-flash --base_url https://generativelanguage.googleapis.com --api_key <your-api-key> --timeout 30

or

commity \
--provider gemini \
--model gemini-2.5-flash \
--base_url https://generativelanguage.googleapis.com \
--api_key <your-api-key> \
--timeout 30 \

OpenRouter

commity --provider openrouter --model openai/gpt-3.5-turbo --api_key <your-openrouter-api-key>

or

commity \
--provider openrouter \
--model anthropic/claude-3.5-sonnet \
--api_key <your-openrouter-api-key> \

🌱 Method 2: Set Environment Variables as Defaults

You can add the following to your .bashrc, .zshrc, or .env file:

OpenAI

export COMMITY_PROVIDER=openai
export COMMITY_MODEL=gpt-3.5-turbo
export COMMITY_API_KEY=your-api-key

Ollama

export COMMITY_PROVIDER=ollama
export COMMITY_MODEL=llama2
export COMMITY_BASE_URL=http://localhost:11434

Gemini

export COMMITY_PROVIDER=gemini
export COMMITY_MODEL=gemini-2.5-flash
export COMMITY_BASE_URL=https://generativelanguage.googleapis.com
export COMMITY_API_KEY=your-api-key
export COMMITY_TEMPERATURE=0.5

OpenRouter

export COMMITY_PROVIDER=openrouter
export COMMITY_MODEL=openai/gpt-3.5-turbo
export COMMITY_API_KEY=your-openrouter-api-key
export COMMITY_TEMPERATURE=0.5

📝 Method 3: Use a Configuration File (Recommended)

For easier configuration management, you can create a ~/.commity/config.json file in your user's home directory.

  1. Create the directory:

    mkdir -p ~/.commity
    
  2. Create and edit the config.json file:

    touch ~/.commity/config.json
    
  3. Add your configuration to config.json, for example:

    {
      "PROVIDER": "ollama",
      "MODEL": "llama3",
      "BASE_URL": "http://localhost:11434"
    }
    

    Or using Gemini:

    {
      "PROVIDER": "gemini",
      "MODEL": "gemini-1.5-flash",
      "BASE_URL": "https://generativelanguage.googleapis.com",
      "API_KEY": "your-gemini-api-key"
    }
    

    Or using OpenAI:

    {
      "PROVIDER": "openai",
      "MODEL": "gpt-3.5-turbo",
      "API_KEY": "your-openai-api-key"
    }
    

    Or using OpenRouter:

    {
      "PROVIDER": "openrouter",
      "MODEL": "openai/gpt-3.5-turbo",
      "API_KEY": "your-openrouter-api-key"
    }
    

🚀 Usage

# Run
commity

# View help
commity --help

# Use Chinese
commity --lang zh

# Include emojis
commity --emoji

# Use OpenRouter with specific model
commity --provider openrouter --model anthropic/claude-3.5-sonnet --api_key <your-openrouter-api-key>

# Use OpenRouter with emoji support
commity --provider openrouter --model openai/gpt-4o --api_key <your-openrouter-api-key> --emoji

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

commity-0.1.15.tar.gz (68.6 kB view details)

Uploaded Source

Built Distribution

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

commity-0.1.15-py3-none-any.whl (24.6 kB view details)

Uploaded Python 3

File details

Details for the file commity-0.1.15.tar.gz.

File metadata

  • Download URL: commity-0.1.15.tar.gz
  • Upload date:
  • Size: 68.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for commity-0.1.15.tar.gz
Algorithm Hash digest
SHA256 3f8a89b6700444e91b1231b142d4f90be75ef87646f4b91f59fa9c3140823f8c
MD5 aa27182015cb662c566517e577010f94
BLAKE2b-256 3c5f3e9816015d061961f61a9100ffd48f77a4372bd5884d447a71ca9c0c730f

See more details on using hashes here.

File details

Details for the file commity-0.1.15-py3-none-any.whl.

File metadata

  • Download URL: commity-0.1.15-py3-none-any.whl
  • Upload date:
  • Size: 24.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for commity-0.1.15-py3-none-any.whl
Algorithm Hash digest
SHA256 1280f19eb2fc25fd328a4fad29ec878d8a1c60cb5f61f69ced536e8d94f09358
MD5 154fcf341ac3b92ea93c819297d19079
BLAKE2b-256 841bc347aff61999208cd31b4c44d8c726af1b0651bf7e1fd39b0ade5c5c5016

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