@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
20 lines (19 loc) • 451 B
JavaScript
//#region src/chat/types/error.ts
const ChatErrorType = {
InvalidAccessCode: "InvalidAccessCode",
OpenAIBizError: "OpenAIBizError",
NoAPIKey: "NoAPIKey",
BadRequest: 400,
Unauthorized: 401,
Forbidden: 403,
ContentNotFound: 404,
MethodNotAllowed: 405,
TooManyRequests: 429,
InternalServerError: 500,
BadGateway: 502,
ServiceUnavailable: 503,
GatewayTimeout: 504
};
//#endregion
export { ChatErrorType };
//# sourceMappingURL=error.mjs.map