├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── llm_commit.py ├── pyproject.toml └── tests └── test_llm_commit.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNtousakis/llm-commit/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNtousakis/llm-commit/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNtousakis/llm-commit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNtousakis/llm-commit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNtousakis/llm-commit/HEAD/README.md -------------------------------------------------------------------------------- /llm_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNtousakis/llm-commit/HEAD/llm_commit.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNtousakis/llm-commit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_llm_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNtousakis/llm-commit/HEAD/tests/test_llm_commit.py --------------------------------------------------------------------------------