fix(ai-avatar): bump lipsync job creation timeout to 120s #1994

Merged
auto-approve-bot merged 1 commits from fix/avatar-lipsync-timeout into develop 2026-09-20 00:43:10 +08:00
+2 -1
View File
@@ -44,7 +44,8 @@ export const createLipsyncJob = async (data: {
enable_video_loop?: boolean
project_id?: string
}): Promise<LipsyncJob> => {
const response = await apiClient.post<LipsyncJob>("/lipsync/jobs", data)
// GPU 口型同步推理约 20s,留足余量到 120s 防止 10s 默认超时
const response = await apiClient.post<LipsyncJob>("/lipsync/jobs", data, { timeout: 120_000 })
return response.data
}