__init__.py 663 B

123456789101112131415161718192021
  1. from ._const import DemandRecommendConst, MatchMethod, ConfigCode, DemandSource
  2. from ._utils import DemandRecord, MatchStrategy, MatchResult, DemandStrategyParser, parse_recall_items, parse_scored_items
  3. from ._mapper import DemandRecommendMapper
  4. from .match_engine import DemandVideoMatchEngine
  5. from .entrance import DemandRecommendTask
  6. __all__ = [
  7. "DemandRecommendConst",
  8. "MatchMethod",
  9. "ConfigCode",
  10. "DemandSource",
  11. "DemandRecord",
  12. "MatchStrategy",
  13. "MatchResult",
  14. "DemandStrategyParser",
  15. "DemandRecommendMapper",
  16. "DemandVideoMatchEngine",
  17. "DemandRecommendTask",
  18. "parse_recall_items",
  19. "parse_scored_items",
  20. ]