14 lines
1.4 KiB
JavaScript
14 lines
1.4 KiB
JavaScript
/**
|
|
* Domain-Specific Attention Configuration Examples
|
|
*
|
|
* This module exports real-world configurations and examples for various industries
|
|
* and use cases, demonstrating how to adapt AgentDB's attention mechanisms for
|
|
* specific requirements.
|
|
*/
|
|
export { TRADING_ATTENTION_CONFIG, TRADING_PERFORMANCE_TARGETS, TRADING_CONFIG_VARIATIONS, matchTradingPattern, adaptConfigToMarket } from './trading-systems';
|
|
export { MEDICAL_ATTENTION_CONFIG, MEDICAL_PERFORMANCE_TARGETS, MEDICAL_CONFIG_VARIATIONS, findSimilarCases, adaptConfigToUrgency, validateMedicalData } from './medical-imaging';
|
|
export { ROBOTICS_ATTENTION_CONFIG, ROBOTICS_PERFORMANCE_TARGETS, ROBOTICS_CONFIG_VARIATIONS, matchEnvironment, adaptConfigToEnvironment, adaptConfigToPower } from './robotics-navigation';
|
|
export { ECOMMERCE_ATTENTION_CONFIG, ECOMMERCE_PERFORMANCE_TARGETS, ECOMMERCE_CONFIG_VARIATIONS, recommendProducts, adaptConfigToUserSegment, adaptConfigToPromotion, generateABTestConfigs } from './e-commerce-recommendations';
|
|
export { RESEARCH_ATTENTION_CONFIG, RESEARCH_PERFORMANCE_TARGETS, RESEARCH_CONFIG_VARIATIONS, discoverRelatedResearch, adaptConfigToSearchMode, adaptConfigToResearchStage, analyzeCitationNetwork } from './scientific-research';
|
|
export { IOT_ATTENTION_CONFIG, IOT_PERFORMANCE_TARGETS, IOT_CONFIG_VARIATIONS, detectAnomalies, adaptConfigToDeployment, adaptConfigToBattery, adaptConfigToTopology } from './iot-sensor-networks';
|
|
//# sourceMappingURL=index.js.map
|