Improve generation task client errors

This commit is contained in:
2026-06-04 21:07:48 +08:00
parent 8fbb2ec95e
commit d36a093159
3 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ export const webGenerationGateway = {
prompt,
createdAt,
source: "server",
errorMessage: err instanceof Error ? err.message : "请求失败",
errorMessage: err instanceof Error ? err.message : "请求失败,请稍后重试",
};
}
},