__init__.py 728 B

1234567891011121314151617181920212223
  1. from aphrodite.engine.args_tools import AsyncEngineArgs, EngineArgs
  2. from aphrodite.engine.async_aphrodite import AsyncAphrodite
  3. from aphrodite.engine.aphrodite_engine import AphroditeEngine
  4. from aphrodite.executor.ray_utils import initialize_ray_cluster
  5. from aphrodite.endpoints.llm import LLM
  6. from aphrodite.modeling.models import ModelRegistry
  7. from aphrodite.common.outputs import CompletionOutput, RequestOutput
  8. from aphrodite.common.sampling_params import SamplingParams
  9. __version__ = "0.5.3"
  10. __all__ = [
  11. "LLM",
  12. "ModelRegistry",
  13. "SamplingParams",
  14. "RequestOutput",
  15. "CompletionOutput",
  16. "AphroditeEngine",
  17. "EngineArgs",
  18. "AsyncAphrodite",
  19. "AsyncEngineArgs",
  20. "initialize_ray_cluster",
  21. ]