Sign In

@buzzr/entertainment-engine

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@buzzr/entertainment-engine

Transparent sports entertainment scoring and hybrid ML prediction engine for Buzzr.

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
38
58.33%
Maintainers
1
Weekly downloads
 
Created
Source

@buzzr/entertainment-engine

Transparent sports entertainment scoring and hybrid ML prediction utilities for Buzzr.

The package is intentionally pure: it does not import React Native, Expo, Supabase, AsyncStorage, or app services. Apps and jobs provide data through plain objects, then persist results however they choose.

Core API

import {
  resolveBuzzScores,
  enrichGameRowWithBuzzScores,
  predictGameWithDiagnostics,
} from '@buzzr/entertainment-engine';

const resolved = resolveBuzzScores({
  league: 'NBA',
  status: 'scheduled',
  startsAt: '2026-06-12T01:00:00Z',
  homeTeam: 'Boston Celtics',
  awayTeam: 'Los Angeles Lakers',
}, { upcomingLike: true });

const prediction = predictGameWithDiagnostics({
  league: 'NBA',
  status: 'scheduled',
  startsAt: '2026-06-12T01:00:00Z',
  homeTeam: 'Boston Celtics',
  awayTeam: 'Los Angeles Lakers',
}, {
  odds: { spread: -1.5, overUnder: 226.5 },
  teamPower: { home: 9.2, away: 8.7 },
});

Design

  • resolveBuzzScores is deterministic and explainable.
  • predictGameWithDiagnostics layers trained weights over transparent features and returns factor impacts, input coverage, confidence, and model version metadata.
  • Training helpers accept already-built examples; Supabase extraction belongs in the consuming app or job.

Keywords

sports

FAQs

Package last updated on 13 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts