Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tensorrt_llm/_torch/auto_deploy/llm_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,11 @@ class AutoDeployConfig(DynamicYamlMixInForSettings, BaseSettings):
),
)

draft_checkpoint_loader: Optional[object] = Field(
default=None,
description="The checkpoint loader to use for the draft model when using speculative decoding with two models.",
)

### SEQUENCE INTERFACE CONFIG ##################################################################
max_input_len: int = Field(default=1024, description="The maximum input length.")
max_num_tokens: Optional[int] = Field(default=None, description="The maximum number of tokens.")
Expand Down
Loading