We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c73c6e commit 3316e05Copy full SHA for 3316e05
invokeai/backend/model_manager/configs/base.py
@@ -28,17 +28,6 @@
28
pass
29
30
31
-class URLModelSource(BaseModel):
32
- type: Literal[ModelSourceType.Url] = Field(default=ModelSourceType.Url)
33
- url: str = Field(
34
- description="The URL from which the model was installed.",
35
- )
36
- api_response: str | None = Field(
37
- default=None,
38
- description="The original API response from the source, as stringified JSON.",
39
40
-
41
42
class Config_Base(ABC, BaseModel):
43
"""
44
Abstract base class for model configurations. A model config describes a specific combination of model base, type and
0 commit comments