diff --git a/sgl-model-gateway/bindings/python/src/sglang_router/launch_router.py b/sgl-model-gateway/bindings/python/src/sglang_router/launch_router.py index 1c32fc22c..506842f84 100644 --- a/sgl-model-gateway/bindings/python/src/sglang_router/launch_router.py +++ b/sgl-model-gateway/bindings/python/src/sglang_router/launch_router.py @@ -41,18 +41,6 @@ def launch_router(args: argparse.Namespace) -> Optional[Router]: mini_lb = MiniLoadBalancer(router_args) mini_lb.start() else: - print( - "\n" - "==============================================================================\n" - "WARNING: This copy of sgl-model-gateway is DEPRECATED and no longer maintained.\n" - "The actively maintained version has moved to:\n" - " https://github.com/lightseekorg/smg\n" - "\n" - "Please migrate to the standalone repository for the latest features,\n" - "bug fixes, and security updates.\n" - "==============================================================================\n", - file=sys.stderr, - ) if Router is None: raise RuntimeError("Rust Router is not installed") router_args._validate_router_args() diff --git a/sgl-model-gateway/src/main.rs b/sgl-model-gateway/src/main.rs index e3e8622a4..3d8b9842f 100644 --- a/sgl-model-gateway/src/main.rs +++ b/sgl-model-gateway/src/main.rs @@ -1153,17 +1153,6 @@ fn main() -> Result<(), Box> { } } - eprintln!("\n{}", "=".repeat(78)); - eprintln!( - "WARNING: This copy of sgl-model-gateway is DEPRECATED and no longer maintained." - ); - eprintln!("The actively maintained version has moved to:"); - eprintln!(" https://github.com/lightseekorg/smg"); - eprintln!(); - eprintln!("Please migrate to the standalone repository for the latest features,"); - eprintln!("bug fixes, and security updates."); - eprintln!("{}\n", "=".repeat(78)); - let prefill_urls = parse_prefill_args(); let mut filtered_args: Vec = Vec::new();