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