Skip to content

Commit

Permalink
Fix: update pluginVersion to 0.0.6, change Ollama model from llama3:8…
Browse files Browse the repository at this point in the history
…b to mistral:7b
  • Loading branch information
itishermann committed Jun 26, 2024
1 parent 64317eb commit 552d0f0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ollama-commit-summarizer

![Build](https://github.com/itishermann/ollama-commit-summarizer/workflows/Build/badge.svg)
[![Version](https://img.shields.io/jetbrains/plugin/v/MARKETPLACE_ID.svg)](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID)
[![Downloads](https://img.shields.io/jetbrains/plugin/d/MARKETPLACE_ID.svg)](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID)
[![Version](https://img.shields.io/jetbrains/plugin/v/24734.svg)](https://plugins.jetbrains.com/plugin/24734)
[![Downloads](https://img.shields.io/jetbrains/plugin/d/24734.svg)](https://plugins.jetbrains.com/plugin/24734)
<!-- Plugin description -->
The Ollama Commit Summarizer Plugin enhances your development workflow by automatically generating meaningful and context-aware commit messages. Powered by Ollama's advanced language model, this plugin analyzes your code changes and provides precise, human-readable commit messages that save time and ensure consistency across your projects.

Expand All @@ -26,7 +26,7 @@ The Ollama Commit Summarizer Plugin enhances your development workflow by automa

- Compatible with IntelliJ IDEA, PyCharm, WebStorm, PhpStorm, RubyMine, and other JetBrains IDEs.
- Requires a valid Git installation and configured repository.
- Ollama must be installed and running locally or remotely. Visit [Ollama][ollama-github-url] to learn more.
- Ollama must be installed and running locally or remotely. Visit [Ollama](https://github.com/ollama/ollama) to learn more.

## Installation

Expand All @@ -39,21 +39,25 @@ The Ollama Commit Summarizer Plugin enhances your development workflow by automa

Contributions are welcome! If you'd like to contribute to this project, please follow these steps:

1. Fork the repository from [GitHub][repo-url].
1. Fork the repository from [GitHub](https://github.com/itishermann/ollama-commit-summarizer).
2. Create a new branch (`git checkout -b feature-branch`).
3. Make your changes and commit them (`git commit -am 'Add new feature'`).
4. Push to the branch (`git push origin feature-branch`).
5. Create a new Pull Request.
<!-- Plugin description end -->

---

Enhance your development process with the Ollama Commit Summarizer Plugin and experience the future of commit message automation!

---

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

---

Enhance your development process with the Ollama Commit Summarizer Plugin and experience the future of automated commit messaging!
<!-- Plugin description end -->
---
Plugin based on the [IntelliJ Platform Plugin Template][template].

[template]: https://github.com/JetBrains/intellij-platform-plugin-template
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = me.itishermann.ollamacommitsummarizer
pluginName = ollama-commit-summarizer
pluginRepositoryUrl = https://github.com/itishermann/ollama-commit-summarizer
# SemVer format -> https://semver.org
pluginVersion = 0.0.5
pluginVersion = 0.0.6

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 232
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ internal class OllamaSettingsState
var serverUrl: @NotNull @NonNls String? = "http://localhost:11434"
var userName: @Nullable @NonNls String? = null
var password: @Nullable @NonNls String? = null
var modelName: @NotNull @NonNls String? = "llama3:8b"
var modelName: @NotNull @NonNls String? = "mistral:7b"
var prompt: @NotNull @NonNls String? = """
From the following git diff, generate a commit message respecting the Conventional Commits specification.
Your response strictly have to be only the commit message.
Expand Down

0 comments on commit 552d0f0

Please sign in to comment.