Skip to content

Getting started

LiteGate is a local, native AI gateway in development. Its goal is to connect OpenAI- and Anthropic-compatible tools to local and cloud models through a single endpoint.

The code is available on GitHub under Apache 2.0. To work on it, you need Git and Rust with rustup; rust-toolchain.toml in the repository pins the compiler version.

From a terminal:

Terminal window
git clone https://github.com/silverbacking/LiteGate.git
cd LiteGate
cargo build --workspace
cargo test --workspace

Run from the repository root:

Terminal window
cargo run -p litegate-cli -- config validate --config tests/fixtures/config/valid-phase1.toml

The expected output is Configuration is valid. This operation checks the file; it does not connect to a provider or send inference requests.

See the roadmap for later implementation phases.