Skip to content

Commit

Permalink
rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
joostinyi committed Nov 25, 2024
1 parent 11c38ab commit 3641e68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "truss"
version = "0.9.54rc3"
version = "0.9.54rc4"
description = "A seamless bridge from model development to model delivery"
license = "MIT"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion truss/templates/trtllm-briton/src/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Extension:

def __init__(self, *args, **kwargs):
self._config = kwargs["config"]
if TRTLLM_SPEC_DEC_TARGET_MODEL_NAME not in self._config.get("trt_llm"):
if TRTLLM_SPEC_DEC_TARGET_MODEL_NAME in self._config.get("trt_llm"):
self._model = SpecDecModel(*args, **kwargs)
else:
self._model = Model(*args, **kwargs)
Expand Down

0 comments on commit 3641e68

Please sign in to comment.