Spaces:
Sleeping
Sleeping
File size: 759 Bytes
ce45eb0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """Matrix Context — a local-first, inspectable Mixture-of-Contexts engine and
MCP server for agent memory."""
from .manager import ContextManager
from .config import Config
from .schema import ContextItem, ContextPack, RecallQuery, EXPERTS
from .embedding import HashingEmbedder, Embedder
__all__ = ["ContextManager", "Config", "ContextItem", "ContextPack",
"RecallQuery", "EXPERTS", "HashingEmbedder", "Embedder",
"CONTRACT_VERSION"]
__version__ = "0.1.0"
# MoC Contract version — the frozen public wire contract (JSON Schema + OpenAPI +
# MCP mapping under moc_contract/). Follows SemVer independently of the package
# version: wire-object/semantic changes bump this per moc_contract/compatibility.md.
CONTRACT_VERSION = "1.0.0"
|