This commit is contained in:
Yansong Zhang
2025-10-14 11:35:20 +08:00
parent b211147ff0
commit 8ee6ae5a25
2 changed files with 50 additions and 0 deletions

View File

@ -115,3 +115,8 @@ class InvokeRateLimitError(BaseHTTPException):
error_code = "rate_limit_error"
description = "Rate Limit Error"
code = 429
class NeedAddIdsError(BaseHTTPException):
error_code = "need_add_ids"
description = "Need to add ids."
code = 400