Replies: 4 comments 2 replies
-
Yes It would be nice to have some amount of customisation to guide the model to generate messages with a specific format. Like say, "add the <branch_name | name | date> as header and number the commit messages" |
Beta Was this translation helpful? Give feedback.
-
Not so good now, because it's hardcoded let mut diff_text = diff.await??;
const ONE_MB: usize = 1_000_000;
if diff_text.len() > ONE_MB {
diff_text = diff_text.chars().take(ONE_MB).collect()
}
let subject = this.update(&mut cx, |this, cx| {
this.commit_editor.read(cx).text(cx).lines().next().map(ToOwned::to_owned).unwrap_or_default()
})?;
let text_empty = subject.trim().is_empty();
let content = if text_empty {
format!("{PROMPT}\nHere are the changes in this commit:\n{diff_text}")
} else {
format!("{PROMPT}\nHere is the user's subject line:\n{subject}\nHere are the changes in this commit:\n{diff_text}\n")
};
const PROMPT: &str = include_str!("commit_message_prompt.txt");
let request = LanguageModelRequest {
messages: vec![LanguageModelRequestMessage {
role: Role::User,
content: vec![content.into()],
cache: false,
}],
tools: Vec::new(),
stop: Vec::new(),
temperature: None,
}; commit_message_prompt.txt
|
Beta Was this translation helpful? Give feedback.
-
Being able to customize the prompt would allow some specific git commit message specification like gitmoji / conventional commits / etc. |
Beta Was this translation helpful? Give feedback.
-
This seems simple enough to update :
const PROMPT: &str = GitPanelSettings::get_global(cx)
.git_commit_prompt
.unwrap_or(include_str!("commit_message_prompt.txt"); I'm not too sure about the syntax as I'm definitely not a Rust expert, but if that sounds like something you guys would like to see implemented, I'll be more than happy to try to work on a PR 🙂 |
Beta Was this translation helpful? Give feedback.
-
Is there any way to configure or give instructions on how i need the generated messages to be? I have a project with an automated changelog based on commits with conventional format, it would be nice to tell zed to use that format on auto generated commits
Beta Was this translation helpful? Give feedback.
All reactions