feat: 增加详细日志记录并支持热重载、过载情况不计入错误阈值计数、请求日志显示详细信息

fix: 修改进度查询接口
refactor: 移除去水印功能中的公开视频处理逻辑

Close #38
This commit is contained in:
TheSmallHanCat
2025-12-23 13:01:32 +08:00
parent 9cd14b858e
commit 2f6fc345a9
7 changed files with 194 additions and 73 deletions

View File

@@ -291,7 +291,7 @@ class SoraClient:
Returns:
List of pending tasks with progress information
"""
result = await self._make_request("GET", "/nf/pending", token)
result = await self._make_request("GET", "/nf/pending/v2", token)
# The API returns a list directly
return result if isinstance(result, list) else []