diff --git a/docs/src/git.md b/docs/src/git.md index 69d87ddf6682f4b12a99b01e8c9f24766eb4b30e..d71dcbc54d249d70725fa51946cb0e302aa5795a 100644 --- a/docs/src/git.md +++ b/docs/src/git.md @@ -76,6 +76,20 @@ You can ask AI to generate a commit message by focusing on the message editor wi > Note that you need to have an LLM provider configured. Visit [the AI configuration page](./ai/configuration.md) to learn how to do so. +You can specify your preferred model to use by providing a `commit_message_model` agent setting. See [Feature-specific models](./ai/configuration.md#feature-specific-models) for more information. + +```json +{ + "agent": { + "version": "2", + "commit_message_model": { + "provider": "anthropic", + "model": "claude-3-5-haiku" + } + } +} +``` + More advanced AI integration with Git features may come in the future.