tlnt
Version:
TLNT - HMS-Powered Multi-Agent Platform with Government Agency Analysis, Deep Research, and Enterprise-Ready Deployment. Self-optimizing multi-domain AI agent with continuous learning and enterprise-grade performance monitoring.
42 lines • 1.3 kB
JavaScript
export const defaultConfig = {
api: {
baseUrl: 'https://api.blax.ai',
hubUrl: 'wss://api.blax.ai/hub',
timeout: 30000,
},
auth: {
tokenUrl: 'https://api.blax.ai/auth/token',
},
features: {
telemetry: true,
offlineMode: true,
autoUpdate: true,
},
domains: {
primary: 'https://blax.ai',
api: 'https://api.blax.ai',
docs: 'https://docs.blax.ai',
status: 'https://status.blax.ai',
},
};
export function getBlaxConfig() {
return {
api: {
baseUrl: process.env.BLAX_API_URL || defaultConfig.api.baseUrl,
hubUrl: process.env.BLAX_HUB_URL || defaultConfig.api.hubUrl,
timeout: parseInt(process.env.BLAX_TIMEOUT || '30000'),
},
auth: {
tokenUrl: process.env.BLAX_TOKEN_URL || defaultConfig.auth.tokenUrl,
clientId: process.env.BLAX_CLIENT_ID,
},
features: {
telemetry: process.env.BLAX_TELEMETRY !== 'false',
offlineMode: process.env.BLAX_OFFLINE === 'true',
autoUpdate: process.env.BLAX_AUTO_UPDATE !== 'false',
},
domains: defaultConfig.domains,
};
}
export const blaxConfig = getBlaxConfig();
//# sourceMappingURL=blax.js.map