You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `-v`flag displays a concise version string, while`--version` (or `-V`) shows comprehensive build information including Git commit, build time, compiler versions, and platform details.
111
+
The `--version` (or `-V`) flag displays the version string. Use`--version-verbose` for comprehensive build information including Git commit, build time, compiler versions, and platform details.
- OpenAI backend mode acts as a proxy to a single remote endpoint; load balancing is not applied.
231
239
- Provide exactly one `--worker-urls` entry per router instance.
232
-
- The Rust binary supports the same flags (`./target/release/sglang-router --backend openai ...`).
240
+
- The Rust binary supports the same flags (`./target/release/sgl-model-gateway --backend openai ...`).
233
241
234
242
### MCP Integration
235
243
The SGL Model Gateway provides native Model Context Protocol (MCP) client integration, enabling tool calling across STDIO, SSE, and Streamable transports. MCP servers are configured via a YAML configuration file and registered at startup through the workflow engine.
236
244
237
245
#### Basic Usage
238
246
```bash
239
247
# Rust binary
240
-
./target/release/sglang-router \
248
+
./target/release/sgl-model-gateway \
241
249
--mcp-config-path /path/to/mcp-config.yaml \
242
250
--worker-urls http://worker1:8000
243
251
@@ -407,7 +415,7 @@ All administrative routes inherit router API-key protection when `--api-key` is
407
415
### Service Discovery
408
416
Enable Kubernetes discovery to reconcile workers automatically:
0 commit comments