🚀 Version 0.23.3
·
31 commits
to main
since this release
0.23.3 (2026-03-05)
♻️ Improvements
🔧 Miscellaneous
- deps)(deps: Bump go.opentelemetry.io/otel/sdk (#242) (5660f71)
- deps: Bump @hono/node-server (#245) (379e1b9)
- deps: Bump @modelcontextprotocol/sdk (#235) (987087e)
- deps: Bump ajv in /examples/docker-compose/mcp/pizza-server (#240) (9a24b04)
- deps: bump dev tool and CI action versions (#247) (0deb374)
- deps: Bump hono in /examples/docker-compose/mcp/pizza-server (#234) (ad5bd93)
- deps: Bump hono in /examples/docker-compose/mcp/pizza-server (#239) (289f2d1)
- deps: Bump hono in /examples/docker-compose/mcp/pizza-server (#241) (bdfb283)
- deps: Bump hono in /examples/docker-compose/mcp/pizza-server (#244) (cbad88f)
- deps: Bump qs in /examples/docker-compose/mcp/pizza-server (#238) (df33864)
- deps: Bump the examples-go group across 7 directories with 5 updates (#250) (11f16ec)
- deps: Bump the examples-npm group (#249) (42ae2f5)
- deps: Reduce dependabot noise for examples dependencies (#248) (0611eaa)
📦 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.3 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.3Using 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.