mirror of
https://github.com/wassname/ray.git
synced 2026-06-30 17:58:35 +08:00
12 lines
484 B
Python
12 lines
484 B
Python
from ray.serve.backend_config import BackendConfig
|
|
from ray.serve.policy import RoutePolicy
|
|
from ray.serve.api import (
|
|
init, create_backend, create_endpoint, link, split, get_handle, stat,
|
|
set_backend_config, get_backend_config, accept_batch, route) # noqa: E402
|
|
|
|
__all__ = [
|
|
"init", "create_backend", "create_endpoint", "link", "split", "get_handle",
|
|
"stat", "set_backend_config", "get_backend_config", "BackendConfig",
|
|
"RoutePolicy", "accept_batch", "route"
|
|
]
|