[model-gateway] fix left over sgl-router names to sgl-model-gateway (#14512)

This commit is contained in:
Simo Lin
2025-12-05 12:41:48 -08:00
committed by GitHub
parent 49dfa1d891
commit aed835e32d
16 changed files with 55 additions and 55 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
# WASM Guest Examples for sgl-router
# WASM Guest Examples for sgl-model-gateway
This directory contains example WASM middleware components demonstrating how to implement custom middleware for sgl-router using the WebAssembly Component Model.
This directory contains example WASM middleware components demonstrating how to implement custom middleware for sgl-model-gateway using the WebAssembly Component Model.
## Examples Overview
@@ -56,7 +56,7 @@ All examples require:
- Rust toolchain (latest stable)
- `wasm32-wasip2` target: `rustup target add wasm32-wasip2`
- `wasm-tools`: `cargo install wasm-tools`
- sgl-router running with WASM enabled (`--enable-wasm`)
- sgl-model-gateway running with WASM enabled (`--enable-wasm`)
## Building All Examples
@@ -1,6 +1,6 @@
# WASM Auth Example for sgl-router
# WASM Auth Example for sgl-model-gateway
This example demonstrates API key authentication middleware for sgl-router using the WebAssembly Component Model.
This example demonstrates API key authentication middleware for sgl-model-gateway using the WebAssembly Component Model.
## Overview
@@ -1,6 +1,6 @@
# WASM Logging Example for sgl-router
# WASM Logging Example for sgl-model-gateway
This example demonstrates logging and tracing middleware for sgl-router using the WebAssembly Component Model.
This example demonstrates logging and tracing middleware for sgl-model-gateway using the WebAssembly Component Model.
## Overview
@@ -1,6 +1,6 @@
# WASM Rate Limit Example for sgl-router
# WASM Rate Limit Example for sgl-model-gateway
This example demonstrates rate limiting middleware for sgl-router using the WebAssembly Component Model.
This example demonstrates rate limiting middleware for sgl-model-gateway using the WebAssembly Component Model.
## Overview