mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-01-30 04:11:15 -08:00
relax reponse type check enforcement
This commit is contained in:
parent
3fe9e9e54d
commit
2275f130bf
1 changed files with 2 additions and 2 deletions
|
|
@ -262,5 +262,5 @@ class EmbeddingsResponse(BaseModel):
|
|||
skipped: Dict[str, EmbeddingItem] = Field(title="Skipped", description="Embeddings skipped for the current model (likely due to architecture incompatibility)")
|
||||
|
||||
class MemoryResponse(BaseModel):
|
||||
ram: dict[str, str] | dict[str, float] = Field(title="RAM", description="System memory stats")
|
||||
cuda: dict[str, str] | dict[str, dict] = Field(title="CUDA", description="nVidia CUDA memory stats")
|
||||
ram: dict = Field(title="RAM", description="System memory stats")
|
||||
cuda: dict = Field(title="CUDA", description="nVidia CUDA memory stats")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue