Skip to content

Commit a6417f1

Browse files
AD fix
Signed-off-by: yechank <[email protected]>
1 parent 2ce04a0 commit a6417f1

File tree

1 file changed

+1
-1
lines changed
  • tensorrt_llm/_torch/auto_deploy

1 file changed

+1
-1
lines changed

tensorrt_llm/_torch/auto_deploy/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class ADInputProcessor(DefaultInputProcessor):
2222
"""
2323

2424
def __init__(self, tokenizer: Optional[TokenizerBase], processor: Optional[Any] = None):
25-
super().__init__(model_path=None, model_config=None, tokenizer=tokenizer)
25+
super().__init__(model_path=None, config=None, tokenizer=tokenizer)
2626
# NOTE: HF's tokenizer/processor that has the apply_chat_template method
2727
self.processor = processor or getattr(tokenizer, "tokenizer", None)
2828

0 commit comments

Comments
 (0)