mindXtrain / mindxtrain /deploy /__init__.py
Gregory-L's picture
fork mindXtrain from GitHub (Professor-Codephreak/mindXtrain@661bd41) as the mindX-specific line
dfb775d verified
Raw
History Blame Contribute Delete
296 Bytes
"""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",
]