pipeline
Actual host definition.
Will be launched as a subprocess.
ComfyUIHost
Bases: HostBase, IWorkfileHost, ILoadHost, IPublishHost
Main implementation of actual host operations.
Source code in client/ayon_comfyui/api/pipeline.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
stub property
Retrieve stub to interact with client.
get_app_information()
Return application information.
Source code in client/ayon_comfyui/api/pipeline.py
56 57 58 59 60 61 | |
get_workfile_extensions()
Return list of workfile extensions.
Source code in client/ayon_comfyui/api/pipeline.py
63 64 65 | |
install()
Install host context.
Source code in client/ayon_comfyui/api/pipeline.py
67 68 69 70 71 72 73 74 75 | |
containerise(name, namespace, context, image_upload_info, loader=None, suffix='_CON')
Imprint layer with metadata.
Containerisation enables a tracking of version, author and origin for loaded assets.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name | str | Name of resulting assembly | required |
namespace | str | Namespace under which to host container | required |
context | dict | Asset information | required |
image_upload_info | (dict, list[dict]) | Uploaded image information, gotten back from /upload/image endpoint | required |
loader | str | Name of loader used to produce this container. | None |
suffix | str | Suffix of container, defaults to | '_CON' |
Returns:
| Name | Type | Description |
|---|---|---|
container | str | Name of container assembly |
Source code in client/ayon_comfyui/api/pipeline.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | |
list_instances()
Get cached instances in metadata.
Returns: List of dictionaries describing instances
Source code in client/ayon_comfyui/api/pipeline.py
116 117 118 119 120 121 122 123 124 125 | |
ls()
Yields valid containers.
Equivalent to ayon core api.ls().
Source code in client/ayon_comfyui/api/pipeline.py
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | |
uninstall()
Cleanup registration data.
Source code in client/ayon_comfyui/api/pipeline.py
107 108 109 110 111 112 113 | |