v0.3.1 - 2024-03-18
- Added
- Git commit log files are now stored in .loz_log within each Git repository where Loz is executed.
- The ability to enable/disable appending 'generated by ${model name}' at the end of the Git commit message by running config attribution true or config attribution false.
- Added --attribution (-a) runtime argument to override the config attribution setting. The original attribution value stored remains unchanged.
v0.3.0 - 2024-02-24
- Added
- Run Linux commands based on user prompts. Users can now execute Linux commands using natural language. For example, by running
loz "find the largest file in the current directory"
,Loz
will interpret the instruction and execute the corresponding Linux commands likefind . -type f -exec ls -l {} + | sort -k 5 -nr | head -n 1
to find the largest file.
- Run Linux commands based on user prompts. Users can now execute Linux commands using natural language. For example, by running
v0.2.13 - 2024-02-22
- Added
- Enhanced Git Commit Formatting: Commit messages are now structured with a clear separation between the title and body, improving readability and adherence to Git best practices.
v0.2.12 - 2024-02-15
- Added
- Add support for all models compatible with Ollama
v0.2.11 - 2024-02-13
- Added
- Store OpenAI API Key in
config.json
(#17, contributed by @honeymaro)
- Store OpenAI API Key in
- Added
- Add support for llama2 and codellama models via ollama integration.