horde-engine 2.22.2__tar.gz → 3.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1283) hide show
  1. {horde_engine-2.22.2 → horde_engine-3.1.0}/.gitignore +1 -1
  2. {horde_engine-2.22.2 → horde_engine-3.1.0}/PKG-INFO +277 -250
  3. horde_engine-3.1.0/README.md +309 -0
  4. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/__init__.py +5 -0
  5. horde_engine-3.1.0/hordelib/_version.py +24 -0
  6. horde_engine-3.1.0/hordelib/api.py +112 -0
  7. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/benchmark.py +1 -1
  8. horde_engine-3.1.0/hordelib/beta_models.py +116 -0
  9. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/comfy_horde.py +496 -452
  10. horde_engine-3.1.0/hordelib/config_path.py +68 -0
  11. horde_engine-3.1.0/hordelib/consts.py +19 -0
  12. horde_engine-3.1.0/hordelib/execution/__init__.py +20 -0
  13. horde_engine-3.1.0/hordelib/execution/comfy_patches.py +463 -0
  14. horde_engine-3.1.0/hordelib/execution/graph_utils.py +169 -0
  15. horde_engine-3.1.0/hordelib/execution/in_process.py +127 -0
  16. horde_engine-3.1.0/hordelib/execution/interface.py +92 -0
  17. horde_engine-3.1.0/hordelib/execution/phase_timing.py +140 -0
  18. horde_engine-3.1.0/hordelib/execution/progress_hook.py +107 -0
  19. horde_engine-3.1.0/hordelib/execution/sampling_lease.py +105 -0
  20. horde_engine-3.1.0/hordelib/feature_impact.py +365 -0
  21. horde_engine-3.1.0/hordelib/horde.py +736 -0
  22. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/initialisation.py +27 -22
  23. horde_engine-3.1.0/hordelib/installation/__init__.py +16 -0
  24. horde_engine-3.1.0/hordelib/installation/__main__.py +61 -0
  25. horde_engine-3.1.0/hordelib/installation/installer.py +161 -0
  26. horde_engine-3.1.0/hordelib/installation/manifest.json +19 -0
  27. horde_engine-3.1.0/hordelib/installation/manifest.py +84 -0
  28. horde_engine-3.1.0/hordelib/integrations/__init__.py +5 -0
  29. horde_engine-3.1.0/hordelib/integrations/logfire_comfy_internals.py +305 -0
  30. horde_engine-3.1.0/hordelib/integrations/logfire_setup.py +257 -0
  31. horde_engine-3.1.0/hordelib/metrics.py +210 -0
  32. horde_engine-3.1.0/hordelib/model_manager/base.py +562 -0
  33. horde_engine-3.1.0/hordelib/model_manager/civitai_adhoc.py +857 -0
  34. horde_engine-3.1.0/hordelib/model_manager/civitai_provider.py +86 -0
  35. horde_engine-3.1.0/hordelib/model_manager/civitai_records.py +112 -0
  36. horde_engine-3.1.0/hordelib/model_manager/codeformer.py +14 -0
  37. horde_engine-3.1.0/hordelib/model_manager/compvis.py +101 -0
  38. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_manager/controlnet.py +5 -3
  39. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_manager/diffusers.py +3 -2
  40. horde_engine-3.1.0/hordelib/model_manager/esrgan.py +18 -0
  41. horde_engine-3.1.0/hordelib/model_manager/gfpgan.py +18 -0
  42. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_manager/hyper.py +98 -44
  43. horde_engine-3.1.0/hordelib/model_manager/lora.py +697 -0
  44. horde_engine-3.1.0/hordelib/model_manager/miscellaneous.py +18 -0
  45. horde_engine-3.1.0/hordelib/model_manager/safety_checker.py +18 -0
  46. horde_engine-3.1.0/hordelib/model_manager/ti.py +365 -0
  47. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/layered_diffusion.py +103 -63
  48. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion/attention_sharing.py +31 -61
  49. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion/models.py +24 -58
  50. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion/utils.py +21 -23
  51. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/__init__.py +1 -0
  52. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/utils/misc.py +19 -2
  53. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/node_controlnet_model_loader.py +1 -1
  54. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/node_image_loader.py +1 -1
  55. horde_engine-3.1.0/hordelib/nodes/node_image_output.py +62 -0
  56. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/node_lora_loader.py +29 -8
  57. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/node_model_loader.py +120 -35
  58. horde_engine-3.1.0/hordelib/pipeline/__init__.py +30 -0
  59. horde_engine-3.1.0/hordelib/pipeline/constants.py +58 -0
  60. horde_engine-3.1.0/hordelib/pipeline/context.py +62 -0
  61. horde_engine-3.1.0/hordelib/pipeline/families/__init__.py +9 -0
  62. horde_engine-3.1.0/hordelib/pipeline/families/image.py +414 -0
  63. horde_engine-3.1.0/hordelib/pipeline/families/post_processing.py +71 -0
  64. horde_engine-3.1.0/hordelib/pipeline/graph.py +147 -0
  65. horde_engine-3.1.0/hordelib/pipeline/horde_compat.py +158 -0
  66. horde_engine-3.1.0/hordelib/pipeline/patches.py +390 -0
  67. horde_engine-3.1.0/hordelib/pipeline/payload.py +250 -0
  68. horde_engine-3.1.0/hordelib/pipeline/payload_pp.py +120 -0
  69. horde_engine-3.1.0/hordelib/pipeline/registry.py +61 -0
  70. horde_engine-3.1.0/hordelib/pipeline/resolution.py +320 -0
  71. horde_engine-3.1.0/hordelib/pipeline/template.py +99 -0
  72. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_controlnet.json +4 -108
  73. horde_engine-3.1.0/hordelib/pipelines/pipeline_controlnet_annotator.json +39 -0
  74. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_controlnet_hires_fix.json +4 -108
  75. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_qwen.json +1 -1
  76. horde_engine-3.1.0/hordelib/preload.py +244 -0
  77. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/settings.py +7 -20
  78. horde_engine-3.1.0/hordelib/shared_model_manager.py +166 -0
  79. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/train.py +2 -2
  80. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/distance.py +3 -3
  81. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/image_utils.py +4 -4
  82. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/ioredirect.py +35 -15
  83. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/logger.py +90 -3
  84. horde_engine-3.1.0/hordelib/utils/torch_memory.py +63 -0
  85. horde_engine-3.1.0/pyproject.toml +337 -0
  86. horde_engine-2.22.2/.changelog +0 -32
  87. horde_engine-2.22.2/.git-blame-ignore-revs +0 -13
  88. horde_engine-2.22.2/.github/dependabot.yml +0 -11
  89. horde_engine-2.22.2/.github/workflows/maintests.yml +0 -61
  90. horde_engine-2.22.2/.github/workflows/prtests.yml +0 -68
  91. horde_engine-2.22.2/.github/workflows/release.yml +0 -114
  92. horde_engine-2.22.2/.pre-commit-config.yaml +0 -39
  93. horde_engine-2.22.2/CHANGELOG.md +0 -1678
  94. horde_engine-2.22.2/MANIFEST.in +0 -12
  95. horde_engine-2.22.2/README.md +0 -294
  96. horde_engine-2.22.2/build_helper.py +0 -110
  97. horde_engine-2.22.2/examples/download_all_sd_models.py +0 -13
  98. horde_engine-2.22.2/examples/kudos.py +0 -230
  99. horde_engine-2.22.2/examples/lora_downloader.py +0 -300
  100. horde_engine-2.22.2/examples/make_index.py +0 -106
  101. horde_engine-2.22.2/examples/make_index_all_models.py +0 -112
  102. horde_engine-2.22.2/examples/run_all_models.py +0 -78
  103. horde_engine-2.22.2/examples/run_all_stress_tests.py +0 -47
  104. horde_engine-2.22.2/examples/run_controlnet.py +0 -52
  105. horde_engine-2.22.2/examples/run_controlnet_annotator.py +0 -51
  106. horde_engine-2.22.2/examples/run_facefix.py +0 -40
  107. horde_engine-2.22.2/examples/run_img2img.py +0 -46
  108. horde_engine-2.22.2/examples/run_img2img_hires.py +0 -46
  109. horde_engine-2.22.2/examples/run_img2img_inpaint.py +0 -47
  110. horde_engine-2.22.2/examples/run_img2img_inpaint_mask.py +0 -48
  111. horde_engine-2.22.2/examples/run_img2img_mask.py +0 -48
  112. horde_engine-2.22.2/examples/run_img2img_outpaint.py +0 -47
  113. horde_engine-2.22.2/examples/run_inpainting.py +0 -47
  114. horde_engine-2.22.2/examples/run_kudos_test.py +0 -163
  115. horde_engine-2.22.2/examples/run_long_prompt_check.py +0 -126
  116. horde_engine-2.22.2/examples/run_lora.py +0 -54
  117. horde_engine-2.22.2/examples/run_memory_test.py +0 -181
  118. horde_engine-2.22.2/examples/run_sdk_inference_example.py +0 -66
  119. horde_engine-2.22.2/examples/run_stress_test_cnet.py +0 -136
  120. horde_engine-2.22.2/examples/run_stress_test_cnet_preproc.py +0 -119
  121. horde_engine-2.22.2/examples/run_stress_test_dynamic.py +0 -206
  122. horde_engine-2.22.2/examples/run_stress_test_img2img.py +0 -135
  123. horde_engine-2.22.2/examples/run_stress_test_job_collection.py +0 -395
  124. horde_engine-2.22.2/examples/run_stress_test_mixed.py +0 -233
  125. horde_engine-2.22.2/examples/run_stress_test_pp.py +0 -129
  126. horde_engine-2.22.2/examples/run_stress_test_txt2img.py +0 -134
  127. horde_engine-2.22.2/examples/run_stress_test_txt2img_hiresfix.py +0 -134
  128. horde_engine-2.22.2/examples/run_txt2img.py +0 -43
  129. horde_engine-2.22.2/examples/run_txt2img_hires.py +0 -43
  130. horde_engine-2.22.2/examples/run_txt2img_local_model.py +0 -48
  131. horde_engine-2.22.2/examples/run_upscale.py +0 -40
  132. horde_engine-2.22.2/horde_engine.egg-info/PKG-INFO +0 -1033
  133. horde_engine-2.22.2/horde_engine.egg-info/SOURCES.txt +0 -1225
  134. horde_engine-2.22.2/horde_engine.egg-info/dependency_links.txt +0 -1
  135. horde_engine-2.22.2/horde_engine.egg-info/entry_points.txt +0 -3
  136. horde_engine-2.22.2/horde_engine.egg-info/requires.txt +0 -59
  137. horde_engine-2.22.2/horde_engine.egg-info/top_level.txt +0 -1
  138. horde_engine-2.22.2/hordelib/_comfyui/.gitattributes +0 -3
  139. horde_engine-2.22.2/hordelib/_comfyui/.gitignore +0 -26
  140. horde_engine-2.22.2/hordelib/_comfyui/CODEOWNERS +0 -3
  141. horde_engine-2.22.2/hordelib/_comfyui/CONTRIBUTING.md +0 -41
  142. horde_engine-2.22.2/hordelib/_comfyui/QUANTIZATION.md +0 -168
  143. horde_engine-2.22.2/hordelib/_comfyui/README.md +0 -428
  144. horde_engine-2.22.2/hordelib/_comfyui/alembic.ini +0 -84
  145. horde_engine-2.22.2/hordelib/_comfyui/alembic_db/README.md +0 -4
  146. horde_engine-2.22.2/hordelib/_comfyui/alembic_db/env.py +0 -64
  147. horde_engine-2.22.2/hordelib/_comfyui/alembic_db/script.py.mako +0 -28
  148. horde_engine-2.22.2/hordelib/_comfyui/api_server/routes/internal/README.md +0 -3
  149. horde_engine-2.22.2/hordelib/_comfyui/api_server/routes/internal/internal_routes.py +0 -73
  150. horde_engine-2.22.2/hordelib/_comfyui/api_server/services/terminal_service.py +0 -60
  151. horde_engine-2.22.2/hordelib/_comfyui/api_server/utils/file_operations.py +0 -42
  152. horde_engine-2.22.2/hordelib/_comfyui/app/app_settings.py +0 -65
  153. horde_engine-2.22.2/hordelib/_comfyui/app/custom_node_manager.py +0 -145
  154. horde_engine-2.22.2/hordelib/_comfyui/app/database/db.py +0 -112
  155. horde_engine-2.22.2/hordelib/_comfyui/app/database/models.py +0 -14
  156. horde_engine-2.22.2/hordelib/_comfyui/app/frontend_management.py +0 -457
  157. horde_engine-2.22.2/hordelib/_comfyui/app/logger.py +0 -98
  158. horde_engine-2.22.2/hordelib/_comfyui/app/model_manager.py +0 -195
  159. horde_engine-2.22.2/hordelib/_comfyui/app/subgraph_manager.py +0 -112
  160. horde_engine-2.22.2/hordelib/_comfyui/app/user_manager.py +0 -456
  161. horde_engine-2.22.2/hordelib/_comfyui/comfy/audio_encoders/audio_encoders.py +0 -91
  162. horde_engine-2.22.2/hordelib/_comfyui/comfy/audio_encoders/wav2vec2.py +0 -252
  163. horde_engine-2.22.2/hordelib/_comfyui/comfy/audio_encoders/whisper.py +0 -186
  164. horde_engine-2.22.2/hordelib/_comfyui/comfy/checkpoint_pickle.py +0 -13
  165. horde_engine-2.22.2/hordelib/_comfyui/comfy/cldm/cldm.py +0 -434
  166. horde_engine-2.22.2/hordelib/_comfyui/comfy/cldm/control_types.py +0 -10
  167. horde_engine-2.22.2/hordelib/_comfyui/comfy/cldm/dit_embedder.py +0 -120
  168. horde_engine-2.22.2/hordelib/_comfyui/comfy/cldm/mmdit.py +0 -81
  169. horde_engine-2.22.2/hordelib/_comfyui/comfy/cli_args.py +0 -244
  170. horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_config_bigg.json +0 -23
  171. horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_model.py +0 -254
  172. horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision.py +0 -164
  173. horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_config_g.json +0 -18
  174. horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_config_h.json +0 -18
  175. horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_config_vitl.json +0 -18
  176. horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_config_vitl_336.json +0 -18
  177. horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_config_vitl_336_llava.json +0 -19
  178. horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_siglip_384.json +0 -13
  179. horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_siglip_512.json +0 -13
  180. horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/README.md +0 -43
  181. horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/__init__.py +0 -46
  182. horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/examples/example_nodes.py +0 -28
  183. horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/examples/input_options.png +0 -0
  184. horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/examples/input_types.png +0 -0
  185. horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/examples/required_hint.png +0 -0
  186. horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/node_typing.py +0 -350
  187. horde_engine-2.22.2/hordelib/_comfyui/comfy/conds.py +0 -137
  188. horde_engine-2.22.2/hordelib/_comfyui/comfy/context_windows.py +0 -540
  189. horde_engine-2.22.2/hordelib/_comfyui/comfy/controlnet.py +0 -884
  190. horde_engine-2.22.2/hordelib/_comfyui/comfy/diffusers_convert.py +0 -189
  191. horde_engine-2.22.2/hordelib/_comfyui/comfy/diffusers_load.py +0 -36
  192. horde_engine-2.22.2/hordelib/_comfyui/comfy/extra_samplers/uni_pc.py +0 -873
  193. horde_engine-2.22.2/hordelib/_comfyui/comfy/float.py +0 -67
  194. horde_engine-2.22.2/hordelib/_comfyui/comfy/gligen.py +0 -299
  195. horde_engine-2.22.2/hordelib/_comfyui/comfy/hooks.py +0 -785
  196. horde_engine-2.22.2/hordelib/_comfyui/comfy/image_encoders/dino2.py +0 -160
  197. horde_engine-2.22.2/hordelib/_comfyui/comfy/image_encoders/dino2_giant.json +0 -21
  198. horde_engine-2.22.2/hordelib/_comfyui/comfy/image_encoders/dino2_large.json +0 -22
  199. horde_engine-2.22.2/hordelib/_comfyui/comfy/k_diffusion/deis.py +0 -120
  200. horde_engine-2.22.2/hordelib/_comfyui/comfy/k_diffusion/sa_solver.py +0 -121
  201. horde_engine-2.22.2/hordelib/_comfyui/comfy/k_diffusion/sampling.py +0 -1786
  202. horde_engine-2.22.2/hordelib/_comfyui/comfy/k_diffusion/utils.py +0 -313
  203. horde_engine-2.22.2/hordelib/_comfyui/comfy/latent_formats.py +0 -760
  204. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/attention.py +0 -768
  205. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/lyric_encoder.py +0 -1067
  206. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/model.py +0 -411
  207. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/vae/autoencoder_dc.py +0 -644
  208. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/vae/music_dcae_pipeline.py +0 -98
  209. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/vae/music_log_mel.py +0 -113
  210. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/vae/music_vocoder.py +0 -538
  211. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/audio/autoencoder.py +0 -276
  212. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/audio/dit.py +0 -899
  213. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/audio/embedders.py +0 -108
  214. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/aura/mmdit.py +0 -507
  215. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/common.py +0 -154
  216. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/controlnet.py +0 -92
  217. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/stage_a.py +0 -259
  218. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/stage_b.py +0 -256
  219. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/stage_c.py +0 -273
  220. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/stage_c_coder.py +0 -98
  221. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/chroma/layers.py +0 -63
  222. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/chroma/model.py +0 -292
  223. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/chroma_radiance/layers.py +0 -206
  224. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/chroma_radiance/model.py +0 -319
  225. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/common_dit.py +0 -16
  226. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/blocks.py +0 -805
  227. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/cosmos_tokenizer/layers3d.py +0 -1041
  228. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/cosmos_tokenizer/patching.py +0 -377
  229. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/cosmos_tokenizer/utils.py +0 -113
  230. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/model.py +0 -552
  231. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/position_embedding.py +0 -207
  232. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/predict2.py +0 -886
  233. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/vae.py +0 -131
  234. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/flux/controlnet.py +0 -208
  235. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/flux/layers.py +0 -350
  236. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/flux/math.py +0 -40
  237. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/flux/model.py +0 -340
  238. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/flux/redux.py +0 -25
  239. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/joint_model/asymm_models_joint.py +0 -561
  240. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/joint_model/layers.py +0 -153
  241. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/joint_model/rope_mixed.py +0 -88
  242. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/joint_model/temporal_rope.py +0 -34
  243. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/joint_model/utils.py +0 -102
  244. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/vae/model.py +0 -711
  245. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hidream/model.py +0 -829
  246. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan3d/model.py +0 -148
  247. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan3d/vae.py +0 -988
  248. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan3dv2_1/hunyuandit.py +0 -659
  249. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan_video/model.py +0 -495
  250. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan_video/upsampler.py +0 -120
  251. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan_video/vae.py +0 -136
  252. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan_video/vae_refiner.py +0 -363
  253. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hydit/attn_layers.py +0 -218
  254. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hydit/controlnet.py +0 -311
  255. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hydit/models.py +0 -417
  256. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hydit/poolers.py +0 -36
  257. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hydit/posemb_layers.py +0 -224
  258. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/model.py +0 -499
  259. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/symmetric_patchifier.py +0 -117
  260. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/vae/causal_conv3d.py +0 -65
  261. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/vae/causal_video_autoencoder.py +0 -1092
  262. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/vae/conv_nd_factory.py +0 -90
  263. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/vae/dual_conv3d.py +0 -217
  264. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/vae/pixel_norm.py +0 -12
  265. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lumina/model.py +0 -596
  266. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/activations.py +0 -120
  267. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/alias_free_torch.py +0 -157
  268. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/autoencoder.py +0 -156
  269. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/bigvgan.py +0 -219
  270. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/distributions.py +0 -92
  271. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/vae.py +0 -358
  272. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/vae_modules.py +0 -121
  273. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/models/autoencoder.py +0 -279
  274. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/attention.py +0 -1094
  275. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/mmdit.py +0 -1036
  276. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/model.py +0 -734
  277. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/openaimodel.py +0 -913
  278. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/upscaling.py +0 -84
  279. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/util.py +0 -306
  280. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/distributions/distributions.py +0 -92
  281. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/ema.py +0 -80
  282. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/encoders/noise_aug_modules.py +0 -35
  283. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/sub_quadratic_attention.py +0 -275
  284. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/temporal_ae.py +0 -246
  285. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/omnigen/omnigen2.py +0 -470
  286. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/pixart/blocks.py +0 -380
  287. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/pixart/pixartms.py +0 -256
  288. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/qwen_image/controlnet.py +0 -77
  289. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/qwen_image/model.py +0 -482
  290. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/util.py +0 -197
  291. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/wan/model.py +0 -1593
  292. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/wan/model_animate.py +0 -548
  293. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/wan/vae.py +0 -513
  294. horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/wan/vae2_2.py +0 -717
  295. horde_engine-2.22.2/hordelib/_comfyui/comfy/lora.py +0 -424
  296. horde_engine-2.22.2/hordelib/_comfyui/comfy/lora_convert.py +0 -43
  297. horde_engine-2.22.2/hordelib/_comfyui/comfy/model_base.py +0 -1644
  298. horde_engine-2.22.2/hordelib/_comfyui/comfy/model_detection.py +0 -1052
  299. horde_engine-2.22.2/hordelib/_comfyui/comfy/model_management.py +0 -1540
  300. horde_engine-2.22.2/hordelib/_comfyui/comfy/model_patcher.py +0 -1353
  301. horde_engine-2.22.2/hordelib/_comfyui/comfy/model_sampling.py +0 -389
  302. horde_engine-2.22.2/hordelib/_comfyui/comfy/nested_tensor.py +0 -91
  303. horde_engine-2.22.2/hordelib/_comfyui/comfy/ops.py +0 -699
  304. horde_engine-2.22.2/hordelib/_comfyui/comfy/options.py +0 -6
  305. horde_engine-2.22.2/hordelib/_comfyui/comfy/patcher_extension.py +0 -158
  306. horde_engine-2.22.2/hordelib/_comfyui/comfy/pixel_space_convert.py +0 -16
  307. horde_engine-2.22.2/hordelib/_comfyui/comfy/quant_ops.py +0 -573
  308. horde_engine-2.22.2/hordelib/_comfyui/comfy/rmsnorm.py +0 -57
  309. horde_engine-2.22.2/hordelib/_comfyui/comfy/sample.py +0 -67
  310. horde_engine-2.22.2/hordelib/_comfyui/comfy/sampler_helpers.py +0 -184
  311. horde_engine-2.22.2/hordelib/_comfyui/comfy/samplers.py +0 -1163
  312. horde_engine-2.22.2/hordelib/_comfyui/comfy/sd.py +0 -1477
  313. horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_clip.py +0 -711
  314. horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_clip_config.json +0 -25
  315. horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_tokenizer/merges.txt +0 -48895
  316. horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_tokenizer/special_tokens_map.json +0 -24
  317. horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_tokenizer/tokenizer_config.json +0 -34
  318. horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_tokenizer/vocab.json +0 -49410
  319. horde_engine-2.22.2/hordelib/_comfyui/comfy/sdxl_clip.py +0 -95
  320. horde_engine-2.22.2/hordelib/_comfyui/comfy/supported_models.py +0 -1478
  321. horde_engine-2.22.2/hordelib/_comfyui/comfy/supported_models_base.py +0 -120
  322. horde_engine-2.22.2/hordelib/_comfyui/comfy/t2i_adapter/adapter.py +0 -299
  323. horde_engine-2.22.2/hordelib/_comfyui/comfy/taesd/taehv.py +0 -171
  324. horde_engine-2.22.2/hordelib/_comfyui/comfy/taesd/taesd.py +0 -79
  325. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/ace.py +0 -153
  326. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/ace_lyrics_tokenizer/vocab.json +0 -15535
  327. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/ace_text_cleaners.py +0 -395
  328. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/aura_t5.py +0 -22
  329. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/bert.py +0 -143
  330. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/byt5_config_small_glyph.json +0 -22
  331. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/byt5_tokenizer/added_tokens.json +0 -127
  332. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/byt5_tokenizer/special_tokens_map.json +0 -150
  333. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/byt5_tokenizer/tokenizer_config.json +0 -1163
  334. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/cosmos.py +0 -42
  335. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/flux.py +0 -176
  336. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/genmo.py +0 -38
  337. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hidream.py +0 -155
  338. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hunyuan_image.py +0 -103
  339. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hunyuan_video.py +0 -171
  340. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hydit.py +0 -81
  341. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hydit_clip.json +0 -35
  342. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hydit_clip_tokenizer/special_tokens_map.json +0 -7
  343. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hydit_clip_tokenizer/tokenizer_config.json +0 -16
  344. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hydit_clip_tokenizer/vocab.txt +0 -47020
  345. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/llama.py +0 -604
  346. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/llama_tokenizer/tokenizer.json +0 -410579
  347. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/llama_tokenizer/tokenizer_config.json +0 -2095
  348. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/long_clipl.py +0 -27
  349. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/lt.py +0 -18
  350. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/lumina2.py +0 -57
  351. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/mt5_config_xl.json +0 -22
  352. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/omnigen2.py +0 -44
  353. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/pixart_t5.py +0 -42
  354. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/qwen25_tokenizer/merges.txt +0 -151388
  355. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/qwen25_tokenizer/tokenizer_config.json +0 -241
  356. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/qwen25_tokenizer/vocab.json +0 -1
  357. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/qwen_image.py +0 -97
  358. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/qwen_vl.py +0 -428
  359. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/sa_t5.py +0 -22
  360. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/sd2_clip.py +0 -23
  361. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/sd2_clip_config.json +0 -23
  362. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/sd3_clip.py +0 -166
  363. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/spiece_tokenizer.py +0 -34
  364. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5.py +0 -249
  365. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_config_base.json +0 -22
  366. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_config_xxl.json +0 -22
  367. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_old_config_xxl.json +0 -22
  368. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_pile_config_xl.json +0 -22
  369. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_pile_tokenizer/tokenizer.model +0 -0
  370. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_tokenizer/special_tokens_map.json +0 -125
  371. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_tokenizer/tokenizer.json +0 -129428
  372. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_tokenizer/tokenizer_config.json +0 -939
  373. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/umt5_config_base.json +0 -22
  374. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/umt5_config_xxl.json +0 -22
  375. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/wan.py +0 -37
  376. horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/z_image.py +0 -48
  377. horde_engine-2.22.2/hordelib/_comfyui/comfy/utils.py +0 -1196
  378. horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/__init__.py +0 -34
  379. horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/base.py +0 -175
  380. horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/boft.py +0 -115
  381. horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/glora.py +0 -93
  382. horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/loha.py +0 -232
  383. horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/lokr.py +0 -220
  384. horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/lora.py +0 -212
  385. horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/oft.py +0 -161
  386. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/feature_flags.py +0 -69
  387. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/generate_api_stubs.py +0 -86
  388. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/input/__init__.py +0 -16
  389. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/input/basic_types.py +0 -14
  390. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/input/video_types.py +0 -6
  391. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/input_impl/__init__.py +0 -7
  392. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/input_impl/video_types.py +0 -2
  393. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/internal/__init__.py +0 -150
  394. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/internal/api_registry.py +0 -39
  395. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/internal/async_to_sync.py +0 -1002
  396. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/internal/singleton.py +0 -33
  397. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/__init__.py +0 -134
  398. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_input/__init__.py +0 -10
  399. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_input/basic_types.py +0 -42
  400. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_input/video_types.py +0 -113
  401. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_input_impl/__init__.py +0 -7
  402. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_input_impl/video_types.py +0 -380
  403. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_io.py +0 -1664
  404. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_resources.py +0 -72
  405. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_ui.py +0 -464
  406. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_util/__init__.py +0 -11
  407. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_util/geometry_types.py +0 -12
  408. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_util/video_types.py +0 -52
  409. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/generated/ComfyAPISyncStub.pyi +0 -20
  410. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/torch_helpers/__init__.py +0 -5
  411. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/torch_helpers/torch_compile.py +0 -69
  412. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/util/__init__.py +0 -8
  413. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/util/video_types.py +0 -12
  414. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/util.py +0 -8
  415. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/v0_0_1/__init__.py +0 -42
  416. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/v0_0_1/generated/ComfyAPISyncStub.pyi +0 -20
  417. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/v0_0_2/__init__.py +0 -45
  418. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/v0_0_2/generated/ComfyAPISyncStub.pyi +0 -20
  419. horde_engine-2.22.2/hordelib/_comfyui/comfy_api/version_list.py +0 -12
  420. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/README.md +0 -65
  421. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/__init__.py +0 -0
  422. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/__init__.py +0 -6161
  423. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/bfl_api.py +0 -153
  424. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/gemini_api.py +0 -236
  425. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/luma_api.py +0 -253
  426. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/minimax_api.py +0 -120
  427. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/pika_api.py +0 -100
  428. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/pixverse_api.py +0 -146
  429. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/recraft_api.py +0 -262
  430. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/rodin_api.py +0 -54
  431. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/stability_api.py +0 -149
  432. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/topaz_api.py +0 -133
  433. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/tripo_api.py +0 -282
  434. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/veo_api.py +0 -99
  435. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/canary.py +0 -10
  436. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/mapper_utils.py +0 -116
  437. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_bfl.py +0 -649
  438. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_bytedance.py +0 -1114
  439. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_gemini.py +0 -712
  440. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_ideogram.py +0 -771
  441. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_kling.py +0 -1532
  442. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_ltxv.py +0 -199
  443. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_luma.py +0 -585
  444. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_minimax.py +0 -432
  445. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_moonvalley.py +0 -525
  446. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_openai.py +0 -800
  447. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_pika.py +0 -568
  448. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_pixverse.py +0 -431
  449. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_recraft.py +0 -1001
  450. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_rodin.py +0 -520
  451. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_runway.py +0 -522
  452. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_sora.py +0 -151
  453. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_stability.py +0 -888
  454. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_topaz.py +0 -418
  455. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_tripo.py +0 -645
  456. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_veo2.py +0 -514
  457. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_vidu.py +0 -565
  458. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_wan.py +0 -708
  459. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/redocly-dev.yaml +0 -10
  460. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/redocly.yaml +0 -10
  461. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/__init__.py +0 -99
  462. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/_helpers.py +0 -71
  463. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/client.py +0 -946
  464. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/common_exceptions.py +0 -14
  465. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/conversions.py +0 -470
  466. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/download_helpers.py +0 -262
  467. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/request_logger.py +0 -165
  468. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/upload_helpers.py +0 -339
  469. horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/validation_utils.py +0 -230
  470. horde_engine-2.22.2/hordelib/_comfyui/comfy_config/config_parser.py +0 -152
  471. horde_engine-2.22.2/hordelib/_comfyui/comfy_config/types.py +0 -97
  472. horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/caching.py +0 -423
  473. horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/graph.py +0 -332
  474. horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/graph_utils.py +0 -155
  475. horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/progress.py +0 -350
  476. horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/utils.py +0 -46
  477. horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/validation.py +0 -39
  478. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/chainner_models/model_loading.py +0 -6
  479. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_ace.py +0 -63
  480. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_advanced_samplers.py +0 -121
  481. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_align_your_steps.py +0 -69
  482. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_apg.py +0 -106
  483. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_attention_multiply.py +0 -150
  484. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_audio.py +0 -614
  485. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_audio_encoder.py +0 -62
  486. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_camera_trajectory.py +0 -239
  487. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_canny.py +0 -41
  488. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_cfg.py +0 -91
  489. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_chroma_radiance.py +0 -114
  490. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_clip_sdxl.py +0 -71
  491. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_compositing.py +0 -223
  492. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_cond.py +0 -68
  493. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_context_windows.py +0 -89
  494. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_controlnet.py +0 -84
  495. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_cosmos.py +0 -143
  496. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_custom_sampler.py +0 -1016
  497. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_dataset.py +0 -1432
  498. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_differential_diffusion.py +0 -72
  499. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_easycache.py +0 -501
  500. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_edit_model.py +0 -38
  501. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_eps.py +0 -169
  502. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_flux.py +0 -248
  503. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_freelunch.py +0 -113
  504. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_fresca.py +0 -114
  505. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_gits.py +0 -382
  506. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hidream.py +0 -73
  507. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hooks.py +0 -745
  508. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hunyuan.py +0 -419
  509. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hunyuan3d.py +0 -670
  510. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hypernetwork.py +0 -138
  511. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hypertile.py +0 -98
  512. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_images.py +0 -674
  513. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_ip2p.py +0 -63
  514. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_latent.py +0 -412
  515. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_load_3d.py +0 -118
  516. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_lora_extract.py +0 -133
  517. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_lotus.py +0 -39
  518. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_lt.py +0 -526
  519. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_lumina2.py +0 -127
  520. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_mahiro.py +0 -57
  521. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_mask.py +0 -415
  522. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_mochi.py +0 -40
  523. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_model_advanced.py +0 -329
  524. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_model_downscale.py +0 -70
  525. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_model_merging.py +0 -374
  526. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_model_merging_model_specific.py +0 -356
  527. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_model_patch.py +0 -343
  528. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_morphology.py +0 -111
  529. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_nop.py +0 -39
  530. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_optimalsteps.py +0 -71
  531. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_pag.py +0 -69
  532. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_perpneg.py +0 -163
  533. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_photomaker.py +0 -206
  534. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_pixart.py +0 -38
  535. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_post_processing.py +0 -255
  536. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_preview_any.py +0 -43
  537. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_primitive.py +0 -109
  538. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_qwen.py +0 -117
  539. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_rebatch.py +0 -153
  540. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_rope.py +0 -47
  541. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_sag.py +0 -195
  542. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_sd3.py +0 -212
  543. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_sdupscale.py +0 -62
  544. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_slg.py +0 -176
  545. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_stable3d.py +0 -166
  546. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_stable_cascade.py +0 -162
  547. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_string.py +0 -385
  548. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_tcfg.py +0 -76
  549. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_tomesd.py +0 -190
  550. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_torch_compile.py +0 -39
  551. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_train.py +0 -822
  552. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_upscale_model.py +0 -109
  553. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_video.py +0 -218
  554. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_video_model.py +0 -161
  555. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_wan.py +0 -1313
  556. horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_webcam.py +0 -37
  557. horde_engine-2.22.2/hordelib/_comfyui/comfyui_version.py +0 -3
  558. horde_engine-2.22.2/hordelib/_comfyui/cuda_malloc.py +0 -92
  559. horde_engine-2.22.2/hordelib/_comfyui/custom_nodes/example_node.py.example +0 -130
  560. horde_engine-2.22.2/hordelib/_comfyui/custom_nodes/websocket_image_save.py +0 -44
  561. horde_engine-2.22.2/hordelib/_comfyui/execution.py +0 -1232
  562. horde_engine-2.22.2/hordelib/_comfyui/extra_model_paths.yaml +0 -4
  563. horde_engine-2.22.2/hordelib/_comfyui/extra_model_paths.yaml.example +0 -55
  564. horde_engine-2.22.2/hordelib/_comfyui/folder_paths.py +0 -496
  565. horde_engine-2.22.2/hordelib/_comfyui/hook_breaker_ac10a0.py +0 -17
  566. horde_engine-2.22.2/hordelib/_comfyui/input/example.png +0 -0
  567. horde_engine-2.22.2/hordelib/_comfyui/latent_preview.py +0 -127
  568. horde_engine-2.22.2/hordelib/_comfyui/main.py +0 -380
  569. horde_engine-2.22.2/hordelib/_comfyui/middleware/__init__.py +0 -1
  570. horde_engine-2.22.2/hordelib/_comfyui/middleware/cache_middleware.py +0 -53
  571. horde_engine-2.22.2/hordelib/_comfyui/models/audio_encoders/put_audio_encoder_models_here +0 -0
  572. horde_engine-2.22.2/hordelib/_comfyui/models/checkpoints/put_checkpoints_here +0 -0
  573. horde_engine-2.22.2/hordelib/_comfyui/models/clip/put_clip_or_text_encoder_models_here +0 -0
  574. horde_engine-2.22.2/hordelib/_comfyui/models/clip_vision/put_clip_vision_models_here +0 -0
  575. horde_engine-2.22.2/hordelib/_comfyui/models/configs/anything_v3.yaml +0 -73
  576. horde_engine-2.22.2/hordelib/_comfyui/models/configs/v1-inference.yaml +0 -70
  577. horde_engine-2.22.2/hordelib/_comfyui/models/configs/v1-inference_clip_skip_2.yaml +0 -73
  578. horde_engine-2.22.2/hordelib/_comfyui/models/configs/v1-inference_clip_skip_2_fp16.yaml +0 -74
  579. horde_engine-2.22.2/hordelib/_comfyui/models/configs/v1-inference_fp16.yaml +0 -71
  580. horde_engine-2.22.2/hordelib/_comfyui/models/configs/v1-inpainting-inference.yaml +0 -71
  581. horde_engine-2.22.2/hordelib/_comfyui/models/configs/v2-inference-v.yaml +0 -68
  582. horde_engine-2.22.2/hordelib/_comfyui/models/configs/v2-inference-v_fp32.yaml +0 -68
  583. horde_engine-2.22.2/hordelib/_comfyui/models/configs/v2-inference.yaml +0 -67
  584. horde_engine-2.22.2/hordelib/_comfyui/models/configs/v2-inference_fp32.yaml +0 -67
  585. horde_engine-2.22.2/hordelib/_comfyui/models/configs/v2-inpainting-inference.yaml +0 -158
  586. horde_engine-2.22.2/hordelib/_comfyui/models/controlnet/put_controlnets_and_t2i_here +0 -0
  587. horde_engine-2.22.2/hordelib/_comfyui/models/diffusers/put_diffusers_models_here +0 -0
  588. horde_engine-2.22.2/hordelib/_comfyui/models/diffusion_models/put_diffusion_model_files_here +0 -0
  589. horde_engine-2.22.2/hordelib/_comfyui/models/embeddings/put_embeddings_or_textual_inversion_concepts_here +0 -0
  590. horde_engine-2.22.2/hordelib/_comfyui/models/gligen/put_gligen_models_here +0 -0
  591. horde_engine-2.22.2/hordelib/_comfyui/models/hypernetworks/put_hypernetworks_here +0 -0
  592. horde_engine-2.22.2/hordelib/_comfyui/models/latent_upscale_models/put_latent_upscale_models_here +0 -0
  593. horde_engine-2.22.2/hordelib/_comfyui/models/loras/put_loras_here +0 -0
  594. horde_engine-2.22.2/hordelib/_comfyui/models/model_patches/put_model_patches_here +0 -0
  595. horde_engine-2.22.2/hordelib/_comfyui/models/photomaker/put_photomaker_models_here +0 -0
  596. horde_engine-2.22.2/hordelib/_comfyui/models/style_models/put_t2i_style_model_here +0 -0
  597. horde_engine-2.22.2/hordelib/_comfyui/models/text_encoders/put_text_encoder_files_here +0 -0
  598. horde_engine-2.22.2/hordelib/_comfyui/models/unet/put_unet_files_here +0 -0
  599. horde_engine-2.22.2/hordelib/_comfyui/models/upscale_models/put_esrgan_and_other_upscale_models_here +0 -0
  600. horde_engine-2.22.2/hordelib/_comfyui/models/vae/put_vae_here +0 -0
  601. horde_engine-2.22.2/hordelib/_comfyui/models/vae_approx/put_taesd_encoder_pth_and_taesd_decoder_pth_here +0 -0
  602. horde_engine-2.22.2/hordelib/_comfyui/new_updater.py +0 -35
  603. horde_engine-2.22.2/hordelib/_comfyui/node_helpers.py +0 -60
  604. horde_engine-2.22.2/hordelib/_comfyui/nodes.py +0 -2441
  605. horde_engine-2.22.2/hordelib/_comfyui/output/_output_images_will_be_put_here +0 -0
  606. horde_engine-2.22.2/hordelib/_comfyui/protocol.py +0 -7
  607. horde_engine-2.22.2/hordelib/_comfyui/pyproject.toml +0 -71
  608. horde_engine-2.22.2/hordelib/_comfyui/pytest.ini +0 -9
  609. horde_engine-2.22.2/hordelib/_comfyui/requirements.txt +0 -29
  610. horde_engine-2.22.2/hordelib/_comfyui/script_examples/basic_api_example.py +0 -123
  611. horde_engine-2.22.2/hordelib/_comfyui/script_examples/websockets_api_example.py +0 -167
  612. horde_engine-2.22.2/hordelib/_comfyui/script_examples/websockets_api_example_ws_images.py +0 -159
  613. horde_engine-2.22.2/hordelib/_comfyui/server.py +0 -1089
  614. horde_engine-2.22.2/hordelib/_comfyui/tests/README.md +0 -29
  615. horde_engine-2.22.2/hordelib/_comfyui/tests/__init__.py +0 -0
  616. horde_engine-2.22.2/hordelib/_comfyui/tests/compare/conftest.py +0 -41
  617. horde_engine-2.22.2/hordelib/_comfyui/tests/compare/test_quality.py +0 -195
  618. horde_engine-2.22.2/hordelib/_comfyui/tests/conftest.py +0 -42
  619. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/extra_model_paths.yaml +0 -4
  620. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/test_async_nodes.py +0 -427
  621. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/test_execution.py +0 -879
  622. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/test_progress_isolation.py +0 -233
  623. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/test_public_api.py +0 -153
  624. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/__init__.py +0 -28
  625. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/api_test_nodes.py +0 -78
  626. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/async_test_nodes.py +0 -343
  627. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/conditions.py +0 -194
  628. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/flow_control.py +0 -173
  629. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/specific_tests.py +0 -519
  630. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/stubs.py +0 -129
  631. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/tools.py +0 -53
  632. horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/util.py +0 -364
  633. horde_engine-2.22.2/hordelib/_comfyui/tests/inference/__init__.py +0 -0
  634. horde_engine-2.22.2/hordelib/_comfyui/tests/inference/graphs/default_graph_sdxl1_0.json +0 -144
  635. horde_engine-2.22.2/hordelib/_comfyui/tests/inference/test_inference.py +0 -237
  636. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/README.md +0 -8
  637. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/app_test/__init__.py +0 -0
  638. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/app_test/custom_node_manager_test.py +0 -147
  639. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/app_test/frontend_manager_test.py +0 -278
  640. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/app_test/model_manager_test.py +0 -62
  641. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/app_test/user_manager_system_user_test.py +0 -193
  642. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_api_nodes_test/mapper_utils_test.py +0 -297
  643. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_api_test/input_impl_test.py +0 -91
  644. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_api_test/video_types_test.py +0 -239
  645. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_extras_test/__init__.py +0 -0
  646. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_extras_test/image_stitch_test.py +0 -243
  647. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_quant/test_mixed_precision.py +0 -225
  648. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_quant/test_quant_registry.py +0 -190
  649. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_test/folder_path_test.py +0 -162
  650. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/execution_test/validate_node_input_test.py +0 -119
  651. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/feature_flags_test.py +0 -98
  652. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/folder_paths_test/__init__.py +0 -0
  653. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/folder_paths_test/filter_by_content_types_test.py +0 -66
  654. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/folder_paths_test/misc_test.py +0 -51
  655. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/folder_paths_test/system_user_test.py +0 -206
  656. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/prompt_server_test/__init__.py +0 -0
  657. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/prompt_server_test/system_user_endpoint_test.py +0 -375
  658. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/prompt_server_test/user_manager_test.py +0 -289
  659. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/requirements.txt +0 -4
  660. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/server/utils/file_operations_test.py +0 -42
  661. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/server_test/test_cache_control.py +0 -262
  662. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/utils/extra_config_test.py +0 -303
  663. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/utils/json_util_test.py +0 -71
  664. horde_engine-2.22.2/hordelib/_comfyui/tests-unit/websocket_feature_flags_test.py +0 -77
  665. horde_engine-2.22.2/hordelib/_comfyui/utils/__init__.py +0 -0
  666. horde_engine-2.22.2/hordelib/_comfyui/utils/extra_config.py +0 -34
  667. horde_engine-2.22.2/hordelib/_comfyui/utils/install_util.py +0 -18
  668. horde_engine-2.22.2/hordelib/_comfyui/utils/json_util.py +0 -26
  669. horde_engine-2.22.2/hordelib/_version.py +0 -34
  670. horde_engine-2.22.2/hordelib/config_path.py +0 -28
  671. horde_engine-2.22.2/hordelib/consts.py +0 -89
  672. horde_engine-2.22.2/hordelib/horde.py +0 -1705
  673. horde_engine-2.22.2/hordelib/install_comfy.py +0 -166
  674. horde_engine-2.22.2/hordelib/model_manager/base.py +0 -754
  675. horde_engine-2.22.2/hordelib/model_manager/codeformer.py +0 -11
  676. horde_engine-2.22.2/hordelib/model_manager/compvis.py +0 -50
  677. horde_engine-2.22.2/hordelib/model_manager/esrgan.py +0 -15
  678. horde_engine-2.22.2/hordelib/model_manager/gfpgan.py +0 -15
  679. horde_engine-2.22.2/hordelib/model_manager/lora.py +0 -1356
  680. horde_engine-2.22.2/hordelib/model_manager/miscellaneous.py +0 -15
  681. horde_engine-2.22.2/hordelib/model_manager/safety_checker.py +0 -15
  682. horde_engine-2.22.2/hordelib/model_manager/ti.py +0 -863
  683. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/.gitignore +0 -4
  684. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/LICENSE +0 -201
  685. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/README.md +0 -91
  686. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/__init__.py +0 -364
  687. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/binary/__init__.py +0 -15
  688. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/canny/__init__.py +0 -6
  689. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/color/__init__.py +0 -20
  690. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/hed/__init__.py +0 -150
  691. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/__init__.py +0 -122
  692. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/LICENSE +0 -23
  693. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/Resnet.py +0 -199
  694. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/Resnext_torch.py +0 -248
  695. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/depthmap.py +0 -550
  696. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/multi_depth_model_woauxi.py +0 -33
  697. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/net_tools.py +0 -51
  698. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/network_auxi.py +0 -416
  699. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/LICENSE +0 -19
  700. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/__init__.py +0 -67
  701. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/base_model.py +0 -244
  702. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/base_model_hg.py +0 -58
  703. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/networks.py +0 -623
  704. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/pix2pix4depth_model.py +0 -155
  705. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/__init__.py +0 -1
  706. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/base_options.py +0 -156
  707. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/test_options.py +0 -22
  708. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/__init__.py +0 -1
  709. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/get_data.py +0 -110
  710. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/guidedfilter.py +0 -47
  711. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/html.py +0 -86
  712. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/image_pool.py +0 -54
  713. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/util.py +0 -105
  714. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/visualizer.py +0 -166
  715. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/__init__.py +0 -39
  716. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/api.py +0 -169
  717. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/__init__.py +0 -0
  718. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/base_model.py +0 -16
  719. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/blocks.py +0 -341
  720. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/dpt_depth.py +0 -108
  721. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/midas_net.py +0 -76
  722. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/midas_net_custom.py +0 -128
  723. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/transforms.py +0 -234
  724. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/vit.py +0 -491
  725. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/utils.py +0 -189
  726. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/__init__.py +0 -41
  727. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/models/mbv2_mlsd_large.py +0 -292
  728. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/models/mbv2_mlsd_tiny.py +0 -275
  729. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/utils.py +0 -581
  730. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mp_face_mesh/__init__.py +0 -156
  731. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mp_pose_hand/__init__.py +0 -106
  732. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/__init__.py +0 -46
  733. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/body.py +0 -207
  734. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/hand.py +0 -71
  735. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/model.py +0 -217
  736. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/util.py +0 -164
  737. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/pidinet/__init__.py +0 -41
  738. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/pidinet/model.py +0 -638
  739. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/requirements.txt +0 -13
  740. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/__init__.py +0 -30
  741. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/ade20k.py +0 -54
  742. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/chase_db1.py +0 -59
  743. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/cityscapes.py +0 -54
  744. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/cityscapes_769x769.py +0 -35
  745. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/drive.py +0 -59
  746. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/hrf.py +0 -59
  747. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_context.py +0 -60
  748. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_context_59.py +0 -60
  749. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_voc12.py +0 -57
  750. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_voc12_aug.py +0 -9
  751. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/stare.py +0 -59
  752. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/default_runtime.py +0 -14
  753. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ann_r50-d8.py +0 -46
  754. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/apcnet_r50-d8.py +0 -44
  755. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ccnet_r50-d8.py +0 -44
  756. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/cgnet.py +0 -35
  757. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/danet_r50-d8.py +0 -44
  758. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3_r50-d8.py +0 -44
  759. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3_unet_s5-d16.py +0 -50
  760. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3plus_r50-d8.py +0 -46
  761. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/dmnet_r50-d8.py +0 -44
  762. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/dnl_r50-d8.py +0 -46
  763. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/emanet_r50-d8.py +0 -47
  764. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/encnet_r50-d8.py +0 -48
  765. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fast_scnn.py +0 -57
  766. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_hr18.py +0 -52
  767. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_r50-d8.py +0 -45
  768. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_unet_s5-d16.py +0 -51
  769. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fpn_r50.py +0 -36
  770. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fpn_uniformer.py +0 -35
  771. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/gcnet_r50-d8.py +0 -46
  772. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/lraspp_m-v3-d8.py +0 -25
  773. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/nonlocal_r50-d8.py +0 -46
  774. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ocrnet_hr18.py +0 -68
  775. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ocrnet_r50-d8.py +0 -47
  776. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pointrend_r50.py +0 -56
  777. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/psanet_r50-d8.py +0 -49
  778. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pspnet_r50-d8.py +0 -44
  779. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pspnet_unet_s5-d16.py +0 -50
  780. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/upernet_r50.py +0 -44
  781. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/upernet_uniformer.py +0 -43
  782. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_160k.py +0 -9
  783. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_20k.py +0 -9
  784. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_40k.py +0 -9
  785. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_80k.py +0 -9
  786. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/config.py +0 -38
  787. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/run.sh +0 -10
  788. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test.sh +0 -10
  789. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_g.py +0 -38
  790. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_h32.py +0 -39
  791. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_w32.py +0 -39
  792. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/__init__.py +0 -15
  793. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/arraymisc/__init__.py +0 -4
  794. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/arraymisc/quantization.py +0 -55
  795. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/__init__.py +0 -41
  796. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/alexnet.py +0 -61
  797. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/__init__.py +0 -35
  798. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/activation.py +0 -92
  799. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/context_block.py +0 -125
  800. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv.py +0 -44
  801. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv2d_adaptive_padding.py +0 -62
  802. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv_module.py +0 -206
  803. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv_ws.py +0 -148
  804. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/depthwise_separable_conv_module.py +0 -96
  805. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/drop.py +0 -64
  806. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/generalized_attention.py +0 -412
  807. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/hsigmoid.py +0 -34
  808. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/hswish.py +0 -29
  809. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/non_local.py +0 -306
  810. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/norm.py +0 -147
  811. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/padding.py +0 -36
  812. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/plugin.py +0 -88
  813. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/registry.py +0 -17
  814. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/scale.py +0 -21
  815. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/swish.py +0 -25
  816. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/transformer.py +0 -605
  817. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/upsample.py +0 -84
  818. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/wrappers.py +0 -180
  819. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/builder.py +0 -29
  820. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/resnet.py +0 -316
  821. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/__init__.py +0 -19
  822. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/flops_counter.py +0 -578
  823. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/fuse_conv_bn.py +0 -59
  824. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/sync_bn.py +0 -59
  825. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/weight_init.py +0 -643
  826. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/vgg.py +0 -175
  827. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/engine/__init__.py +0 -8
  828. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/engine/test.py +0 -195
  829. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/__init__.py +0 -11
  830. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/file_client.py +0 -1127
  831. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/__init__.py +0 -7
  832. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/base.py +0 -30
  833. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/json_handler.py +0 -36
  834. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/pickle_handler.py +0 -28
  835. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/yaml_handler.py +0 -24
  836. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/io.py +0 -151
  837. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/parse.py +0 -97
  838. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/__init__.py +0 -28
  839. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/colorspace.py +0 -306
  840. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/geometric.py +0 -728
  841. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/io.py +0 -256
  842. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/misc.py +0 -43
  843. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/photometric.py +0 -428
  844. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/deprecated.json +0 -6
  845. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/mmcls.json +0 -31
  846. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/open_mmlab.json +0 -50
  847. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/__init__.py +0 -81
  848. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/assign_score_withk.py +0 -123
  849. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/ball_query.py +0 -55
  850. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/bbox.py +0 -72
  851. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/border_align.py +0 -109
  852. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/box_iou_rotated.py +0 -45
  853. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/carafe.py +0 -287
  854. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/cc_attention.py +0 -81
  855. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/contour_expand.py +0 -49
  856. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/corner_pool.py +0 -161
  857. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/correlation.py +0 -196
  858. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deform_conv.py +0 -406
  859. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deform_roi_pool.py +0 -204
  860. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deprecated_wrappers.py +0 -43
  861. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/focal_loss.py +0 -212
  862. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/furthest_point_sample.py +0 -83
  863. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/fused_bias_leakyrelu.py +0 -268
  864. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/gather_points.py +0 -57
  865. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/group_points.py +0 -224
  866. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/info.py +0 -36
  867. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/iou3d.py +0 -85
  868. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/knn.py +0 -77
  869. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/masked_conv.py +0 -111
  870. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/merge_cells.py +0 -149
  871. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/modulated_deform_conv.py +0 -280
  872. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/multi_scale_deform_attn.py +0 -348
  873. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/nms.py +0 -383
  874. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/pixel_group.py +0 -75
  875. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/point_sample.py +0 -317
  876. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/points_in_boxes.py +0 -133
  877. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/points_sampler.py +0 -168
  878. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/psa_mask.py +0 -92
  879. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_align.py +0 -223
  880. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_align_rotated.py +0 -177
  881. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_pool.py +0 -86
  882. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roiaware_pool3d.py +0 -100
  883. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roipoint_pool3d.py +0 -77
  884. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/saconv.py +0 -128
  885. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/scatter_points.py +0 -135
  886. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/sync_bn.py +0 -288
  887. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/three_interpolate.py +0 -68
  888. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/three_nn.py +0 -51
  889. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/tin_shift.py +0 -68
  890. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/upfirdn2d.py +0 -320
  891. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/voxelize.py +0 -132
  892. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/__init__.py +0 -13
  893. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/_functions.py +0 -79
  894. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/collate.py +0 -84
  895. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/data_container.py +0 -89
  896. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/data_parallel.py +0 -89
  897. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/distributed.py +0 -105
  898. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/distributed_deprecated.py +0 -57
  899. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/registry.py +0 -9
  900. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/scatter_gather.py +0 -59
  901. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/utils.py +0 -20
  902. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/__init__.py +0 -47
  903. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/base_module.py +0 -194
  904. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/base_runner.py +0 -515
  905. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/builder.py +0 -22
  906. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/checkpoint.py +0 -670
  907. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/default_constructor.py +0 -43
  908. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/dist_utils.py +0 -164
  909. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/epoch_based_runner.py +0 -172
  910. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/fp16_utils.py +0 -388
  911. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/__init__.py +0 -29
  912. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/checkpoint.py +0 -156
  913. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/closure.py +0 -11
  914. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/ema.py +0 -89
  915. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/evaluation.py +0 -492
  916. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/hook.py +0 -101
  917. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/iter_timer.py +0 -18
  918. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/__init__.py +0 -15
  919. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/base.py +0 -166
  920. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/dvclive.py +0 -58
  921. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/mlflow.py +0 -78
  922. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/neptune.py +0 -82
  923. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/pavi.py +0 -113
  924. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/tensorboard.py +0 -49
  925. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/text.py +0 -235
  926. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/wandb.py +0 -56
  927. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/lr_updater.py +0 -615
  928. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/memory.py +0 -25
  929. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/momentum_updater.py +0 -421
  930. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/optimizer.py +0 -457
  931. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/profiler.py +0 -180
  932. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/sampler_seed.py +0 -20
  933. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/sync_buffer.py +0 -22
  934. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/iter_based_runner.py +0 -256
  935. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/log_buffer.py +0 -41
  936. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/__init__.py +0 -9
  937. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/builder.py +0 -41
  938. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/default_constructor.py +0 -245
  939. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/priority.py +0 -60
  940. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/utils.py +0 -92
  941. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/__init__.py +0 -69
  942. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/config.py +0 -649
  943. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/env.py +0 -99
  944. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/ext_loader.py +0 -71
  945. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/logging.py +0 -110
  946. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/misc.py +0 -377
  947. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/parrots_jit.py +0 -41
  948. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/parrots_wrapper.py +0 -107
  949. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/path.py +0 -101
  950. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/progressbar.py +0 -208
  951. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/registry.py +0 -304
  952. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/testing.py +0 -140
  953. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/timer.py +0 -117
  954. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/trace.py +0 -24
  955. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/version_utils.py +0 -90
  956. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/version.py +0 -35
  957. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/__init__.py +0 -11
  958. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/io.py +0 -310
  959. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/optflow.py +0 -248
  960. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/processing.py +0 -128
  961. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/__init__.py +0 -9
  962. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/color.py +0 -52
  963. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/image.py +0 -144
  964. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/optflow.py +0 -109
  965. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv_custom/__init__.py +0 -5
  966. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv_custom/checkpoint.py +0 -477
  967. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/__init__.py +0 -9
  968. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/inference.py +0 -126
  969. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/test.py +0 -216
  970. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/train.py +0 -109
  971. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/__init__.py +0 -3
  972. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/__init__.py +0 -8
  973. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/class_names.py +0 -458
  974. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/eval_hooks.py +0 -108
  975. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/metrics.py +0 -296
  976. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/__init__.py +0 -4
  977. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/builder.py +0 -9
  978. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/__init__.py +0 -4
  979. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/base_pixel_sampler.py +0 -12
  980. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/ohem_pixel_sampler.py +0 -76
  981. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/utils/__init__.py +0 -3
  982. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/utils/misc.py +0 -17
  983. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/__init__.py +0 -19
  984. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/ade.py +0 -84
  985. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/builder.py +0 -175
  986. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/chase_db1.py +0 -27
  987. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/cityscapes.py +0 -240
  988. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/custom.py +0 -372
  989. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/dataset_wrappers.py +0 -50
  990. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/drive.py +0 -27
  991. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/hrf.py +0 -27
  992. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pascal_context.py +0 -103
  993. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/__init__.py +0 -16
  994. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/compose.py +0 -51
  995. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/formating.py +0 -293
  996. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/loading.py +0 -144
  997. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/test_time_aug.py +0 -118
  998. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/transforms.py +0 -838
  999. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/stare.py +0 -27
  1000. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/voc.py +0 -29
  1001. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/__init__.py +0 -12
  1002. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/__init__.py +0 -17
  1003. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/cgnet.py +0 -360
  1004. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/fast_scnn.py +0 -353
  1005. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/hrnet.py +0 -535
  1006. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/mobilenet_v2.py +0 -182
  1007. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/mobilenet_v3.py +0 -266
  1008. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnest.py +0 -299
  1009. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnet.py +0 -649
  1010. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnext.py +0 -124
  1011. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/unet.py +0 -450
  1012. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/uniformer.py +0 -552
  1013. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/vit.py +0 -442
  1014. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/builder.py +0 -44
  1015. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/__init__.py +0 -28
  1016. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ann_head.py +0 -259
  1017. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/apc_head.py +0 -141
  1018. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/aspp_head.py +0 -106
  1019. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/cascade_decode_head.py +0 -57
  1020. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/cc_head.py +0 -41
  1021. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/da_head.py +0 -173
  1022. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/decode_head.py +0 -226
  1023. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/dm_head.py +0 -136
  1024. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/dnl_head.py +0 -125
  1025. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ema_head.py +0 -155
  1026. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/enc_head.py +0 -174
  1027. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/fcn_head.py +0 -81
  1028. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/fpn_head.py +0 -60
  1029. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/gc_head.py +0 -41
  1030. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/lraspp_head.py +0 -77
  1031. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/nl_head.py +0 -46
  1032. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ocr_head.py +0 -124
  1033. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/point_head.py +0 -312
  1034. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/psa_head.py +0 -186
  1035. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/psp_head.py +0 -101
  1036. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/sep_aspp_head.py +0 -82
  1037. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/sep_fcn_head.py +0 -54
  1038. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/uper_head.py +0 -118
  1039. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/__init__.py +0 -12
  1040. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/accuracy.py +0 -78
  1041. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/cross_entropy_loss.py +0 -198
  1042. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/dice_loss.py +0 -119
  1043. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/lovasz_loss.py +0 -303
  1044. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/utils.py +0 -116
  1045. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/__init__.py +0 -4
  1046. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/fpn.py +0 -210
  1047. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/multilevel_neck.py +0 -53
  1048. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/__init__.py +0 -5
  1049. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/base.py +0 -255
  1050. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/cascade_encoder_decoder.py +0 -95
  1051. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/encoder_decoder.py +0 -275
  1052. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/__init__.py +0 -13
  1053. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/drop.py +0 -31
  1054. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/inverted_residual.py +0 -217
  1055. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/make_divisible.py +0 -27
  1056. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/res_layer.py +0 -95
  1057. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/se_layer.py +0 -60
  1058. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/self_attention_block.py +0 -161
  1059. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/up_conv_block.py +0 -106
  1060. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/weight_init.py +0 -62
  1061. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/__init__.py +0 -4
  1062. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/encoding.py +0 -74
  1063. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/wrappers.py +0 -50
  1064. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/__init__.py +0 -4
  1065. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/collect_env.py +0 -17
  1066. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/logger.py +0 -27
  1067. horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/util.py +0 -161
  1068. horde_engine-2.22.2/hordelib/nodes/comfy_qr/LICENSE +0 -661
  1069. horde_engine-2.22.2/hordelib/nodes/comfy_qr/README.md +0 -146
  1070. horde_engine-2.22.2/hordelib/nodes/comfy_qr/__init__.py +0 -3
  1071. horde_engine-2.22.2/hordelib/nodes/comfy_qr/qr_nodes.py +0 -645
  1072. horde_engine-2.22.2/hordelib/nodes/comfy_qr/requirements.txt +0 -1
  1073. horde_engine-2.22.2/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion/__init__.py +0 -0
  1074. horde_engine-2.22.2/hordelib/nodes/facerestore_cf/LICENSE +0 -674
  1075. horde_engine-2.22.2/hordelib/nodes/facerestore_cf/basicsr/ops/__init__.py +0 -0
  1076. horde_engine-2.22.2/hordelib/nodes/facerestore_cf/facelib/__init__.py +0 -0
  1077. horde_engine-2.22.2/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/__init__.py +0 -0
  1078. horde_engine-2.22.2/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/__init__.py +0 -0
  1079. horde_engine-2.22.2/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/__init__.py +0 -0
  1080. horde_engine-2.22.2/hordelib/nodes/facerestore_cf/r_chainner/__init__.py +0 -0
  1081. horde_engine-2.22.2/hordelib/nodes/node_image_output.py +0 -56
  1082. horde_engine-2.22.2/hordelib/pipelines/pipeline_controlnet_annotator.json +0 -144
  1083. horde_engine-2.22.2/hordelib/pipelines/pipeline_zimage.json +0 -141
  1084. horde_engine-2.22.2/hordelib/preload.py +0 -53
  1085. horde_engine-2.22.2/hordelib/pyinstaller_hooks/__init__.py +0 -0
  1086. horde_engine-2.22.2/hordelib/shared_model_manager.py +0 -228
  1087. horde_engine-2.22.2/hordelib/utils/__init__.py +0 -0
  1088. horde_engine-2.22.2/mypy.ini +0 -48
  1089. horde_engine-2.22.2/pyinstaller.py +0 -21
  1090. horde_engine-2.22.2/pyinstaller_test_entrypoint.py +0 -36
  1091. horde_engine-2.22.2/pyproject.toml +0 -128
  1092. horde_engine-2.22.2/requirements.dev.txt +0 -24
  1093. horde_engine-2.22.2/requirements.txt +0 -65
  1094. horde_engine-2.22.2/setup.cfg +0 -9
  1095. horde_engine-2.22.2/tests/__init__.py +0 -0
  1096. horde_engine-2.22.2/tests/conftest.py +0 -561
  1097. horde_engine-2.22.2/tests/meta/__init__.py +0 -0
  1098. horde_engine-2.22.2/tests/meta/test_packaging_errors.py +0 -9
  1099. horde_engine-2.22.2/tests/model_managers/__init__.py +0 -0
  1100. horde_engine-2.22.2/tests/model_managers/test_mm_compvis.py +0 -14
  1101. horde_engine-2.22.2/tests/model_managers/test_mm_lora.py +0 -288
  1102. horde_engine-2.22.2/tests/model_managers/test_mm_safety_checker.py +0 -9
  1103. horde_engine-2.22.2/tests/model_managers/test_mm_ti.py +0 -48
  1104. horde_engine-2.22.2/tests/model_managers/test_shared_model_manager.py +0 -203
  1105. horde_engine-2.22.2/tests/test_comfy.py +0 -180
  1106. horde_engine-2.22.2/tests/test_cuda.py +0 -13
  1107. horde_engine-2.22.2/tests/test_dynamic_prompt.py +0 -33
  1108. horde_engine-2.22.2/tests/test_horde_controlnet_annotator.py +0 -63
  1109. horde_engine-2.22.2/tests/test_horde_inference.py +0 -543
  1110. horde_engine-2.22.2/tests/test_horde_inference_cascade.py +0 -402
  1111. horde_engine-2.22.2/tests/test_horde_inference_controlnet.py +0 -282
  1112. horde_engine-2.22.2/tests/test_horde_inference_custom_model.py +0 -54
  1113. horde_engine-2.22.2/tests/test_horde_inference_flux.py +0 -238
  1114. horde_engine-2.22.2/tests/test_horde_inference_img2img.py +0 -560
  1115. horde_engine-2.22.2/tests/test_horde_inference_layerdiffusion.py +0 -136
  1116. horde_engine-2.22.2/tests/test_horde_inference_painting.py +0 -484
  1117. horde_engine-2.22.2/tests/test_horde_inference_qr_code.py +0 -415
  1118. horde_engine-2.22.2/tests/test_horde_inference_qwen.py +0 -52
  1119. horde_engine-2.22.2/tests/test_horde_inference_z-model.py +0 -51
  1120. horde_engine-2.22.2/tests/test_horde_lcm.py +0 -209
  1121. horde_engine-2.22.2/tests/test_horde_lora.py +0 -1065
  1122. horde_engine-2.22.2/tests/test_horde_pp.py +0 -196
  1123. horde_engine-2.22.2/tests/test_horde_samplers.py +0 -186
  1124. horde_engine-2.22.2/tests/test_horde_ti.py +0 -171
  1125. horde_engine-2.22.2/tests/test_image_metadata.py +0 -44
  1126. horde_engine-2.22.2/tests/test_inference.py +0 -149
  1127. horde_engine-2.22.2/tests/test_initialisation.py +0 -19
  1128. horde_engine-2.22.2/tests/test_internal_comfyui_failures.py +0 -54
  1129. horde_engine-2.22.2/tests/test_payload_mapping.py +0 -47
  1130. horde_engine-2.22.2/tests/test_safety_checker.py +0 -8
  1131. horde_engine-2.22.2/tests/test_utils.py +0 -208
  1132. horde_engine-2.22.2/tests/testing_shared_classes.py +0 -20
  1133. horde_engine-2.22.2/tests/testing_shared_functions.py +0 -257
  1134. horde_engine-2.22.2/tox.ini +0 -91
  1135. {horde_engine-2.22.2 → horde_engine-3.1.0}/LICENSE +0 -0
  1136. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/__pyinstaller.py +0 -0
  1137. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/exceptions.py +0 -0
  1138. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_database/db_dep.json +0 -0
  1139. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_database/db_embeds.json +0 -0
  1140. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_database/diffusers.json +0 -0
  1141. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_database/med_config.json +0 -0
  1142. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_manager/__init__.py +0 -0
  1143. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/__init__.py +0 -0
  1144. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/LICENSE +0 -0
  1145. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/README.md +0 -0
  1146. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/__init__.py +0 -0
  1147. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_cond_example.json +0 -0
  1148. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_cond_fg_all.json +0 -0
  1149. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_cond_joint_bg.json +0 -0
  1150. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_cond_joint_fg.json +0 -0
  1151. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_diff_bg.json +0 -0
  1152. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_diff_bg_stop_at.json +0 -0
  1153. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_diff_fg.json +0 -0
  1154. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_fg_example.json +0 -0
  1155. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_fg_example_rgba.json +0 -0
  1156. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_joint.json +0 -0
  1157. {horde_engine-2.22.2/hordelib/_comfyui/api_server → horde_engine-3.1.0/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion}/__init__.py +0 -0
  1158. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion/enums.py +0 -0
  1159. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/pyproject.toml +0 -0
  1160. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/requirements.txt +0 -0
  1161. {horde_engine-2.22.2/hordelib/_comfyui → horde_engine-3.1.0/hordelib/nodes/facerestore_cf}/LICENSE +0 -0
  1162. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/README.md +0 -0
  1163. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/VERSION +0 -0
  1164. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/__init__.py +0 -0
  1165. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/__init__.py +0 -0
  1166. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/arcface_arch.py +0 -0
  1167. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/arch_util.py +0 -0
  1168. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/codeformer_arch.py +0 -0
  1169. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/rrdbnet_arch.py +0 -0
  1170. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/vgg_arch.py +0 -0
  1171. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/vqgan_arch.py +0 -0
  1172. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/data/__init__.py +0 -0
  1173. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/data/data_sampler.py +0 -0
  1174. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/data/data_util.py +0 -0
  1175. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/data/prefetch_dataloader.py +0 -0
  1176. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/data/transforms.py +0 -0
  1177. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/losses/__init__.py +0 -0
  1178. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/losses/loss_util.py +0 -0
  1179. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/losses/losses.py +0 -0
  1180. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/metrics/__init__.py +0 -0
  1181. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/metrics/metric_util.py +0 -0
  1182. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/metrics/psnr_ssim.py +0 -0
  1183. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/models/__init__.py +0 -0
  1184. {horde_engine-2.22.2/hordelib/_comfyui/api_server/routes → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/basicsr/ops}/__init__.py +0 -0
  1185. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/dcn/__init__.py +0 -0
  1186. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/dcn/deform_conv.py +0 -0
  1187. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/dcn/src/deform_conv_cuda.cpp +0 -0
  1188. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/dcn/src/deform_conv_cuda_kernel.cu +0 -0
  1189. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/dcn/src/deform_conv_ext.cpp +0 -0
  1190. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/fused_act/__init__.py +0 -0
  1191. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/fused_act/fused_act.py +0 -0
  1192. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/fused_act/src/fused_bias_act.cpp +0 -0
  1193. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/fused_act/src/fused_bias_act_kernel.cu +0 -0
  1194. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/upfirdn2d/__init__.py +0 -0
  1195. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/upfirdn2d/src/upfirdn2d.cpp +0 -0
  1196. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/upfirdn2d/src/upfirdn2d_kernel.cu +0 -0
  1197. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/upfirdn2d/upfirdn2d.py +0 -0
  1198. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/setup.py +0 -0
  1199. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/train.py +0 -0
  1200. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/__init__.py +0 -0
  1201. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/dist_util.py +0 -0
  1202. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/download_util.py +0 -0
  1203. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/file_client.py +0 -0
  1204. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/img_util.py +0 -0
  1205. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/lmdb_util.py +0 -0
  1206. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/logger.py +0 -0
  1207. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/matlab_functions.py +0 -0
  1208. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/misc.py +0 -0
  1209. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/options.py +0 -0
  1210. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/realesrgan_utils.py +0 -0
  1211. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/registry.py +0 -0
  1212. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/version.py +0 -0
  1213. {horde_engine-2.22.2/hordelib/_comfyui/api_server/routes/internal → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/facelib}/__init__.py +0 -0
  1214. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/__init__.py +0 -0
  1215. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/align_trans.py +0 -0
  1216. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/matlab_cp2tform.py +0 -0
  1217. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/retinaface/retinaface.py +0 -0
  1218. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/retinaface/retinaface_net.py +0 -0
  1219. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/retinaface/retinaface_utils.py +0 -0
  1220. {horde_engine-2.22.2/hordelib/_comfyui/api_server/services → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face}/__init__.py +0 -0
  1221. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/face_detector.py +0 -0
  1222. {horde_engine-2.22.2/hordelib/_comfyui/app → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models}/__init__.py +0 -0
  1223. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/common.py +0 -0
  1224. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/experimental.py +0 -0
  1225. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/yolo.py +0 -0
  1226. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/yolov5l.yaml +0 -0
  1227. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/yolov5n.yaml +0 -0
  1228. {horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils}/__init__.py +0 -0
  1229. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/autoanchor.py +0 -0
  1230. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/datasets.py +0 -0
  1231. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/extract_ckpt.py +0 -0
  1232. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/general.py +0 -0
  1233. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/torch_utils.py +0 -0
  1234. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/parsing/__init__.py +0 -0
  1235. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/parsing/bisenet.py +0 -0
  1236. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/parsing/parsenet.py +0 -0
  1237. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/parsing/resnet.py +0 -0
  1238. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/utils/__init__.py +0 -0
  1239. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/utils/face_restoration_helper.py +0 -0
  1240. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/utils/face_utils.py +0 -0
  1241. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/r_chainner/README.md +0 -0
  1242. {horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/r_chainner}/__init__.py +0 -0
  1243. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/r_chainner/gfpganv1_clean_arch.py +0 -0
  1244. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/r_chainner/model_loading.py +0 -0
  1245. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/r_chainner/stylegan2_clean_arch.py +0 -0
  1246. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/r_chainner/types.py +0 -0
  1247. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/node_upscale_model_loader.py +0 -0
  1248. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_controlnet.json +0 -0
  1249. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_controlnet_annotator.json +0 -0
  1250. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_controlnet_hires_fix.json +0 -0
  1251. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_flux.json +0 -0
  1252. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_image_facefix.json +0 -0
  1253. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_image_upscale.json +0 -0
  1254. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_qr_code.json +0 -0
  1255. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_qwen.json +0 -0
  1256. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_cascade.json +0 -0
  1257. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_cascade_2pass.json +0 -0
  1258. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_cascade_remix.json +0 -0
  1259. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_diffusion.json +0 -0
  1260. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_diffusion_hires_fix.json +0 -0
  1261. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_diffusion_img2img_mask.json +0 -0
  1262. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_diffusion_paint.json +0 -0
  1263. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_flux.json +0 -0
  1264. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_image_facefix.json +0 -0
  1265. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_image_upscale.json +0 -0
  1266. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_qr_code.json +0 -0
  1267. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_cascade.json +0 -0
  1268. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_cascade_2pass.json +0 -0
  1269. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_cascade_remix.json +0 -0
  1270. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_diffusion.json +0 -0
  1271. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_diffusion_hires_fix.json +0 -0
  1272. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_diffusion_img2img_mask.json +0 -0
  1273. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_diffusion_paint.json +0 -0
  1274. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/py.typed +0 -0
  1275. {horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/distributions → horde_engine-3.1.0/hordelib/pyinstaller_hooks}/__init__.py +0 -0
  1276. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pyinstaller_hooks/hook-hordelib.horde.py +0 -0
  1277. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/safety.py +0 -0
  1278. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/safety_checker.py +0 -0
  1279. {horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/encoders → horde_engine-3.1.0/hordelib/utils}/__init__.py +0 -0
  1280. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/dynamicprompt.py +0 -0
  1281. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/gpuinfo.py +0 -0
  1282. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/sanitizer.py +0 -0
  1283. {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/switch.py +0 -0
@@ -83,7 +83,7 @@ profile_default/
83
83
  ipython_config.py
84
84
 
85
85
  # pyenv
86
- .python-version
86
+ # .python-version # this competes the with uv convention for specifying the python version
87
87
 
88
88
  # pipenv
89
89
  # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
@@ -1,7 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: horde-engine
3
- Version: 2.22.2
3
+ Version: 3.1.0
4
4
  Summary: A wrapper around ComfyUI to allow use by AI Horde.
5
+ Project-URL: Homepage, https://github.com/Haidra-Org/hordelib
6
+ Project-URL: Bug Tracker, https://github.com/Haidra-Org/hordelib/issues
7
+ Project-URL: Changelog, https://github.com/Haidra-Org/hordelib/releases
5
8
  Author-email: tazlin <tazlin.on.github@gmail.com>, db0 <mail@dbzer0.com>, Jug <jugdev@proton.me>
6
9
  License: GNU AFFERO GENERAL PUBLIC LICENSE
7
10
  Version 3, 19 November 2007
@@ -664,78 +667,87 @@ License: GNU AFFERO GENERAL PUBLIC LICENSE
664
667
  if any, to sign a "copyright disclaimer" for the program, if necessary.
665
668
  For more information on this, and how to apply and follow the GNU AGPL, see
666
669
  <https://www.gnu.org/licenses/>.
667
-
668
- Project-URL: Homepage, https://github.com/Haidra-Org/hordelib
669
- Project-URL: Bug Tracker, https://github.com/Haidra-Org/hordelib/issues
670
- Project-URL: Changelog, https://github.com/Haidra-Org/hordelib/blob/releases/CHANGELOG.md
671
- Classifier: Programming Language :: Python :: 3
670
+ License-File: LICENSE
671
+ Classifier: Development Status :: 5 - Production/Stable
672
672
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
673
673
  Classifier: Operating System :: OS Independent
674
- Classifier: Development Status :: 5 - Production/Stable
675
- Requires-Python: >=3.10
676
- Description-Content-Type: text/markdown
677
- License-File: LICENSE
678
- License-File: CHANGELOG.md
679
- Requires-Dist: horde_sdk>=0.15.0
680
- Requires-Dist: horde_model_reference>=0.9.1
681
- Requires-Dist: numpy==1.26.4
682
- Requires-Dist: torch>=2.4.1
683
- Requires-Dist: torchvision
684
- Requires-Dist: torchdiffeq
685
- Requires-Dist: torchsde
686
- Requires-Dist: einops
687
- Requires-Dist: open-clip-torch
688
- Requires-Dist: transformers>=4.37.2
689
- Requires-Dist: tokenizers>=0.13.3
690
- Requires-Dist: sentencepiece
691
- Requires-Dist: safetensors>=0.4.2
692
- Requires-Dist: pytorch_lightning
693
- Requires-Dist: pynvml
674
+ Classifier: Programming Language :: Python :: 3
675
+ Requires-Python: >=3.12
676
+ Requires-Dist: accelerate>=1.11.0
677
+ Requires-Dist: addict>=2.4.0
694
678
  Requires-Dist: aiohttp>=3.11.8
695
- Requires-Dist: accelerate
696
- Requires-Dist: pyyaml
697
- Requires-Dist: pillow
698
- Requires-Dist: loguru
699
- Requires-Dist: GitPython
700
- Requires-Dist: clip-anytorch
679
+ Requires-Dist: alembic
680
+ Requires-Dist: av>=16.0.0
681
+ Requires-Dist: blake3
682
+ Requires-Dist: clip-anytorch>=2.6.0
683
+ Requires-Dist: comfy-aimdo==0.4.9
684
+ Requires-Dist: comfy-kitchen==0.2.10
685
+ Requires-Dist: comfyui-embedded-docs==0.5.3
686
+ Requires-Dist: comfyui-frontend-package==1.45.15
687
+ Requires-Dist: comfyui-workflow-templates==0.9.98
701
688
  Requires-Dist: diffusers>=0.25.0
702
- Requires-Dist: omegaconf
689
+ Requires-Dist: distro>=1.9.0
690
+ Requires-Dist: einops
691
+ Requires-Dist: fairscale>=0.4.13
692
+ Requires-Dist: filelock
693
+ Requires-Dist: fuzzywuzzy>=0.18.0
694
+ Requires-Dist: gitpython>=3.1.45
695
+ Requires-Dist: horde-model-reference<6.0.0,>=5.1.1
696
+ Requires-Dist: horde-sdk>=0.20.1
697
+ Requires-Dist: kornia>=0.7.1
698
+ Requires-Dist: logfire[system-metrics]==4.14.2
699
+ Requires-Dist: loguru>=0.7.3
700
+ Requires-Dist: lpips>=0.1.4
701
+ Requires-Dist: matplotlib>=3.10.9
702
+ Requires-Dist: numpy>=1.25.0
703
+ Requires-Dist: omegaconf>=2.3.0
704
+ Requires-Dist: open-clip-torch>=2.32.0
705
+ Requires-Dist: opencv-contrib-python>=4.11.0.86
706
+ Requires-Dist: opencv-python>=4.11.0.86
707
+ Requires-Dist: opentelemetry-instrumentation-aiohttp-client>=0.59b0
708
+ Requires-Dist: opentelemetry-instrumentation-requests>=0.59b0
709
+ Requires-Dist: pillow
703
710
  Requires-Dist: psutil
704
- Requires-Dist: typing-extensions
705
- Requires-Dist: distro
706
- Requires-Dist: python-dotenv
707
- Requires-Dist: strenum
708
- Requires-Dist: rembg[cpu]
709
- Requires-Dist: opencv-python
710
- Requires-Dist: opencv-contrib-python
711
- Requires-Dist: opencv-python
712
- Requires-Dist: timm==0.9.16
713
- Requires-Dist: torchvision
714
- Requires-Dist: scipy
715
- Requires-Dist: addict
716
- Requires-Dist: fairscale
717
- Requires-Dist: scikit-image
718
- Requires-Dist: mediapipe==0.10.21
719
- Requires-Dist: unidecode
720
- Requires-Dist: fuzzywuzzy
721
- Requires-Dist: strenum
722
- Requires-Dist: kornia
723
- Requires-Dist: qrcode==7.4.2
724
- Requires-Dist: spandrel
725
- Requires-Dist: spandrel_extra_arches
726
- Requires-Dist: soundfile
727
- Requires-Dist: lpips
728
- Requires-Dist: av>=14.2.0
729
- Requires-Dist: pydantic~=2.0
730
711
  Requires-Dist: pydantic-settings~=2.0
731
- Requires-Dist: SQLAlchemy
732
- Requires-Dist: alembic
712
+ Requires-Dist: pydantic~=2.0
713
+ Requires-Dist: pynvml>=13.0.1
714
+ Requires-Dist: python-dotenv>=1.2.1
715
+ Requires-Dist: pytorch-lightning>=2.5.6
716
+ Requires-Dist: pyyaml
717
+ Requires-Dist: qrcode==7.4.2
718
+ Requires-Dist: rembg[cpu]>=2.0.67
719
+ Requires-Dist: requests
720
+ Requires-Dist: safetensors>=0.4.2
721
+ Requires-Dist: scikit-image>=0.25.2
722
+ Requires-Dist: scipy
723
+ Requires-Dist: sentencepiece
724
+ Requires-Dist: simpleeval>=1.0.0
725
+ Requires-Dist: soundfile>=0.13.1
726
+ Requires-Dist: spandrel-extra-arches>=0.2.0
727
+ Requires-Dist: spandrel>=0.4.1
728
+ Requires-Dist: sqlalchemy>=2.0.0
729
+ Requires-Dist: strenum>=0.4.15
730
+ Requires-Dist: timm==0.9.16
731
+ Requires-Dist: tokenizers>=0.13.3
732
+ Requires-Dist: torchaudio<2.13,>=2.9.0
733
+ Requires-Dist: torchdiffeq>=0.2.5
734
+ Requires-Dist: torchsde
735
+ Requires-Dist: torchvision<0.28,>=0.24.0
733
736
  Requires-Dist: tqdm
737
+ Requires-Dist: transformers>=4.50.3
738
+ Requires-Dist: typing-extensions>=4.15.0
739
+ Requires-Dist: unidecode>=1.4.0
740
+ Requires-Dist: yapf>=0.43.0
734
741
  Requires-Dist: yarl>=1.18.0
735
- Requires-Dist: comfyui-frontend-package==1.25.11
736
- Requires-Dist: comfyui-workflow-templates==0.1.75
737
- Requires-Dist: comfyui-embedded-docs==0.2.6
738
- Dynamic: license-file
742
+ Provides-Extra: cpu
743
+ Requires-Dist: torch; extra == 'cpu'
744
+ Provides-Extra: cu126
745
+ Requires-Dist: torch; extra == 'cu126'
746
+ Provides-Extra: cu130
747
+ Requires-Dist: torch; extra == 'cu130'
748
+ Provides-Extra: cu132
749
+ Requires-Dist: torch; extra == 'cu132'
750
+ Description-Content-Type: text/markdown
739
751
 
740
752
  # horde-engine
741
753
 
@@ -749,268 +761,283 @@ Dynamic: license-file
749
761
  [![All Models][all-model-images]][all-model-url]
750
762
  [![Release Changelog][changelog-image]][changelog-url]
751
763
 
752
- > Note: This project was formerly known as `hordelib`. The project namespace will be changed in the near future to reflect this change.
753
-
754
- `horde-engine` is a wrapper around [ComfyUI](https://github.com/comfyanonymous/ComfyUI) primarily to enable the [AI Horde](https://aihorde.net/) to run inference pipelines designed visually in the ComfyUI GUI.
755
-
756
- The developers of `horde-engine` can be found in the AI Horde Discord server: [https://discord.gg/3DxrhksKzn](https://discord.gg/3DxrhksKzn)
757
-
758
- Note that `horde-engine` (previously known as `hordelib`) has been the default inference backend library of the [AI Horde](https://aihorde.net/) since `hordelib` v1.0.0.
759
-
760
- ## Purpose
761
-
762
- The goal here is to be able to design inference pipelines in the excellent ComfyUI, and then call those inference pipelines programmatically. Whilst providing features that maintain compatibility with the existing horde implementation.
763
-
764
- ## Installation
765
-
766
- If being installed from pypi, use a requirements file of the form:
767
- ```
768
- --extra-index-url https://download.pytorch.org/whl/cu121
769
- hordelib
764
+ `horde-engine` wraps a pinned commit of [ComfyUI](https://github.com/comfyanonymous/ComfyUI) so the [AI Horde](https://aihorde.net/) can run ComfyUI-designed inference pipelines programmatically. It is the default inference backend for AI Horde since v1.0.0.
770
765
 
771
- ...your other dependencies...
772
- ```
766
+ Python `>=3.12`. GPU/CUDA required. The package name on PyPI is `horde-engine`; the Python module is `hordelib`.
773
767
 
774
- #### Linux Installation
768
+ Community: [AI Horde Discord](https://discord.gg/3DxrhksKzn).
775
769
 
776
- On Linux you will need to install the Nvidia CUDA Toolkit. Linux installers are provided by Nvidia at https://developer.nvidia.com/cuda-downloads
770
+ ---
777
771
 
778
- Note if you only have 16GB of RAM and a default /tmp on tmpfs, you will likely need to increase the size of your temporary space to install the CUDA Toolkit or it may fail to extract the archive. One way to do that is just before installing the CUDA Toolkit:
779
- ```bash
780
- sudo mount -o remount,size=16G /tmp
781
- ```
782
- If you only have 16GB of RAM you will also need swap space. So if you typically run without swap, add some. You won't be able to run this library without it.
772
+ ## Quick start
783
773
 
784
- ## Usage
774
+ 1. Install `horde-engine` together with a PyTorch build for your hardware (see
775
+ [Choosing a PyTorch build](#choosing-a-pytorch-build)). For NVIDIA:
776
+ ```
777
+ # CUDA 13+ driver -> torch 2.12.0 (the default line):
778
+ pip install --extra-index-url https://download.pytorch.org/whl/cu130 horde-engine
779
+ # CUDA 12.x driver -> the newest CUDA 12.8 build is torch 2.11.0:
780
+ pip install --extra-index-url https://download.pytorch.org/whl/cu128 horde-engine "torch==2.11.0"
781
+ ```
785
782
 
786
- Horde payloads can be processed simply with (for example):
783
+ 2. Set `AIWORKER_CACHE_HOME` to a model directory (see [Model directory layout](#model-directory-layout)).
787
784
 
788
- ```python
789
- # import os
790
- # Wherever your models are
791
- # os.environ["AIWORKER_CACHE_HOME"] = "f:/ai/models" # Defaults to `models/` in the current working directory
785
+ 3. Call `hordelib.initialise()` once per process, then use the public API:
786
+ ```python
787
+ import hordelib
788
+ hordelib.initialise()
792
789
 
793
- import hordelib
790
+ from hordelib.api import HordeLib, ImageGenPayload
794
791
 
795
- hordelib.initialise() # This must be called before any other hordelib functions
792
+ horde = HordeLib()
793
+ payload = ImageGenPayload(
794
+ prompt="an ancient llamia monster",
795
+ model="Deliberate",
796
+ sampler_name="k_dpmpp_2m",
797
+ cfg_scale=7.5,
798
+ ddim_steps=25,
799
+ width=512,
800
+ height=512,
801
+ seed=123456789,
802
+ )
803
+ result = horde.basic_inference_single_image(payload)
804
+ result.image.save("test.png")
805
+ ```
796
806
 
797
- from hordelib.horde import HordeLib
798
- from hordelib.shared_model_manager import SharedModelManager
807
+ `hordelib.initialise()` wipes `sys.argv` -- parse command-line arguments first. It also forbids dev-mode paths containing spaces (do not clone the repo to a path with spaces) and raises if you try to import any ComfyUI-touching code before calling it.
799
808
 
800
- generate = HordeLib()
809
+ For more usage patterns, see the [public API docs](docs/public_api.md) and the example scripts in `examples/`. For complete API surface reference, consult the test suite under `tests/`.
801
810
 
802
- if SharedModelManager.manager.compvis is None:
803
- raise Exception("Failed to load compvis model manager")
811
+ ---
804
812
 
805
- SharedModelManager.manager.compvis.download_model("Deliberate")
806
- SharedModelManager.manager.compvis.validate_model("Deliberate")
813
+ ## Installation
807
814
 
815
+ Requires an NVIDIA GPU with CUDA. On Linux, install the [NVIDIA CUDA Toolkit](https://developer.nvidia.com/cuda-downloads) first. Systems with 16 GB RAM or less need swap space and may need an enlarged `/tmp`:
816
+ ```bash
817
+ sudo mount -o remount,size=16G /tmp
818
+ ```
808
819
 
809
- data = {
810
- "sampler_name": "k_dpmpp_2m",
811
- "cfg_scale": 7.5,
812
- "denoising_strength": 1.0,
813
- "seed": 123456789,
814
- "height": 512,
815
- "width": 512,
816
- "karras": False,
817
- "tiling": False,
818
- "hires_fix": False,
819
- "clip_skip": 1,
820
- "control_type": None,
821
- "image_is_control": False,
822
- "return_control_map": False,
823
- "prompt": "an ancient llamia monster",
824
- "ddim_steps": 25,
825
- "n_iter": 1,
826
- "model": "Deliberate",
827
- }
828
- pil_image = generate.basic_inference_single_image(data).image
820
+ ### From PyPI
829
821
 
830
- if pil_image is None:
831
- raise Exception("Failed to generate image")
822
+ ```
823
+ # CUDA 13+ driver -> torch 2.12.0 (the default line):
824
+ pip install --extra-index-url https://download.pytorch.org/whl/cu130 horde-engine
825
+ # CUDA 12.x driver -> the newest CUDA 12.8 build is torch 2.11.0:
826
+ pip install --extra-index-url https://download.pytorch.org/whl/cu128 horde-engine "torch==2.11.0"
827
+ ```
832
828
 
833
- pil_image.save("test.png")
829
+ ### From source (development)
834
830
 
831
+ ```bash
832
+ git clone https://github.com/Haidra-Org/hordelib.git
833
+ cd hordelib
834
+ uv sync # installs the latest torch (2.12.0, the CUDA 12.6 build) -- see "Choosing a PyTorch build"
835
835
  ```
836
836
 
837
- Note that `hordelib.initialise()` will erase all command line arguments from argv. So make sure you parse them before you call that.
838
-
839
- See `tests/run_*.py` for more standalone examples.
837
+ ### Choosing a PyTorch build
840
838
 
841
- ### Logging
839
+ `horde-engine` does not pin `torch`: it declares `torchvision`/`torchaudio` as version *ranges*, and
840
+ torchvision pins the exact matching torch in its metadata, so installing the library pulls the latest
841
+ supported torch (**2.12.0** -> torchvision 0.27.0 / torchaudio 2.11.0; torchaudio has no 2.12 release).
842
+ You only pick the *build* (which CUDA/ROCm wheels) for your hardware.
842
843
 
843
- If you don't want `hordelib` to setup and control the logging configuration (we use [loguru](https://loguru.readthedocs.io/en/stable/)) initialise with:
844
+ For development, `uv sync` installs the **CUDA 12.6** build of torch 2.12.0 (the index hordelib routes
845
+ to in `[tool.uv.sources]`). It runs on any CUDA 12.6+ driver and, via NVIDIA driver
846
+ backward-compatibility, on CUDA 13 drivers too -- the broadest single build. To use a different build,
847
+ override it ad-hoc after syncing:
844
848
 
845
- ```python
846
- import hordelib
847
- hordelib.initialise(setup_logging=False)
849
+ ```bash
850
+ uv sync
851
+ # then, only if you want a build other than the cu126 default:
852
+ UV_TORCH_BACKEND=auto uv pip install torch torchvision torchaudio # auto-detect your GPU
853
+ uv pip install torch --extra-index-url https://download.pytorch.org/whl/cu130 # exact CUDA 13 build
848
854
  ```
849
855
 
850
- ## Acknowledgments
851
-
852
- `hordelib` depends on a large number of open source projects, and most of these dependencies are automatically downloaded and installed when you install `hordelib`. Due to the nature and purpose of `hordelib` some dependencies are bundled directly _inside_ `hordelib` itself.
856
+ With `pip`, select the index with `--extra-index-url`:
853
857
 
854
- ### [ComfyUI](https://github.com/comfyanonymous/ComfyUI)
855
- A powerful and modular stable diffusion GUI with a graph/nodes interface. Licensed under the terms of the GNU General Public License v3.0.
858
+ | Hardware | index | Notes |
859
+ |---|---|---|
860
+ | NVIDIA, CUDA 13+ driver | `cu130` | torch 2.12.0; a 13.0 build covers any 13.x driver (incl. 13.2). |
861
+ | NVIDIA, CUDA 13.2 (exact) | `cu132` | torch 2.12.0; `cu130` also runs on a 13.2 driver. |
862
+ | NVIDIA, CUDA 12.6+ driver | `cu126` | torch 2.12.0; the only CUDA-12 build of 2.12.0. |
863
+ | NVIDIA, CUDA 12.x, older torch | `cu128` | No 2.12.0 wheel; caps at torch **2.11.0** (add `"torch==2.11.0"`). |
864
+ | AMD (Linux only) | `rocm6.4` | torch **2.9.1 only** (see note below). |
865
+ | No GPU | `cpu` | ~100x slower; testing only. |
856
866
 
857
- The entire purpose of `hordelib` is to access the power of ComfyUI.
867
+ > **ROCm:** only torch 2.9.1 (ROCm 6.4) is currently installable. PyTorch publishes torch 2.10-2.12 on
868
+ > rocm7.x but not the matching `pytorch-triton-rocm` (3.6.0/3.7.0) those wheels hard-depend on, so they
869
+ > cannot be resolved yet. Install it ad-hoc: `uv pip install torch==2.9.1 torchvision torchaudio
870
+ > pytorch-triton-rocm --extra-index-url https://download.pytorch.org/whl/rocm6.4`.
858
871
 
859
- ### [Controlnet Preprocessors for ComfyUI](https://github.com/Fannovel16/comfy_controlnet_preprocessors)
860
- Custom nodes for ComfyUI providing Controlnet preprocessing capability. Licened under the terms of the Apache License 2.0.
872
+ ---
861
873
 
862
- ### [ComfyUI Face Restore Node](https://civitai.com/models/24690/comfyui-facerestore-node)
874
+ ## Architecture (v3)
863
875
 
864
- Custom nodes for ComfyUI providing face restoration.
876
+ The v3 refactor replaced the legacy dict-heavy pipeline machinery with a typed, testable, registry-driven layer. The key pieces:
865
877
 
866
- ### [ComfyQR](https://gitlab.com/sofuego-comfy-nodes/ComfyQR)
867
-
868
- Nodes for generating QR codes
869
-
870
- ## Development
878
+ | Layer | Location | Role |
879
+ |---|---|---|
880
+ | **Public API** | `hordelib/api.py` | Declared consumer surface. Workers import from here only. |
881
+ | **Bootstrap** | `hordelib/initialisation.py` | `initialise()` -- manifest installer, path patching, ComfyUI import, monkeypatches. |
882
+ | **Typed pipeline** | `hordelib/pipeline/` | `ImageGenPayload` (pydantic, clamp-dont-reject), `PipelineTemplate`/`ParamBinding`, priority-ordered `PipelineRegistry`, pure graph patch functions, IO/model resolution. All GPU-free and unit-tested. |
883
+ | **Execution bridge** | `hordelib/execution/` | `ExecutionBackend` protocol, in-process ComfyUI backend, VRAM monkeypatches, pure graph utilities. |
884
+ | **Environment manifest** | `hordelib/installation/` | `manifest.json` pins ComfyUI commit + external custom nodes. `EnvironmentInstaller` checks out/clones idempotently. |
885
+ | **ComfyUI bridge** | `hordelib/comfy_horde.py` | `Comfy_Horde` -- the actual ComfyUI process. `do_comfy_import()` applies monkeypatches. |
886
+ | **Model managers** | `hordelib/model_manager/` | Per-category model records (pydantic), download/validate/lookup, LoRA/TI adhoc cache. |
887
+ | **Pipeline JSON** | `hordelib/pipelines/` | Backend-format pipeline files executed at runtime. |
888
+ | **Pipeline designs** | `hordelib/pipeline_designs/` | ComfyUI-app-editable source workflows (convert to `pipelines/`). |
889
+ | **Custom nodes** | `hordelib/nodes/` | First-party Horde nodes (`HordeCheckpointLoader`, `HordeImageOutput`) and vendored compat nodes. External nodes (controlnet aux, QR) are git-pinned in the manifest. |
871
890
 
872
- Requirements:
873
- - `git` (install git)
874
- - `tox` (`pip install tox`)
875
- - Set the environmental variable `AIWORKER_CACHE_HOME` to point to a model directory.
891
+ ### Pipeline flow
876
892
 
877
- Note the model directory must currently be in the original AI Horde directory structure:
878
893
  ```
879
- <AIWORKER_CACHE_HOME>\
880
- clip\
881
- codeformer\
882
- compvis\
883
- Deliberate.ckpt
884
- ...etc...
885
- controlnet\
886
- embeds\
887
- esrgan\
888
- gfpgan\
889
- safety_checker\
894
+ dict payload --> normalize (horde_compat) --> ImageGenPayload
895
+ --> resolve_context (model files, loras, TIs)
896
+ --> registry.select (predicate + priority --> PipelineTemplate)
897
+ --> materialize (bindings + patch steps --> ComfyGraph)
898
+ --> backend.run_pipeline --> ResultingImageReturn
890
899
  ```
891
900
 
892
- ### Running the Tests
893
-
894
- Simply execute: `tox` (or `tox -q` for less noisy output)
895
-
896
- This will take a while the first time as it installs all the dependencies.
897
-
898
- If the tests run successfully images will be produced in the `images/` folder.
899
-
900
- #### Running a specific test file
901
+ ### Key invariants
901
902
 
902
- `tox -- -k <filename>` for example `tox -- -k test_initialisation`
903
+ - **`initialise()` before everything.** Importing `HordeLib` or any ComfyUI-touching code before `initialise()` raises `RuntimeError`. The test suite enforces this.
904
+ - **Public API only.** Consumers import from `hordelib.api`. Anything not re-exported there is internal and may change without notice. Enforced by `tests/meta/test_public_api_contract.py`.
905
+ - **Clamp, don't reject.** Payload validation coerces bad values to defaults rather than raising -- the Horde contract requires tolerance.
906
+ - **Node titles are the parameter namespace.** A KSampler titled `sampler` produces dotted parameters `sampler.cfg`, `sampler.seed`, etc. Renaming a title silently breaks parameter mapping.
907
+ - **Pipeline selection is registry-driven.** Predicates + explicit priorities replace the old if/elif tree. Adding a new baseline requires one family module, one template, one register call, and one inference test. See [Adding a baseline](docs/adding-a-baseline.md).
903
908
 
904
- #### Running a specific predefined test suite
909
+ ---
905
910
 
906
- `tox list`
911
+ ## Model directory layout
907
912
 
908
- This will list all groups of tests which are involved in either the development, build or CI proccess. Tests which have the word 'fix' in them will automatically apply changes when run, such as to linting or formatting. You can do this by running:
913
+ `AIWORKER_CACHE_HOME` must follow the AI Horde directory structure:
909
914
 
910
- `tox -e [test_suite_name_here]`
911
-
912
- ### Directory Structure
913
-
914
- `hordelib/pipeline_designs/`
915
- Contains ComfyUI pipelines in a format that can be opened by the ComfyUI web app. These saved directly from the web app.
916
-
917
- `hordelib/pipelines/`
918
- Contains the above pipeline JSON files converted to the format required by the backend pipeline processor. These are converted from the web app, see _Converting ComfyUI pipelines_ below.
919
-
920
- `hordelib/nodes/` These are the custom ComfyUI nodes we use for `hordelib` specific processing.
921
-
922
- ### Running ComfyUI Web Application
915
+ ```
916
+ <AIWORKER_CACHE_HOME>/
917
+ clip/
918
+ codeformer/
919
+ compvis/
920
+ Deliberate.ckpt
921
+ ...
922
+ controlnet/
923
+ embeds/
924
+ esrgan/
925
+ gfpgan/
926
+ safety_checker/
927
+ ```
923
928
 
924
- In this example we install the dependencies in the OS default environment. When using the git version of `hordelib`, from the project root:
929
+ Models are managed through `SharedModelManager` (download, validate, list available). See `examples/download_all_sd_models.py` for bulk downloading.
925
930
 
926
- `pip install -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu118 --upgrade`
931
+ ---
927
932
 
928
- Ensure ComfyUI is installed, one way is running the tests:
933
+ ## Development
929
934
 
930
- `tox -- -k test_comfy_install`
935
+ Requirements: `git`, [`uv`](https://docs.astral.sh/uv/), `AIWORKER_CACHE_HOME` set to a model directory, and a CUDA GPU.
931
936
 
932
- From then on to run ComfyUI:
937
+ ### Build, lint, test
933
938
 
934
- `cd ComfyUI`
935
- `python main.py`
939
+ The whole toolchain lives in one `uv`-managed `.venv`. Sync it once (installs the CUDA 12.6 build of
940
+ torch 2.12.0 via `[tool.uv.sources]`), then drive tools with `uv run --no-sync`:
936
941
 
937
- Then open a browser at: http://127.0.0.1:8188/
942
+ ```bash
943
+ uv sync # one-time, and after dependency changes
938
944
 
939
- ### Designing ComfyUI Pipelines
945
+ # Full test suite. The import guard runs first in a clean process (it asserts no ComfyUI
946
+ # import happens before initialise()), then the rest of the suite runs:
947
+ uv run --no-sync pytest -x tests/meta -k test_no_initialise_comfy_horde
948
+ uv run --no-sync pytest -x tests --cov --ignore=tests/meta --durations=20
940
949
 
941
- Use the standard ComfyUI web app. Use the "title" attribute to name the nodes, these names become parameter names in the `hordelib`. For example, a KSampler with the "title" of "sampler2" would become a parameter `sampler2.seed`, `sampler2.cfg`, etc. Load the pipeline `hordelib/pipeline_designs/pipeline_stable_diffusion.json` in the ComfyUI web app for an example.
950
+ uv run --no-sync pytest -k <pattern> # run a subset
951
+ uv run --no-sync pre-commit run --all-files # lint + format gate (black + ruff + mypy)
952
+ uv build # build sdist + wheel
953
+ ```
942
954
 
943
- Save any new pipeline in `hordelib/pipeline_designs` using the naming convention "pipeline_\<name\>.json".
955
+ (Equivalently, activate `.venv` and call `pytest` / `pre-commit` directly.)
944
956
 
945
- Convert the JSON for the model (see _Converting ComfyUI pipelines_ below) and save the resulting JSON in `hordelib/pipelines` using the same filename as the previous JSON file.
957
+ The first test run downloads many multi-GB models and is very slow. Most CI/agent sandboxes
958
+ cannot run the full inference suite; prefer `uv run --no-sync pre-commit run --all-files` for
959
+ quick feedback.
946
960
 
947
- That is all. This can then be called from `hordelib` using the `run_image_pipeline()` method in `hordelib.comfy.Comfy()`
961
+ Tests require a CUDA GPU, `AIWORKER_CACHE_HOME`, `CIVIT_API_TOKEN`, and the committed `images_expected/` reference images. Image-output tests compare generated images against references via cosine/histogram similarity. Set `HORDELIB_SKIP_SIMILARITY_FAIL=1` to downgrade similarity failures to skips on different hardware.
948
962
 
949
- ### Converting ComfyUI pipelines
963
+ ### Key test areas
950
964
 
951
- In addition to the design file saved from the UI, we need to save the pipeline file in the backend format. This file is created in the `hordelib` project root named `comfy-prompt.json` automatically if you run a pipeline through the ComfyUI version embedded in `hordelib`. Running ComfyUI with `tox -e comfyui` automatically patches ComfyUI so this JSON file is saved.
965
+ | Path | What it covers |
966
+ |---|---|
967
+ | `tests/pipeline/` | Payload models, graph operations, template integrity, registry selection -- all GPU-free |
968
+ | `tests/execution/` | Graph utilities, modality seams -- GPU-free |
969
+ | `tests/meta/` | Public API contract, `initialise()`-before-use guard |
970
+ | `tests/test_horde_inference_*.py` | Full GPU inference with image-similarity oracles |
971
+ | `tests/installation/` | Manifest round-trip, installer idempotency |
952
972
 
953
- ### Build Configuration
973
+ ### Designing and converting pipelines
954
974
 
955
- The main config files for the project are: `pyproject.toml`, `tox.ini` and `requirements.txt`
975
+ Design pipelines in the ComfyUI web app (`cd ComfyUI && python main.py`, then http://127.0.0.1:8188/). Assign stable `title` attributes to nodes -- these become the dotted parameter names. Save the design in `hordelib/pipeline_designs/` as `pipeline_<name>.json`.
956
976
 
957
- ### PyPi Publishing
977
+ Convert to backend format by running the pipeline through the embedded ComfyUI (it auto-saves `comfy-prompt.json`), then save the result in `hordelib/pipelines/` with the same filename.
958
978
 
959
- Pypi publishing is automatic all from the GitHub website.
979
+ Do not hand-edit `pipelines/*.json` if a `pipeline_designs/` source exists.
960
980
 
961
- 1. Create a PR from `main` to `releases`
962
- 1. Label the PR with "release:patch" (0.0.1) or "release:minor" (0.1.0)
963
- 1. Merge the PR with a standard merge commit (not squash)
981
+ ### Updating ComfyUI or external custom nodes
964
982
 
983
+ Change the relevant commit SHA in `hordelib/installation/manifest.json`:
984
+ - `comfyui_ref` for ComfyUI itself
985
+ - `ref` for each external custom node
965
986
 
966
- ### Standalone "clean" environment test from Pypi
987
+ Full 40-character SHAs only. The next `hordelib.initialise()` (or `python -m hordelib.installation`) applies the update. Run the full test suite afterwards.
967
988
 
968
- Here's an example:
989
+ ### Local wheel build
969
990
 
970
- Start in a new empty directory. Create requirements.txt:
971
- ```
972
- --extra-index-url https://download.pytorch.org/whl/cu118
973
- hordelib
991
+ ```bash
992
+ uv build # writes dist/horde_engine-<version>.tar.gz and -<version>-py3-none-any.whl
974
993
  ```
975
994
 
976
- Create the directory `images/` and copy the `test_db0.jpg` into it.
995
+ The version is derived from git tags by `hatch-vcs`: a clean checkout sitting exactly on a
996
+ `vX.Y.Z` tag builds `X.Y.Z`; anything else builds a dev version (e.g. `1.2.3.devN`). ComfyUI is
997
+ not bundled into the wheel -- it is fetched per `hordelib/installation/manifest.json` on first
998
+ `initialise()`. To smoke-test the wheel away from the source tree (so the repo's `hordelib/`
999
+ cannot shadow the installed package), install it into a throwaway venv created outside the repo.
977
1000
 
978
- Copy `run_controlnet.py` from the `hordelib/tests/` directory.
1001
+ ### Release process
979
1002
 
980
- Build a venv:
981
- ```
982
- python -m venv venv
983
- .\venv\Scripts\activate
984
- pip install -r requirements.txt
985
- ```
1003
+ Releases are cut by pushing a version tag. The tag **is** the version (`hatch-vcs`), and the
1004
+ [release workflow](.github/workflows/release.yml) builds with `uv build` and publishes to PyPI
1005
+ via trusted publishing (then creates a GitHub Release for the tag).
986
1006
 
987
- Run the test we copied:
1007
+ ```bash
1008
+ git checkout main && git pull
1009
+ git tag vX.Y.Z # must be vX.Y.Z and sit on the commit you want released
1010
+ git push origin vX.Y.Z
988
1011
  ```
989
- python run_controlnet.py
990
1012
 
991
- The `images/` directory should have our test images.
992
- ```
1013
+ ---
993
1014
 
994
- ### Creating a local build of hordelib
1015
+ ## Documentation
995
1016
 
996
- This is useful when testing new nodes via the horde-reGen-worker etc
1017
+ | Document | Content |
1018
+ |---|---|
1019
+ | [docs/public_api.md](docs/public_api.md) | Declared consumer surface and key patterns |
1020
+ | [docs/adding-a-baseline.md](docs/adding-a-baseline.md) | Checklist for supporting a new model architecture |
1021
+ | [docs/modality-readiness.md](docs/modality-readiness.md) | Audit of audio/video modality seams |
1022
+ | [docs/plans/major-overhaul-1.md](docs/plans/major-overhaul-1.md) | v3 phased refactor plan and status |
1023
+ | [AGENTS.md](AGENTS.md) | Comprehensive codebase map, conventions, and sensitive areas |
997
1024
 
998
- ```bash
999
- python build_helper.py
1000
- python -m build --sdist --wheel --outdir dist/ .
1001
- python build_helper.py --fix
1002
- ```
1025
+ ---
1003
1026
 
1004
- On the venv where you want to install th new version
1027
+ ## License
1005
1028
 
1006
- ```bash
1007
- python -m pip install /path/to/hordelib/dist/horde_engine-*.whl
1008
- ```
1029
+ [GNU Affero General Public License v3.0](LICENSE)
1030
+
1031
+ ## Acknowledgments
1009
1032
 
1010
- ### Updating the embedded version of ComfyUI
1033
+ `horde-engine` builds on a large number of open-source projects:
1011
1034
 
1012
- - Change the value in `consts.py` to the desired ComfyUI version.
1013
- - Run the test suite via `tox`
1035
+ - [ComfyUI](https://github.com/comfyanonymous/ComfyUI) (GPLv3) -- the graph/nodes inference engine this project wraps.
1036
+ - [comfyui_controlnet_aux](https://github.com/Fannovel16/comfy_controlnet_preprocessors) (Apache 2.0) -- ControlNet preprocessors, installed via the manifest.
1037
+ - [ComfyUI-layerdiffuse](https://github.com/huchenlei/ComfyUI-layerdiffuse) -- layer diffusion nodes (vendored with compat fixes).
1038
+ - [facerestore_cf](https://civitai.com/models/24690/comfyui-facerestore-node) -- face restoration nodes (vendored with compat fixes).
1039
+ - [ComfyQR](https://gitlab.com/sofuego-comfy-nodes/ComfyQR) -- QR code generation, installed via the manifest.
1040
+ - [horde-sdk](https://github.com/Haidra-Org/horde-sdk) and [horde-model-reference](https://github.com/Haidra-Org/horde-model-reference) -- payload types and model metadata consumed by this library.
1014
1041
 
1015
1042
 
1016
1043
 
@@ -1030,4 +1057,4 @@ python -m pip install /path/to/hordelib/dist/horde_engine-*.whl
1030
1057
  [pr-test-url]: https://tests.hordelib.org/unstable/index.html
1031
1058
  [all-model-url]: https://tests.hordelib.org/all_models/
1032
1059
  [changelog-image]: https://img.shields.io/badge/Release-Changelog-yellow
1033
- [changelog-url]: https://github.com/Haidra-Org/hordelib/blob/releases/CHANGELOG.md
1060
+ [changelog-url]: https://github.com/Haidra-Org/hordelib/releases