-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow generating commit message via ollama #236
Draft
jserv
wants to merge
4
commits into
master
Choose a base branch
from
aicommit
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Use an large language model (via ollama) to generate commit message that match commit style by learning from previous commits. Currently, qwen2.5-coder is used for commit message generation, code reasoning, and suggestions. Change-Id: Iaf4b1952a3e14bbdd4c832aa4a93753f7ca11473
Two-Stage Commit Message Generation: First, generate a detailed commit description. Then, refine the subject line for conciseness and clarity. If the initial subject exceeds 50 characters, the script regenerates it with explicit length constraints. Up to 10 iterations ensure compliance with Git conventions. If still too long, a warning prompts users for manual adjustments. This commit also improved LLM instructions for better adherence to commit message best practices. Clear separation of Subject Line and Body with enforced constraints. Set SHOW_AI_COMMIT_PROMPT to see full prompt. Set TEMPERATURE to change model temperature. Change-Id: I6b9c1337210b86a400e84c3984c17dcdc72fb26e
Refine aicommit with iterative subject Shortening
Transform git commit tracking from subject-only to full structured messages. This enhancement provides richer context for commit message practices and creates a format better suited for LLM learning and manipulation. Change-Id: I601aa5d46873066c13a324bb3e0a6a16bd6864d4
The current architecture's repeated regeneration of style prompts results in slower performance. Why not adopt a fixed style prompt instead? For example, with clear, predefined instructions like a Linux commit style. Alternatively, we could generate the style prompt once and only regenerate it if the model changes (or any condition that could affect model performance). Current Strategygraph LR
OS_Start[Start] --"git log"--> OS_GenStylePrompt["Generate Style Prompt every commit"]
OS_GenStylePrompt --"Style prompt"--> OS_GenCommitMsg[Generate Commit Message]
OS_GenCommitMsg --"suggested commit message"--> OS_End[End]
Option 1: Fixed Style Prompt (only 1 inference time)graph LR
FS_Start[Start] --"Fixed style prompt"--> FS_GenCommitMsg[Generate Commit Message]
FS_GenCommitMsg --"suggested commit message"--> FS_End[End]
Option 2: Generate Prompt Oncegraph TD
GP_Start[Start] --> GP_CheckPrompt{"Check Style Prompt Exists (for current model)"}
GP_CheckPrompt -- "Style Prompt File Exists?" --> GP_LoadPrompt[Load Stored Style Prompt]
GP_CheckPrompt -- "Style Prompt File Missing or difference model name" --> GP_GenStylePrompt[Generate Style Prompt]
GP_GenStylePrompt -- "Generated Style Prompt" --> GP_SavePrompt[Save Style Prompt]
GP_SavePrompt -- "Saved Style Prompt" --> GP_GenCommitMsg[Generate Commit Message]
GP_LoadPrompt -- "Loaded Style Prompt" --> GP_GenCommitMsg
GP_GenCommitMsg -- "suggested commit message" --> GP_End[End]
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Use an large language model (via ollama) to generate commit message that match commit style by learning from previous commits.
Currently, qwen2.5-coder is used for commit message generation, code reasoning, and suggestions.
Reference: Using Large Language Models for Commit Message Generation: A Preliminary Study