[router] Implement gRPC SGLangSchedulerClient (#9364)

This commit is contained in:
Chang Su
2025-08-19 16:44:11 -07:00
committed by GitHub
parent b45f753cba
commit 7638f5e44e
10 changed files with 388 additions and 8 deletions

View File

@@ -0,0 +1,8 @@
//! gRPC client module for communicating with SGLang scheduler
//!
//! This module provides a gRPC client implementation for the SGLang router.
pub mod client;
// Re-export the client
pub use client::{proto, SglangSchedulerClient};