Buckets:
| export class AuthError extends Error {} | |
| export class CreditsError extends Error {} | |
| export class MonthlyLimitError extends Error {} | |
| export class UserLimitError extends Error {} | |
| export class ModelError extends Error {} | |
| class LimitError extends Error { | |
| retryAfter?: number | |
| constructor(message: string, retryAfter?: number) { | |
| super(message) | |
| this.retryAfter = retryAfter | |
| } | |
| } | |
| export class RateLimitError extends LimitError {} | |
| export class FreeUsageLimitError extends LimitError {} | |
| export class BlackUsageLimitError extends LimitError {} | |
| type LimitName = "5 hour" | "weekly" | "monthly" | |
| export class GoUsageLimitError extends LimitError { | |
| workspace: string | |
| limitName: LimitName | |
| constructor(message: string, workspace: string, limitName: LimitName, retryAfter?: number) { | |
| super(message, retryAfter) | |
| this.workspace = workspace | |
| this.limitName = limitName | |
| } | |
| } | |
Xet Storage Details
- Size:
- 885 Bytes
- Xet hash:
- ca3cfd8addf8b6dc2577439a2b88e0b66a1a2c965a260df066c616b7bacc1e67
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.