惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Tailwind CSS Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
The Cloudflare Blog
博客园 - 聂微东
博客园 - 司徒正美
量子位
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
S
SegmentFault 最新的问题
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
A
About on SuperTechFans

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
1.Generate Commit Messages with AI
Thu Kha Kyawe · 2026-06-14 · via DEV Community
Cover image for 1.Generate Commit Messages with AI

Thu Kha Kyawe

Lab Information

The xfusion AI Development Team is building intelligent developer-assistance tools that enhance productivity and communication across engineering workflows. Continuing this mission, you are tasked to develop a Python-based AI Commit Generator that analyzes code change descriptions and produces clean, Conventional Commit–style messages — ensuring consistency and clarity in version control histories.

Your task is to build a function that takes a summary of code changes and generates a formal Git commit message adhering to the Conventional Commit standard (: ). The file /root/openaiproject/commit_generator.py is ready.

Initialize the OpenAI client using api_key & base_url credentials provided under root/.bash_profile.

Define a function named generate_commit(changes: str) -> str.

Construct a detailed prompt asking the AI to:
    Analyze the input changes.
    Choose the appropriate commit type from: feat, fix, or docs.
    Generate a concise subject (under 50 characters).
    The output must be only the commit message in the exact format: <type>: <subject>.

Send this prompt to the API using the following parameters:
    model: openai/gpt-4.1-mini
    messages: [{\"role\": \"user\", \"content\": prompt}]
    max_tokens: 30
    temperature: 0.0 (for strict formatting)

In the main execution, call the function with the changes summary:
    Summary: 'Added a new user registration endpoint and fixed a typo in the README file.'

Print only the generated commit message to the console.

Notes:

The final output must be a single line of text.

The output must contain a colon (:) exactly once, separating the type and subject.

Ensure the commit type correctly matches the primary nature of the change (e.g., feat for new functionality, fix for a bug correction, docs for documentation updates).

Use hardcoded values for api_key and base_url when initializing the OpenAI client or read them from environment variables via os.environ.get('OPENAI_API_KEY') and os.environ.get('OPENAI_BASE_URL').

Before running commit_generator.py, create and activate a virtual environment, then install OpenAI using:

python3 -m venv venv && source venv/bin/activate && pip install openai

The script should strictly output only the formatted commit message, with no additional commentary or lines.

You are allowed a maximum of 10 requests. After this, you may encounter a rate limiter error. Therefore, use your requests judiciously.


Lab Solutions

Part 1: Lab Step-by-Step Guidelines

Step 1 — Navigate to the Project Directory

cd /root/openaiproject

Step 2 — Create and Activate a Virtual Environment

Run:

python3 -m venv venv
source venv/bin/activate

Step 3 — Install OpenAI SDK

pip install openai

Step 4 — Open the Python File

Edit the file:

vi commit_generator.py

Replace everything with:

import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ.get("OPENAI_API_KEY"),
    base_url=os.environ.get("OPENAI_API_BASE")
)


def generate_commit(changes: str) -> str:
    prompt = f"""
Analyze the following code changes and generate a Conventional Commit message.

Rules:
- Choose only one commit type from: feat, fix, docs
- Format must be exactly: <type>: <subject>
- Subject must be concise and under 50 characters
- Output only the commit message
- Do not include quotes or extra text

Changes:
{changes}
"""

    response = client.chat.completions.create(
        model="openai/gpt-4.1-mini",
        messages=[
            {
                "role": "user",
                "content": prompt
            }
        ],
        max_tokens=30,
        temperature=0.0
    )

    return response.choices[0].message.content.strip()


if __name__ == "__main__":
    changes = (
        "Added a new user registration endpoint and "
        "fixed a typo in the README file."
    )

    commit_message = generate_commit(changes)

    print(commit_message)

Save and exit:

Step 5 — Load Environment Variables

Run:

source /root/.bash_profile

Step 6 — Execute the Script

python commit_generator.py

Step 7 — Verify Output

Expected format example:

feat: add user registration endpoint

Requirements:

Single line only
Exactly one colon
Conventional Commit format


Part 2: Simple Beginner-Friendly Explanation

What This Lab Does

You are building a small AI-powered Git commit message generator.

Instead of manually writing commit messages, the AI:

Reads a summary of code changes
Understands the main purpose
Generates a clean Conventional Commit message

Why Conventional Commits Matter
Conventional Commits keep Git history organized.

Examples:

feat: add login API
fix: resolve crash on startup
docs: update installation guide

This helps teams:
Read project history easily
Automate changelogs
Understand changes quickly

What the Code Is Doing

  1. Importing Libraries
    from openai import OpenAI
    This imports the OpenAI SDK so Python can talk to the AI model.

  2. Creating the Client
    client = OpenAI(
    api_key=os.environ.get("OPENAI_API_KEY"),
    base_url=os.environ.get("OPENAI_BASE_URL")
    )

This connects your script to the AI API using credentials stored in .bash_profile.

  1. Defining the Function def generate_commit(changes: str) -> str:

This function:
Accepts a change summary
Sends it to the AI
Returns a commit message

  1. Building the Prompt prompt = f""" ... """

The prompt tells the AI:
Use only feat, fix, or docs
Follow exact formatting
Keep subject short
Output only the commit message
Good prompts produce reliable outputs.

  1. Sending the API Request response = client.chat.completions.create(

This sends your prompt to the AI model.
Important settings:
temperature=0.0
→ Makes output predictable and strict
max_tokens=30
→ Prevents long responses

  1. Extracting the Response
    return response.choices[0].message.content.strip()
    This gets only the generated commit message text.

  2. Running the Script
    print(commit_message)
    This prints the final commit message to the terminal.

Example:
feat: add user registration endpoint


Resources & Next Steps
📦 Full Code Repository: KodeKloud Learning Labs
💬 Join Discussion: DEV Community - Share your thoughts and questions
💼 Let's Connect: LinkedIn - I'd love to connect with you

Credits
• All labs are from: KodeKloud
• I sincerely appreciate your provision of these valuable resources.