Skip to content

Commit cdb0466

Browse files
committed
relax lora naming
1 parent dfa3517 commit cdb0466

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "truss"
3-
version = "0.9.98"
3+
version = "0.9.99rc1"
44
description = "A seamless bridge from model development to model delivery"
55
license = "MIT"
66
readme = "README.md"

truss/base/trt_llm_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ class TrussTRTLLMBuildConfiguration(PydanticTrTBaseModel):
184184
speculator: Optional[TrussSpeculatorConfiguration] = None
185185
lora_adapters: Optional[
186186
Dict[
187-
Annotated[str, StringConstraints(pattern=r"^[a-z0-9]+$")],
187+
Annotated[str, StringConstraints(pattern=r"^[a-zA-Z0-9_\-\.]+$")],
188188
CheckpointRepository,
189189
]
190190
] = None

0 commit comments

Comments
 (0)