ADD ComfyUI worker适配webhook

This commit is contained in:
2025-05-16 18:51:33 +08:00
parent 8f60f205ed
commit bb9ee2cd5d
8 changed files with 22 additions and 22 deletions

View File

@@ -4,8 +4,8 @@ from dotenv import dotenv_values
ffmpeg_worker_image = (
modal.Image.debian_slim(python_version="3.11")
.apt_install('ffmpeg')
.pip_install_from_pyproject("pyproject.toml")
.env(dotenv_values(".runtime.env"))
.pip_install_from_pyproject("../pyproject.toml")
.env(dotenv_values("../.runtime.env"))
.add_local_python_source('cluster')
.add_local_python_source('BowongModalFunctions')
)