nit [skip e2e]

This commit is contained in:
Sunny Liu
2025-04-19 14:06:01 -04:00
committed by Sung Ching Liu
parent aba484de97
commit 143b2e082c

View File

@@ -28,7 +28,7 @@ class QuantizationConfig(BaseModel):
backend: Literal["bnb", "hqq", "gptq"] | None = None
bits: int | None = None
bnb_config: dict[str, Any] | None = None
hqq_config: Annotated[list[HQQConfig], MinLen(1)] | None = None
hqq_config: HQQConfig | Annotated[list[HQQConfig], MinLen(1)] | None = None
@model_validator(mode="before")
@classmethod