10 lines
443 B
Python
10 lines
443 B
Python
"""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"]
|