π Version 0.23.0
·
50 commits
to main
since this release
0.23.0 (2026-01-22)
β¨ Features
π§ Miscellaneous
π¦ Quick Installation
Binary Installation
Install latest version:
curl -fsSL https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/install.sh | bashInstall this version:
curl -fsSL https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/install.sh | VERSION=v0.23.0 bashInstall to custom directory:
curl -fsSL https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/install.sh | INSTALL_DIR=~/.local/bin bashVerify installation:
inference-gateway --versionRunning as a Container (Recommended)
Using Docker:
docker run -d \
-p 8080:8080 \
-e OPENAI_API_KEY=your-api-key \
ghcr.io/inference-gateway/inference-gateway:0.23.0Using Docker Compose:
# Download example configuration
curl -O https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/examples/docker-compose/basic/docker-compose.yml
curl -O https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/examples/docker-compose/basic/.env.example
mv .env.example .env
# Edit .env with your API keys
# Start the gateway
docker compose up -dFor more installation options and documentation, visit the README.