@higher.archi/boe 1.0.25 → 1.0.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/index.ts CHANGED
@@ -31,6 +31,7 @@ export { ConstraintEngine } from './engines/constraint';
31
31
  export { UtilityEngine } from './engines/utility';
32
32
  export { PricingEngine } from './engines/pricing';
33
33
  export { EnsembleEngine } from './engines/ensemble';
34
+ export { SentimentEngine } from './engines/sentiment';
34
35
 
35
36
  // ========================================
36
37
  // Core Types & Utilities
@@ -484,6 +485,37 @@ export type {
484
485
  PredictionOptions
485
486
  } from './engines/prediction';
486
487
 
488
+ // Sentiment
489
+ export {
490
+ SentimentExecutor,
491
+ compileSentimentRuleSet,
492
+ sentimentStrategy,
493
+ SENTIMENT_DEFAULTS,
494
+ resolveSentimentLabel
495
+ } from './engines/sentiment';
496
+ export type {
497
+ SentimentStrategy,
498
+ SentimentLabel,
499
+ SentimentLexicon,
500
+ CompiledSentimentLexicon,
501
+ SentimentConfig,
502
+ TokenLevelSentimentRuleSet,
503
+ DocumentLevelSentimentRuleSet,
504
+ AspectBasedSentimentRuleSet,
505
+ SentimentRuleSet,
506
+ CompiledTokenLevelSentimentRuleSet,
507
+ CompiledDocumentLevelSentimentRuleSet,
508
+ CompiledAspectBasedSentimentRuleSet,
509
+ CompiledSentimentRuleSet,
510
+ TokenModifier,
511
+ TokenScore,
512
+ SentenceResult,
513
+ AspectResult,
514
+ SentimentResult,
515
+ SentimentOptions,
516
+ IngestResult
517
+ } from './engines/sentiment';
518
+
487
519
  // ========================================
488
520
  // Utility Functions (from old modules, re-exported for convenience)
489
521
  // ========================================