Skip to content

Commit a52c665

Browse files
author
coderfromthenorth93
committed
Add new fields to the config types
1 parent 4d1c4b9 commit a52c665

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

comfy_config/types.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class ComfyConfig(BaseModel):
5151
models: List[Model] = Field(default_factory=list, alias="Models")
5252
includes: List[str] = Field(default_factory=list)
5353
web: Optional[str] = None
54-
54+
banner_url: str = ""
5555

5656
class License(BaseModel):
5757
file: str = ""
@@ -66,6 +66,10 @@ class ProjectConfig(BaseModel):
6666
dependencies: List[str] = Field(default_factory=list)
6767
license: License = Field(default_factory=License)
6868
urls: URLs = Field(default_factory=URLs)
69+
supported_os: List[str] = Field(default_factory=list)
70+
supported_accelerators: List[str] = Field(default_factory=list)
71+
supported_comfyui_version: str = ""
72+
supported_comfyui_frontend_version: str = ""
6973

7074
@field_validator('license', mode='before')
7175
@classmethod

0 commit comments

Comments
 (0)