suppress warning in CLI

This commit is contained in:
Ashwin Bharambe 2024-08-21 12:25:13 -07:00
parent 270b5502d7
commit face3ceff1

View file

@ -178,6 +178,9 @@ class ModelEntry(BaseModel):
model_id: str model_id: str
files: Dict[str, str] files: Dict[str, str]
class Config:
protected_namespaces = ()
class Manifest(BaseModel): class Manifest(BaseModel):
models: List[ModelEntry] models: List[ModelEntry]