1234567891011121314151617181920212223 |
- from aphrodite.engine.args_tools import AsyncEngineArgs, EngineArgs
- from aphrodite.engine.async_aphrodite import AsyncAphrodite
- from aphrodite.engine.aphrodite_engine import AphroditeEngine
- from aphrodite.engine.ray_tools import initialize_ray_cluster
- from aphrodite.endpoints.llm import LLM
- from aphrodite.modeling.models import ModelRegistry
- from aphrodite.common.outputs import CompletionOutput, RequestOutput
- from aphrodite.common.sampling_params import SamplingParams
- __version__ = "0.5.2"
- __all__ = [
- "LLM",
- "ModelRegistry",
- "SamplingParams",
- "RequestOutput",
- "CompletionOutput",
- "AphroditeEngine",
- "EngineArgs",
- "AsyncAphrodite",
- "AsyncEngineArgs",
- "initialize_ray_cluster",
- ]
|