You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/polymarket/sqliteStore.ts: all state now persists into a single data/zinger.db (WAL) via Node 22's built-in node:sqlite — no native compilation. Keyed by the JSON store's relative path, with one-time auto-migration of legacy JSON files.
ml/sqlite_store.py + wiring in train_lstm.py, pipeline.py, export_onnx.py: Python scripts share the same docs table as the Node app, keeping both sides in sync.
Fallback: node:sqlite is loaded via createRequire, so the package still runs on Node 20/21 — persistence.ts transparently falls back to JSON files when the built-in is unavailable.