|
1 | 1 | from .._torch.async_llm import AsyncLLM |
| 2 | +from ..conversation_params import ConversationParams |
2 | 3 | from ..disaggregated_params import DisaggregatedParams, DisaggScheduleStyle |
3 | 4 | from ..executor import CompletionOutput, LoRARequest, RequestError |
4 | 5 | from ..sampling_params import GuidedDecodingParams, SamplingParams |
5 | 6 | from ..scheduling_params import SchedulingParams |
6 | 7 | from .build_cache import BuildCacheConfig |
7 | 8 | from .llm import LLM, RequestOutput |
8 | | - |
9 | 9 | # yapf: disable |
10 | 10 | from .llm_args import (AttentionDpConfig, AutoDecodingConfig, BatchingType, |
11 | 11 | CacheTransceiverConfig, CalibConfig, |
12 | 12 | CapacitySchedulerPolicy, ContextChunkingPolicy, |
13 | 13 | CudaGraphConfig, DeepSeekSparseAttentionConfig, |
14 | | - DeepSeekV4SparseAttentionConfig, |
15 | | - DFlashDecodingConfig, DraftTargetDecodingConfig, |
16 | | - DynamicBatchConfig, Eagle3DecodingConfig, |
17 | | - EagleDecodingConfig, ExtendedRuntimePerfKnobConfig, |
18 | | - KvCacheConfig, LlmArgs, LookaheadDecodingConfig, |
19 | | - MedusaDecodingConfig, MoeConfig, MTPDecodingConfig, |
20 | | - NGramDecodingConfig, PARDDecodingConfig, |
21 | | - PrometheusMetricsConfig, ReorderRequestPolicyConfig, |
22 | | - RocketSparseAttentionConfig, SADecodingConfig, |
23 | | - SAEnhancerConfig, SaveHiddenStatesDecodingConfig, |
24 | | - SchedulerConfig, SkipSoftmaxAttentionConfig, |
25 | | - TorchCompileConfig, TorchLlmArgs, TrtLlmArgs, |
26 | | - UserProvidedDecodingConfig) |
| 14 | + DeepSeekV4SparseAttentionConfig, DFlashDecodingConfig, |
| 15 | + DraftTargetDecodingConfig, DynamicBatchConfig, |
| 16 | + Eagle3DecodingConfig, EagleDecodingConfig, |
| 17 | + ExtendedRuntimePerfKnobConfig, KvCacheConfig, LlmArgs, |
| 18 | + LookaheadDecodingConfig, MedusaDecodingConfig, MoeConfig, |
| 19 | + MTPDecodingConfig, NGramDecodingConfig, |
| 20 | + PARDDecodingConfig, PrometheusMetricsConfig, |
| 21 | + ReorderRequestPolicyConfig, RocketSparseAttentionConfig, |
| 22 | + SADecodingConfig, SAEnhancerConfig, |
| 23 | + SaveHiddenStatesDecodingConfig, SchedulerConfig, |
| 24 | + SkipSoftmaxAttentionConfig, TorchCompileConfig, |
| 25 | + TorchLlmArgs, TrtLlmArgs, UserProvidedDecodingConfig) |
27 | 26 | from .llm_utils import (BuildConfig, KvCacheRetentionConfig, QuantAlgo, |
28 | 27 | QuantConfig) |
29 | 28 | from .mm_encoder import MultimodalEncoder |
|
38 | 37 | 'GuidedDecodingParams', |
39 | 38 | 'SamplingParams', |
40 | 39 | 'DisaggregatedParams', |
| 40 | + 'ConversationParams', |
41 | 41 | 'DisaggScheduleStyle', |
42 | 42 | 'KvCacheConfig', |
43 | 43 | 'KvCacheRetentionConfig', |
|
0 commit comments