├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── llm_command_r.py ├── pyproject.toml └── tests ├── cassettes └── test_command_r │ └── test_prompt.yaml ├── conftest.py └── test_command_r.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-command-r/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-command-r/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-command-r/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-command-r/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-command-r/HEAD/README.md -------------------------------------------------------------------------------- /llm_command_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-command-r/HEAD/llm_command_r.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-command-r/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/cassettes/test_command_r/test_prompt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-command-r/HEAD/tests/cassettes/test_command_r/test_prompt.yaml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-command-r/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_command_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/llm-command-r/HEAD/tests/test_command_r.py --------------------------------------------------------------------------------