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