| """Deploy subpackage. | |
| Re-exports public command-builders used by `mindxtrain serve` and tests. | |
| """ | |
| from mindxtrain.deploy.sglang_rocm import build_sglang_command | |
| from mindxtrain.deploy.vllm_launcher import build_vllm_command | |
| __all__ = [ | |
| "build_sglang_command", | |
| "build_vllm_command", | |
| ] | |