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.
15 lines (14 loc) • 570 B
TypeScript
import { RecallrAIError } from "./base";
export declare class UserError extends RecallrAIError {
constructor(message: string, httpStatus: number);
}
export declare class UserNotFoundError extends UserError {
constructor(message: string, httpStatus: number);
}
export declare class UserAlreadyExistsError extends UserError {
constructor(message: string, httpStatus: number);
}
export declare class InvalidCategoriesError extends UserError {
invalidCategories: string[];
constructor(message: string, httpStatus: number, invalidCategories: string[]);
}