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.
33 lines (32 loc) • 1.55 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = exports.errors = exports.Session = exports.User = exports.RecallrAI = void 0;
const client_1 = require("./client");
Object.defineProperty(exports, "RecallrAI", { enumerable: true, get: function () { return client_1.RecallrAI; } });
const user_1 = require("./user");
Object.defineProperty(exports, "User", { enumerable: true, get: function () { return user_1.User; } });
const session_1 = require("./session");
Object.defineProperty(exports, "Session", { enumerable: true, get: function () { return session_1.Session; } });
// Import errors explicitly
const errors_1 = require("./errors");
// Export errors explicitly
exports.errors = {
RecallrAIError: errors_1.RecallrAIError,
AuthenticationError: errors_1.AuthenticationError,
NetworkError: errors_1.NetworkError,
TimeoutError: errors_1.TimeoutError,
ConnectionError: errors_1.ConnectionError,
ServerError: errors_1.ServerError,
InternalServerError: errors_1.InternalServerError,
SessionError: errors_1.SessionError,
InvalidSessionStateError: errors_1.InvalidSessionStateError,
SessionNotFoundError: errors_1.SessionNotFoundError,
UserError: errors_1.UserError,
UserNotFoundError: errors_1.UserNotFoundError,
UserAlreadyExistsError: errors_1.UserAlreadyExistsError,
ValidationError: errors_1.ValidationError
};
// The current version of the SDK
exports.version = '0.2.2';
// Default export is the RecallrAI client
exports.default = client_1.RecallrAI;