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, )