message-error.ts 263 B

123456789
  1. export const MessageErrorCode = {
  2. THREAD_ID_IS_NOT_SET: 'thread-id-is-not-set',
  3. } as const;
  4. export const StreamErrorCode = {
  5. BUDGET_EXCEEDED: 'budget-exceeded',
  6. } as const;
  7. export type StreamErrorCode = typeof StreamErrorCode[keyof typeof StreamErrorCode];