1
0

__init__.py 645 B

123456789101112131415161718192021
  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.engine.ray_tools import initialize_cluster
  5. from aphrodite.endpoints.llm import LLM
  6. from aphrodite.common.outputs import CompletionOutput, RequestOutput
  7. from aphrodite.common.sampling_params import SamplingParams
  8. __version__ = "0.5.2"
  9. __all__ = [
  10. "LLM",
  11. "SamplingParams",
  12. "RequestOutput",
  13. "CompletionOutput",
  14. "AphroditeEngine",
  15. "EngineArgs",
  16. "AsyncAphrodite",
  17. "AsyncEngineArgs",
  18. "initialize_cluster",
  19. ]