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.
16 lines (15 loc) • 581 B
TypeScript
import { RecallrAIError } from './base';
/**
* Base class for server-related exceptions.
*/
export declare class ServerError extends RecallrAIError {
constructor(message?: string, code?: string, httpStatus?: number, details?: Record<string, any>);
}
/**
* Raised when the RecallrAI API encounters an internal server error.
*
* This exception is typically raised when the API returns a 5xx error code.
*/
export declare class InternalServerError extends ServerError {
constructor(message?: string, code?: string, httpStatus?: number, details?: Record<string, any>);
}