Skip to content

Commit

Permalink
Update configuration to reflect a change in the system message and mo…
Browse files Browse the repository at this point in the history
…del name, enhancing clarity and functionality. Adjusted prompt instructions for improved user guidance.
  • Loading branch information
shanginn committed Jul 19, 2024
1 parent 1af1b97 commit c44f167
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ export default {
openCommitTextEditor: false,
language: 'english',
systemMessagePromptTemplate: '' +
'You are expert AI, your job is to write clear and concise Git commit messages.' +
'You are expert software developer, your job is to write clear and concise Git commit messages. ' +
'Your responsibility is to ensure that these messages accurately describe the changes made in each commit,' +
'follow established guidelines. Provide a clear history of changes to the codebase.' +
'Write 1-2 sentences. Output only the commit message without comments or other text.',
humanPromptTemplate: '' +
'Read the following git diff for a multiple files and ' +
'write 1-2 sentences commit message in {language}' +
'without mentioning lines or files.' +
'Explain why these changes were made (summarize the reasoning):\n' +
'If the reason behind the changed can be deducted from the changed, provide this reason:\n' +
'{diff}',
excludeFromDiff: [
'*.lock', '*.lockb', '*-lock.json', '*-lock.yaml'
],
diffFilter: 'ACMRTUXB',
modelName: "gpt-3.5-turbo-16k",
modelName: "gpt-4o-mini",
temperature: 0.0,
maxTokens: 2000,
}

0 comments on commit c44f167

Please sign in to comment.