From bf0854a848ec1f5fa097ee5f185df8a1166e90b2 Mon Sep 17 00:00:00 2001 From: yp Date: Fri, 12 Sep 2025 19:16:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=80=9A=E7=94=A8=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E4=B8=8A=E4=BC=A0=E8=8A=82=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ext/video_agent_deploy.py | 2 +- nodes/file_upload.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/video_agent_deploy.py b/ext/video_agent_deploy.py index df23eb3..c7d3e2c 100644 --- a/ext/video_agent_deploy.py +++ b/ext/video_agent_deploy.py @@ -37,7 +37,7 @@ image = ( .run_commands("rm -rf /root/comfy/ComfyUI/input&&ln -s /models/input /root/comfy/ComfyUI/input") .run_commands("rm -rf /root/comfy/ComfyUI/output&&ln -s /models/output /root/comfy/ComfyUI/output") ) -app = modal.App(image=image, name='cf-video-api') +app = modal.App(image=image, name='comfyui-video-agent') custom_secret = modal.Secret.from_name("comfyui-custom-secret", environment_name="dev") vol = modal.Volume.from_name("comfy_model", environment_name="dev", create_if_missing=True) diff --git a/nodes/file_upload.py b/nodes/file_upload.py index 7138462..e52eb17 100644 --- a/nodes/file_upload.py +++ b/nodes/file_upload.py @@ -91,7 +91,7 @@ def upload_file_gs(file_path: str): } response = requests.post( - 'https://https://modal-prod.bowong.cc/api/file/upload/s3', + 'https://modal-prod.bowong.cc/api/file/upload/s3', headers=headers, files=files, )