# `myModel`: Local LLM inference and serving myModel is a collection of tools for deploying local LLMs across multiple runtimes (vLLM, llama.cpp) and platforms, with an optional tuning pipeline. An external LiteLLM gateway fronts the local servers. See [The LiteLLM Gateway](gateway.md). Together, these tools form one cohesive group, but they are not a single product. They work together to serve models over HTTP from your own hardware. ## Install The source repository is public. Install from Git with Python 3.13 or newer: ```sh uv tool install git+https://gitlab.com/doering-ai/apps/model.git ``` Or clone and sync the development environment: ```sh git clone https://gitlab.com/doering-ai/apps/model.git cd model uv sync ``` See the [Quickstart](quickstart) for a full walkthrough. ```{toctree} :maxdepth: 2 1. Quickstart 2. Serving with vLLM 3. The LiteLLM Gateway 4. Container Deployments 5. Model Catalogue 6. Fine-tuning 7. Ternary Bonsai 8. Python API 9. Auth & TLS ```