mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-06-18 20:10:09 +02:00
cfbeabda1e
* feat(telegram): auto-translate OSINT channel posts to English Cherry-picked from @Bobpick PR #391 (telegram-only slice): server-side translation during fetch, SHOW ORIGINAL toggle in TelegramOsintPopup, and on-demand /api/telegram-feed?lang=. Co-authored-by: Robert Pickett <bobpickettsr@yahoo.com> Co-authored-by: Cursor <cursoragent@cursor.com> * feat(gt): experimental Derived OSINT analytics with lean-node safeguards Cherry-picked from @Bobpick PR #391 (GT + OpenClaw slice): Bayesian strategic-risk engine, map overlay, OpenClaw commands, and telegram_rhetoric watchdog. Off by default (GT_ANALYTICS_ENABLED=false, gt_risk layer false). 1 vCPU nodes get cgroup detection, UI warning on layer toggle, and lean profile that skips scheduled ingest/Louvain unless GT_ANALYTICS_ACK_LOW_CPU=true. Backtest HUD removed from dashboard (OpenClaw/API regression only). Co-authored-by: Robert Pickett <bobpickettsr@yahoo.com> Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Robert Pickett <bobpickettsr@yahoo.com> Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
604 B
Python
21 lines
604 B
Python
"""Strategic Risk Analytics — game-theoretic early warning layer."""
|
|
|
|
from analytics.backtest import (
|
|
DEFAULT_BACKTEST_ALERT_THRESHOLD,
|
|
BacktestReport,
|
|
run_historical_backtest,
|
|
tune_alert_threshold,
|
|
)
|
|
from analytics.gt_early_warning import GT_EarlyWarning
|
|
from analytics.integration import get_gt_engine, process_feed_item, refresh_from_latest_data
|
|
|
|
__all__ = [
|
|
"BacktestReport",
|
|
"DEFAULT_BACKTEST_ALERT_THRESHOLD",
|
|
"GT_EarlyWarning",
|
|
"get_gt_engine",
|
|
"process_feed_item",
|
|
"refresh_from_latest_data",
|
|
"run_historical_backtest",
|
|
"tune_alert_threshold",
|
|
] |