UNPKG

recallrai

Version:

Official Node.js SDK for RecallrAI - Revolutionary contextual memory system that enables AI assistants to form meaningful connections between conversations, just like human memory.

11 lines (10 loc) 419 B
import { RecallrAIError } from './base'; /** * Raised when there is an authentication issue with the API key. * * This exception is typically raised when the API key is invalid, * has been revoked, or doesn't have the necessary permissions. */ export declare class AuthenticationError extends RecallrAIError { constructor(message?: string, code?: string, httpStatus?: number, details?: Record<string, any>); }