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