Skip to content

Releases: yankeexe/ai-gen-commit

Dependency upgrades

05 Jul 04:26

Choose a tag to compare

0.1.0

Version bump

Add support for Mistral

21 Jun 22:56

Choose a tag to compare

export OPENAI_API_KEY=<mistral-api-key>
export AI_COMMIT_PROVIDER=mistral

0.0.10

17 Feb 04:17

Choose a tag to compare

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

17 Feb 04:14

Choose a tag to compare

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 one

0.0.8

16 Feb 14:57

Choose a tag to compare

  • 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 -r

Full Changelog: 0.0.7...0.0.8