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