├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── llm_cluster.py ├── pyproject.toml └── tests ├── conftest.py └── test_llm_cluster.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-cluster/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-cluster/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-cluster/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-cluster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-cluster/HEAD/README.md -------------------------------------------------------------------------------- /llm_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-cluster/HEAD/llm_cluster.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-cluster/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-cluster/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_llm_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-cluster/HEAD/tests/test_llm_cluster.py --------------------------------------------------------------------------------