Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 25 additions & 3 deletions backend/cortex_backend/execution/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""Durable execution primitives and provider-independent safety contracts.

Only the deterministic fake provider and transport-neutral broker contract are
exposed in this phase. Native transports and real runtime providers remain absent
until later ADR gates are approved.
Only the deterministic fake provider and reviewed broker contracts are exposed in
this phase. The native adapter remains transport-only; real runtime providers stay
absent until later ADR gates are approved.
"""

from .broker import (
Expand Down Expand Up @@ -33,6 +33,18 @@
verify_bundle_files,
verify_signed_manifest,
)
from .native_broker import (
DEFAULT_NATIVE_CONNECT_TIMEOUT_MS,
DEFAULT_NATIVE_PIPE_BUFFER_BYTES,
MAX_NATIVE_PIPE_NAME_LENGTH,
NativeBrokerClient,
NativeBrokerClientConfig,
NativeBrokerConnection,
NativeBrokerError,
NativeBrokerServer,
NativeBrokerServerConfig,
build_pipe_sddl,
)
from .recipes import (
CalculatorPlan,
CheckPlan,
Expand Down Expand Up @@ -65,6 +77,8 @@
"BrokerPeerPolicy",
"BrokerProtocolError",
"BrokerSessionKeys",
"DEFAULT_NATIVE_CONNECT_TIMEOUT_MS",
"DEFAULT_NATIVE_PIPE_BUFFER_BYTES",
"ExecutionRepository",
"ExecutionRepositoryError",
"ExecutionLifecycle",
Expand All @@ -78,6 +92,13 @@
"ManifestEntry",
"ManifestState",
"ManifestVerificationError",
"MAX_NATIVE_PIPE_NAME_LENGTH",
"NativeBrokerClient",
"NativeBrokerClientConfig",
"NativeBrokerConnection",
"NativeBrokerError",
"NativeBrokerServer",
"NativeBrokerServerConfig",
"PrimitiveEvaluationError",
"RecipeValidationError",
"RuntimeHealth",
Expand All @@ -94,6 +115,7 @@
"verify_signed_manifest",
"PeerIdentity",
"authorize_message",
"build_pipe_sddl",
"decode_frame",
"decode_message",
"encode_frame",
Expand Down
Loading
Loading