/**
 * Daily Forecast Generator
 *
 * RULE: When the current day's forecasts become eligible for post,
 * automatically generate them with current market pricing from data feeds.
 *
 * This worker:
 * 1. Fetches all events from SGO across all leagues
 * 2. Filters to only today's games (eligible for post)
 * 3. For each eligible game without a cached forecast, generates one via Grok
 * 4. Stores the forecast + current market pricing in rm_forecast_cache
 * 5. For games that already have a cached forecast, refreshes their odds
 *
 * Runs via cron at 6:00 AM ET daily, with an optional refresh at 12:00 PM ET.
 *
 * Usage: npx tsx src/workers/daily-forecasts.ts [--dry-run]
 */
import 'dotenv/config';
//# sourceMappingURL=daily-forecasts.d.ts.map