gitextract_0k49dxwn/ ├── .github/ │ └── workflows/ │ ├── build-comfy-base-images.yml │ └── create-release.yml ├── .gitignore ├── .nvmrc ├── DEVELOPING.md ├── LICENSE ├── README.md ├── build-and-release ├── build-binary ├── claude-endpoint-creation-prompt.md ├── docker/ │ ├── api.dockerfile │ ├── build-api-images │ ├── build-comfy-base-images │ ├── comfyui.dockerfile │ └── push-comfy-base-images ├── docker-compose.yml ├── example-workflows/ │ ├── flux/ │ │ ├── img2img.json │ │ ├── img2img.ts │ │ ├── txt2img.json │ │ └── txt2img.ts │ ├── sd1.5/ │ │ ├── img2img.js │ │ ├── img2img.json │ │ ├── img2img.ts │ │ ├── txt2img.js │ │ ├── txt2img.json │ │ └── txt2img.ts │ └── sdxl/ │ ├── img2img.json │ ├── img2img.ts │ ├── txt2img-with-refiner.json │ ├── txt2img-with-refiner.ts │ ├── txt2img.json │ └── txt2img.ts ├── generate-workflow ├── manifest.yml ├── package.json ├── scripts/ │ └── smoke-proxy.mjs ├── src/ │ ├── comfy-node-preprocessors.ts │ ├── comfy.ts │ ├── commands.ts │ ├── config.ts │ ├── credential-resolver.ts │ ├── event-emitters.ts │ ├── git-url-parser.ts │ ├── image-tools.ts │ ├── index.ts │ ├── llm-providers.ts │ ├── proxy-dispatcher.ts │ ├── remote-storage-manager.ts │ ├── server.ts │ ├── storage-providers/ │ │ ├── azure-blob.ts │ │ ├── hf.ts │ │ ├── http.ts │ │ ├── index.ts │ │ └── s3.ts │ ├── types.ts │ ├── utils.ts │ └── workflows/ │ └── index.ts ├── test/ │ ├── Dockerfile.file-server │ ├── core.spec.ts │ ├── docker-image/ │ │ ├── Dockerfile │ │ ├── Dockerfile.smoketest │ │ └── link-models │ ├── file-server.ts │ ├── llm-providers.spec.ts │ ├── output/ │ │ └── .gitkeep │ ├── submit-many-jobs.js │ ├── test-utils.ts │ ├── utils.spec.ts │ └── workflows/ │ ├── sd1.5-img2img.json │ ├── sd1.5-multi-output.json │ ├── sd1.5-parallel-2.json │ ├── sd1.5-parallel-3.json │ └── sd1.5-txt2img.json ├── tsconfig.json └── vitest.config.ts