Initial commit: Ten31 Signal Engine (ingest, scoring brain, corpus seeds)

This commit is contained in:
Keysat
2026-06-15 09:24:29 -05:00
commit a6aec77506
77 changed files with 6263 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
"""Spark Control gateway client — the SINGLE chokepoint for all gateway HTTP (§13).
No other module in the engine knows the gateway URL. Everything local-compute
(transcription, diarization, the local LLM, embeddings, rerank, hybrid search, and the
scrub/rehydrate sovereignty boundary) goes through here.
"""
from .client import SparkControl, SparkControlError, from_config
__all__ = ["SparkControl", "SparkControlError", "from_config"]