File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff 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
5656class 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
You can’t perform that action at this time.
0 commit comments