Releases: yankeexe/ai-gen-commit
Releases · yankeexe/ai-gen-commit
Dependency upgrades
Add support for Mistral
export OPENAI_API_KEY=<mistral-api-key>
export AI_COMMIT_PROVIDER=mistral0.0.10
Add support for Qwen provider:
export AI_COMMIT_PROVIDER=qwen
export OPENAI_API_KEY=<qwen-api-key> Full Changelog: 0.0.9...0.0.10
0.0.9
Bring your own provider:
You can use any OPEN AI compatible provider/server for commit generation.
export AI_COMMIT_PROVIDER=custom # should be set to custom
export AI_COMMIT_MODEL=llama3.2:3b # example
export AI_COMMIT_PROVIDER_BASE_URL=http://localhost:11434/v1 # example
export OPENAI_API_KEY=<your-api-key> # if your custom provider requires one0.0.8
- introduce new env var to specify the model to use to generate commit message:
export AI_COMMIT_MODEL=<model-name>
# Example:
export AI_COMMIT_PROVIDER="groq"
export AI_COMMIT_MODEL="qwen-2.5-32b"
aic -rFull Changelog: 0.0.7...0.0.8