File tree Expand file tree Collapse file tree 2 files changed +13
-12
lines changed
src/main/kotlin/com/github/blarc/ai/commits/intellij/plugin/settings/prompts Expand file tree Collapse file tree 2 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 7
7
- Support for Azure OpenAI.
8
8
- Sort LLM client configurations by provider name and configuration name.
9
9
10
+ ### Changed
11
+
12
+ - Update default prompt for generating commit messages with GitMoji.
13
+
10
14
### Fixed
15
+
11
16
- Open AI configuration setting ` organizationId ` is not used when verifying configuration.
12
17
- Gemini configuration settings ` projectId ` and ` location ` are not used when verifying configuration.
13
18
Original file line number Diff line number Diff line change @@ -33,20 +33,16 @@ enum class DefaultPrompts(val prompt: Prompt) {
33
33
)
34
34
),
35
35
36
- // ✨ feat(mine): Generate objects UUIDs and start team timers on game start
36
+ // author: ljgonzalez1
37
+ // source: https://github.com/Blarc/ai-commits-intellij-plugin/discussions/18#discussioncomment-10718381
38
+ // ✨ feat(conditions): add HpComparisonType enum and ICondition interface for unit comparison logic
37
39
EMOJI (
38
40
Prompt (
39
- " Emoji" ,
40
- " Prompt for commit message in the conventional commit convention with GitMoji convention." ,
41
- " Write a clean and comprehensive commit message in the conventional commit convention. " +
42
- " I'll send you an output of 'git diff --staged' command, and you convert " +
43
- " it into a commit message. " +
44
- " Use GitMoji convention to preface the commit. " +
45
- " Do NOT add any descriptions to the commit, only commit message. " +
46
- " Use the present tense. " +
47
- " Lines must not be longer than 74 characters.\n " +
48
- " {Use this hint to improve the commit message: \$ hint}\n " +
49
- " Use {locale} language to answer.\n " +
41
+ " GitMoji" ,
42
+ " Prompt for generating commit messages with GitMoji." ,
43
+ " Write concise commit message from 'git diff --staged' in format `[EMOJI] [TYPE](topic): " +
44
+ " description in {locale}`. Use GitMoji, present tense, max 120 chars.\n " +
45
+ " \n " +
50
46
" {diff}" ,
51
47
false
52
48
)
You can’t perform that action at this time.
0 commit comments