UNPKG

@astermind/astermind-pro

Version:

Astermind Pro - Premium ML Toolkit with Advanced RAG, Reranking, Summarization, and Information Flow Analysis

43 lines 1.41 kB
/** * Central License Configuration for Astermind Pro * * This is the single place where customers can configure their license key. * The license will automatically propagate to: * - Astermind Pro * - Astermind Synthetic Data (included with Pro subscription) * * Usage: * 1. Set your license token here, OR * 2. Set the ASTERMIND_LICENSE_TOKEN environment variable, OR * 3. Call setLicenseTokenFromString() programmatically */ /** * Your Astermind Pro license token. * * Get your license token from: * - https://license.astermind.ai * - Your account dashboard * - Contact support@astermind.ai * * Leave as null to use environment variable or programmatic setting. */ export const LICENSE_TOKEN = null; /** * Initialize license on module load if token is provided. * This ensures the license is set as early as possible. */ if (LICENSE_TOKEN) { // Use dynamic import to avoid circular dependencies import('../core/license').then(license => { license.initializeLicense(); license.setLicenseTokenFromString(LICENSE_TOKEN).catch(err => { console.error('[Astermind Pro] Failed to set license token:', err); }); }); } /** * Alternative: Set license from environment variable * The license module will automatically check for ASTERMIND_LICENSE_TOKEN * environment variable if no token is set here. */ //# sourceMappingURL=license-config.js.map