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.
Explore the project
Section titled “Explore the project”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:
git clone https://github.com/silverbacking/LiteGate.gitcd LiteGatecargo build --workspacecargo test --workspaceValidate an example configuration
Section titled “Validate an example configuration”Run from the repository root:
cargo run -p litegate-cli -- config validate --config tests/fixtures/config/valid-phase1.tomlThe expected output is Configuration is valid. This operation checks the file;
it does not connect to a provider or send inference requests.
Next steps
Section titled “Next steps”- Configuration: format, validation and file selection.
- Clients and providers: current scope and planned connections.
- Installation and updates: package availability.
- Troubleshooting: common issues at this stage.
See the roadmap for later implementation phases.