feat(remote_model): support variable remote backend for model loader (#3964)

Signed-off-by: wangyu <wangyu.steph@bytedance.com>
This commit is contained in:
wangyu
2025-03-14 00:40:44 -07:00
committed by GitHub
parent 977d7cd26a
commit 1ce4878d31
22 changed files with 1055 additions and 9 deletions
+12
View File
@@ -723,3 +723,15 @@ class SeparateReasoningReqInput:
class VertexGenerateReqInput:
instances: List[dict]
parameters: Optional[dict] = None
@dataclass
class RpcReqInput:
method: str
parameters: Optional[Dict] = None
@dataclass
class RpcReqOutput:
success: bool
message: str