This commit is contained in:
aaron 2025-03-25 12:12:05 +08:00
parent adca35f7bf
commit 2fc2650e82

View File

@ -214,7 +214,8 @@ async def check_tryon_status(
url = status_response.get("image_url")
# 下载图片并上传到自己的腾讯云
# 下载图片
response = httpx.get(url)
async with httpx.AsyncClient() as client:
response = await client.get(url)
image_data = response.content
# 上传到腾讯云
@ -223,7 +224,6 @@ async def check_tryon_status(
# 上传图片到腾讯云
upload_result = qcloud_service.upload_file(image_data, "tryon_results")
db_tryon.completion_url = upload_result.get("url")
db.commit()