curl -sL https://agentgateway.dev/install | bash
Check version:
agentgateway --version
Provider: OpenAI
Environment variable:
export OPENAI_API_KEY=***
Used config.yaml to configure OpenAI provider.
agentgateway -f config.yaml
Gateway UI:
curl http://localhost:3000/v1/chat/completions
-H "Content-Type: application/json"
-d '{
"model": "gpt-4.1-nano",
"messages": [{"role": "user", "content": "Hello"}]
}'



