You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Enhance commit summary generation with optional description
- Updated the APIClient to include a parameter for generating detailed commit descriptions using a local LLM client.
- Modified the CommitDocGenHook to support the new parameter, allowing for more flexible commit summary generation.
- Adjusted the commit_code function to accept a flag for description generation, improving user control over commit message details.
- Refined LLMClient's generate_commit_summary method to conditionally include a description based on the new parameter.
```
1. A short, focused commit title (50-72 characters) in a Semantic Commit Messages format. Format: <type>(<scope>): <subject>
95
-
2. A detailed description that explains what was changed, why it was changed in both business and technical aspects, and any important context
95
+
{'2. A detailed description that explains what was changed, why it was changed in both business and technical aspects, and any important context'ifgenerate_descriptionelse''}
96
96
97
97
List of Semantic Commit Message types that you can use:
98
98
feat: (new feature for the user, not a new feature for build script)
0 commit comments