llm-git 3.4.0

AI-powered git commit message generator using Claude and other LLMs via OpenAI-compatible APIs
Documentation
//! Git commit message generator library
//!
//! This library provides functionality for analyzing git diffs and generating
//! conventional commit messages using Claude AI via `LiteLLM`.
pub mod analysis;
pub mod api;
pub mod changelog;
pub mod compose;
pub mod compose_types;
pub mod config;
pub mod diff;
pub mod error;
pub mod git;
pub mod llm_cache;
pub mod map_reduce;
pub mod markdown_output;
pub mod normalization;
pub mod patch;
pub mod profile;
pub mod repo;
pub mod style;
pub mod templates;
pub mod testing;
pub mod tokens;
pub mod types;
pub mod validation;

// Re-export commonly used types
pub use config::CommitConfig;
pub use error::{CommitGenError, Result};
pub use types::{ConventionalCommit, Mode, resolve_model_name};

// Re-export rewrite module for main.rs
pub mod rewrite;