@jeanmemory/react
Version:
React SDK for Jean Memory - Build personalized AI chatbots in 5 lines of code
12 lines (11 loc) • 539 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.JEAN_OAUTH_TOKEN = exports.JEAN_OAUTH_AUTHORIZE = exports.JEAN_API_BASE = void 0;
/**
* Jean Memory React SDK - Configuration
* Centralized API endpoints for Universal OAuth 2.1
*/
exports.JEAN_API_BASE = 'https://jean-memory-api-virginia.onrender.com';
// OAuth endpoints use the same API base
exports.JEAN_OAUTH_AUTHORIZE = `${exports.JEAN_API_BASE}/v1/sdk/oauth/authorize`;
exports.JEAN_OAUTH_TOKEN = `${exports.JEAN_API_BASE}/v1/sdk/oauth/token`;
;