coordpy-ai 0.5.16__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- coordpy/__init__.py +1560 -0
- coordpy/__main__.py +8 -0
- coordpy/_cli.py +408 -0
- coordpy/_internal/__init__.py +9 -0
- coordpy/_internal/core/__init__.py +4 -0
- coordpy/_internal/core/adaptive_sub.py +524 -0
- coordpy/_internal/core/agent_keys.py +154 -0
- coordpy/_internal/core/code_harness.py +171 -0
- coordpy/_internal/core/dynamic_comm.py +992 -0
- coordpy/_internal/core/extractor_noise.py +682 -0
- coordpy/_internal/core/llm_client.py +106 -0
- coordpy/_internal/core/role_handoff.py +643 -0
- coordpy/_internal/core/task_board.py +119 -0
- coordpy/_internal/experiments/__init__.py +4 -0
- coordpy/_internal/experiments/phase44_public_readiness.py +381 -0
- coordpy/_internal/product/__init__.py +19 -0
- coordpy/_internal/product/__main__.py +4 -0
- coordpy/_internal/product/ci_gate.py +279 -0
- coordpy/_internal/product/import_data.py +276 -0
- coordpy/_internal/product/profiles.py +254 -0
- coordpy/_internal/product/report.py +92 -0
- coordpy/_internal/product/runner.py +904 -0
- coordpy/_internal/tasks/__init__.py +1 -0
- coordpy/_internal/tasks/code_review.py +148 -0
- coordpy/_internal/tasks/collaborative_build.py +243 -0
- coordpy/_internal/tasks/collaborative_module.py +311 -0
- coordpy/_internal/tasks/compliance_review.py +1337 -0
- coordpy/_internal/tasks/consensus.py +93 -0
- coordpy/_internal/tasks/contested_incident.py +1993 -0
- coordpy/_internal/tasks/corpus_registry.py +250 -0
- coordpy/_internal/tasks/corpus_runtime_recipes.py +323 -0
- coordpy/_internal/tasks/data/_build_swe_lite_bank.py +1975 -0
- coordpy/_internal/tasks/data/swe_lite_style_bank.jsonl +57 -0
- coordpy/_internal/tasks/data/swe_real_shape_mini.jsonl +6 -0
- coordpy/_internal/tasks/distributed_summary.py +194 -0
- coordpy/_internal/tasks/drifting_consensus.py +88 -0
- coordpy/_internal/tasks/executable_snippets.py +542 -0
- coordpy/_internal/tasks/incident_triage.py +1538 -0
- coordpy/_internal/tasks/library_v2.py +724 -0
- coordpy/_internal/tasks/llm_consensus.py +93 -0
- coordpy/_internal/tasks/long_corpus.py +241 -0
- coordpy/_internal/tasks/needle_corpus.py +504 -0
- coordpy/_internal/tasks/nested_contested_incident.py +1287 -0
- coordpy/_internal/tasks/numeric_ledger.py +622 -0
- coordpy/_internal/tasks/protocol_codesign.py +620 -0
- coordpy/_internal/tasks/protocolkit_36.py +792 -0
- coordpy/_internal/tasks/python_corpus.py +745 -0
- coordpy/_internal/tasks/quant_strategy.py +226 -0
- coordpy/_internal/tasks/security_escalation.py +1430 -0
- coordpy/_internal/tasks/swe_bench_bridge.py +1951 -0
- coordpy/_internal/tasks/swe_loop_harness.py +594 -0
- coordpy/_internal/tasks/swe_patch_parser.py +873 -0
- coordpy/_internal/tasks/swe_raw_capture.py +534 -0
- coordpy/_internal/tasks/swe_sandbox.py +732 -0
- coordpy/_internal/tasks/swe_semantic_taxonomy.py +652 -0
- coordpy/_internal/tasks/task_scale_swe.py +1014 -0
- coordpy/_version.py +11 -0
- coordpy/agents.py +348 -0
- coordpy/api_layers.py +376 -0
- coordpy/capsule.py +1985 -0
- coordpy/capsule_decoder.py +610 -0
- coordpy/capsule_decoder_relational.py +466 -0
- coordpy/capsule_decoder_v2.py +1221 -0
- coordpy/capsule_policy.py +585 -0
- coordpy/capsule_policy_bundle.py +595 -0
- coordpy/capsule_runtime.py +1212 -0
- coordpy/config.py +134 -0
- coordpy/extensions/__init__.py +59 -0
- coordpy/extensions/examples/__init__.py +8 -0
- coordpy/extensions/examples/jsonl_report_sink.py +64 -0
- coordpy/extensions/registry.py +86 -0
- coordpy/extensions/report_sink.py +141 -0
- coordpy/extensions/sandbox.py +121 -0
- coordpy/extensions/taskbank.py +126 -0
- coordpy/integrated_synthesis.py +1224 -0
- coordpy/lifecycle_audit.py +658 -0
- coordpy/llm_backend.py +438 -0
- coordpy/provenance.py +157 -0
- coordpy/py.typed +0 -0
- coordpy/role_invariant_synthesis.py +1198 -0
- coordpy/run.py +131 -0
- coordpy/runtime.py +860 -0
- coordpy/synthetic_llm.py +271 -0
- coordpy/team_coord.py +32022 -0
- coordpy/team_policy.py +391 -0
- coordpy_ai-0.5.16.dist-info/METADATA +258 -0
- coordpy_ai-0.5.16.dist-info/RECORD +91 -0
- coordpy_ai-0.5.16.dist-info/WHEEL +5 -0
- coordpy_ai-0.5.16.dist-info/entry_points.txt +5 -0
- coordpy_ai-0.5.16.dist-info/licenses/LICENSE +21 -0
- coordpy_ai-0.5.16.dist-info/top_level.txt +1 -0
coordpy/__init__.py
ADDED
|
@@ -0,0 +1,1560 @@
|
|
|
1
|
+
"""coordpy: SDK and CLI for coordinating LLM agent teams.
|
|
2
|
+
|
|
3
|
+
Cross-agent context is modelled as typed, content-addressed
|
|
4
|
+
``ContextCapsule`` objects with byte budgets, declared parents, and
|
|
5
|
+
a fixed lifecycle. ``coordpy.run(RunSpec(...))`` produces a
|
|
6
|
+
``RunReport`` whose root is a sealed capsule DAG, plus a
|
|
7
|
+
``provenance.json`` manifest and a detached ``meta_manifest.json``
|
|
8
|
+
witness, all of which can be re-verified from the bytes on disk.
|
|
9
|
+
|
|
10
|
+
Stable public surface:
|
|
11
|
+
|
|
12
|
+
* Capsule primitives: ``ContextCapsule``, ``CapsuleKind``,
|
|
13
|
+
``CapsuleLifecycle``, ``CapsuleBudget``, ``CapsuleLedger``,
|
|
14
|
+
``CapsuleView``, ``CapsuleAdmissionError``,
|
|
15
|
+
``CapsuleLifecycleError``, ``render_view``,
|
|
16
|
+
``verify_chain_from_view_dict``, ``build_report_ledger``,
|
|
17
|
+
``CAPSULE_VIEW_SCHEMA``.
|
|
18
|
+
|
|
19
|
+
* Run model: ``RunSpec``, ``run``, ``SweepSpec``, ``run_sweep``,
|
|
20
|
+
``HeavyRunNotAcknowledged``, ``CoordPyConfig``.
|
|
21
|
+
|
|
22
|
+
* Submodules: ``profiles``, ``report``, ``ci_gate``,
|
|
23
|
+
``import_data``, ``extensions``.
|
|
24
|
+
|
|
25
|
+
* Provenance: ``PROVENANCE_SCHEMA``, ``build_manifest``.
|
|
26
|
+
|
|
27
|
+
* Versioning: ``__version__``, ``SDK_VERSION``,
|
|
28
|
+
``PRODUCT_REPORT_SCHEMA``, ``PRODUCT_REPORT_SCHEMA_V1``,
|
|
29
|
+
``CI_VERDICT_SCHEMA``, ``IMPORT_AUDIT_SCHEMA``.
|
|
30
|
+
|
|
31
|
+
Anything not re-exported here is internal or experimental and may
|
|
32
|
+
change without notice.
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
from __future__ import annotations
|
|
36
|
+
|
|
37
|
+
from coordpy._version import __version__
|
|
38
|
+
|
|
39
|
+
from .config import CoordPyConfig
|
|
40
|
+
from .provenance import PROVENANCE_SCHEMA, build_manifest
|
|
41
|
+
from .run import RunSpec, run
|
|
42
|
+
|
|
43
|
+
# Public alias for the stable report shape returned by ``run``.
|
|
44
|
+
RunReport = dict[str, object]
|
|
45
|
+
|
|
46
|
+
# Re-export the product modules under stable names. These are part of
|
|
47
|
+
# the public SDK contract.
|
|
48
|
+
from coordpy._internal.product import profiles, report, ci_gate, import_data
|
|
49
|
+
|
|
50
|
+
# Make ``from coordpy.profiles import X`` work as a stable submodule
|
|
51
|
+
# path (in addition to ``coordpy.profiles.X`` attribute access).
|
|
52
|
+
import sys as _sys
|
|
53
|
+
for _alias_name, _mod in (
|
|
54
|
+
("profiles", profiles),
|
|
55
|
+
("report", report),
|
|
56
|
+
("ci_gate", ci_gate),
|
|
57
|
+
("import_data", import_data),
|
|
58
|
+
):
|
|
59
|
+
_sys.modules.setdefault(__name__ + "." + _alias_name, _mod)
|
|
60
|
+
del _sys, _alias_name, _mod
|
|
61
|
+
|
|
62
|
+
# Extension system. Kept as a first-class re-export so
|
|
63
|
+
# ``from coordpy import extensions`` is the SDK path.
|
|
64
|
+
from . import extensions
|
|
65
|
+
|
|
66
|
+
# Unified runtime (Slice 2).
|
|
67
|
+
from .runtime import SweepSpec, run_sweep, HeavyRunNotAcknowledged
|
|
68
|
+
|
|
69
|
+
# SDK v3.6 — LLM backend abstraction. Strictly additive: when no
|
|
70
|
+
# backend is supplied, the runtime instantiates ``LLMClient``
|
|
71
|
+
# byte-for-byte unchanged. When a backend is supplied (e.g. an
|
|
72
|
+
# ``OpenAICompatibleBackend`` pointed at any OpenAI-compatible
|
|
73
|
+
# provider, or an ``MLXDistributedBackend`` whose ``base_url``
|
|
74
|
+
# points at an ``mlx_lm.server`` launched under ``mpirun`` across
|
|
75
|
+
# two Apple Silicon hosts), the inner-loop calls dispatch through
|
|
76
|
+
# the backend without any other change to the spine. The PROMPT /
|
|
77
|
+
# LLM_RESPONSE capsules' shape (SHA-256 + length + snippet) is
|
|
78
|
+
# preserved regardless of backend.
|
|
79
|
+
from .llm_backend import (
|
|
80
|
+
LLMBackend, OllamaBackend, OpenAICompatibleBackend,
|
|
81
|
+
MLXDistributedBackend, make_backend, backend_from_env,
|
|
82
|
+
backend_from_config,
|
|
83
|
+
)
|
|
84
|
+
|
|
85
|
+
# Capsule runtime (Slice 3 — SDK v3). The load-bearing abstraction
|
|
86
|
+
# around which the rest of the SDK is centred.
|
|
87
|
+
from .capsule import (
|
|
88
|
+
ContextCapsule, CapsuleKind, CapsuleLifecycle, CapsuleBudget,
|
|
89
|
+
CapsuleLedger, CapsuleView, CAPSULE_VIEW_SCHEMA, render_view,
|
|
90
|
+
verify_chain_from_view_dict,
|
|
91
|
+
CapsuleAdmissionError, CapsuleLifecycleError,
|
|
92
|
+
build_report_ledger,
|
|
93
|
+
# Adapters — make the SDK-v3 "everything is a capsule" claim
|
|
94
|
+
# operational for external callers who want to lift their own
|
|
95
|
+
# substrate objects into the capsule surface.
|
|
96
|
+
capsule_from_handle, capsule_from_handoff,
|
|
97
|
+
capsule_from_provenance, capsule_from_sweep_cell,
|
|
98
|
+
capsule_from_sweep_spec, capsule_from_profile,
|
|
99
|
+
capsule_from_readiness, capsule_from_artifact,
|
|
100
|
+
capsule_from_report,
|
|
101
|
+
# Phase-47 cohort subsumption — additive on top of SDK v3.
|
|
102
|
+
capsule_from_cohort, capsule_from_adaptive_sub_table,
|
|
103
|
+
# SDK v3.2 — intra-cell + detached-witness adapters.
|
|
104
|
+
capsule_from_patch_proposal, capsule_from_test_verdict,
|
|
105
|
+
capsule_from_meta_manifest,
|
|
106
|
+
# SDK v3.3 — sub-intra-cell parser-axis adapter.
|
|
107
|
+
capsule_from_parse_outcome, PARSE_OUTCOME_ORACLE,
|
|
108
|
+
# SDK v3.4 — sub-sub-intra-cell prompt + llm response adapters.
|
|
109
|
+
capsule_from_prompt, capsule_from_llm_response,
|
|
110
|
+
PROMPT_TEXT_CAP, LLM_RESPONSE_TEXT_CAP,
|
|
111
|
+
)
|
|
112
|
+
|
|
113
|
+
# Capsule-native runtime (SDK v3.1). The first execution-first
|
|
114
|
+
# capsule layer: capsules drive runtime, not just describe it.
|
|
115
|
+
from .capsule_runtime import (
|
|
116
|
+
CapsuleNativeRunContext, ContentAddressMismatch,
|
|
117
|
+
seal_and_write_artifact,
|
|
118
|
+
CONSTRUCTION_IN_FLIGHT, CONSTRUCTION_POST_HOC,
|
|
119
|
+
# SDK v3.2 — strong on-disk verification helpers.
|
|
120
|
+
verify_artifacts_on_disk, verify_meta_manifest_on_disk,
|
|
121
|
+
)
|
|
122
|
+
|
|
123
|
+
# SDK v3.3 — runtime-checkable lifecycle audit. Mechanically
|
|
124
|
+
# verifies the lifecycle correspondence (W3-32 / W3-32-extended /
|
|
125
|
+
# W3-39) on a finished run. Returns OK/BAD/EMPTY plus a list of
|
|
126
|
+
# violation counterexamples.
|
|
127
|
+
from .lifecycle_audit import (
|
|
128
|
+
CapsuleLifecycleAudit, LifecycleAuditReport,
|
|
129
|
+
audit_capsule_lifecycle, audit_capsule_lifecycle_from_view,
|
|
130
|
+
)
|
|
131
|
+
|
|
132
|
+
# Layered API — three-tier ergonomic surfaces over the same substrate
|
|
133
|
+
# (end-user / developer / researcher). Purely additive.
|
|
134
|
+
from .api_layers import (
|
|
135
|
+
CoordPySimpleAPI, CoordPyBuilderAPI, CoordPyAdvancedAPI, BuilderSpec,
|
|
136
|
+
)
|
|
137
|
+
|
|
138
|
+
# Stable lightweight agent-team surface. This is the product-facing
|
|
139
|
+
# "create a few agents and run them" path; it stays above the
|
|
140
|
+
# research-grade team ladder while still sealing a capsule trail.
|
|
141
|
+
from .agents import (
|
|
142
|
+
Agent, AgentTurn, TeamResult, AgentTeam, agent, create_team,
|
|
143
|
+
)
|
|
144
|
+
|
|
145
|
+
# Capsule admission policies (Phase 46 research milestone). The
|
|
146
|
+
# SDK contract is unchanged — `CapsuleLedger.admit_and_seal` is
|
|
147
|
+
# byte-for-byte the same — but external callers can now opt into
|
|
148
|
+
# policy-driven admission by wrapping a ledger in a
|
|
149
|
+
# `BudgetedAdmissionLedger`. This is *additive*; no Phase-N
|
|
150
|
+
# substrate test is affected.
|
|
151
|
+
from .capsule_policy import (
|
|
152
|
+
AdmissionPolicy, FIFOPolicy, KindPriorityPolicy,
|
|
153
|
+
SmallestFirstPolicy, LearnedAdmissionPolicy,
|
|
154
|
+
BudgetedAdmissionLedger, train_admission_policy,
|
|
155
|
+
featurise_capsule, feature_index,
|
|
156
|
+
)
|
|
157
|
+
|
|
158
|
+
# Phase-47 bundle-aware admission policies — additive extension
|
|
159
|
+
# for Conjecture P46-C1 (bundle-aware admission closes the noise
|
|
160
|
+
# ceiling).
|
|
161
|
+
from .capsule_policy_bundle import (
|
|
162
|
+
BundleAwarePolicy, CorroboratedAdmissionPolicy,
|
|
163
|
+
PluralityBundlePolicy, BundleLearnedPolicy,
|
|
164
|
+
train_bundle_policy, BundleStats,
|
|
165
|
+
featurise_capsule_with_bundle, bundle_feature_index,
|
|
166
|
+
)
|
|
167
|
+
|
|
168
|
+
# Phase-48 bundle-aware DECODING — additive extension for
|
|
169
|
+
# Conjecture P47-C1 (bundle-aware decoding breaks the 0.200
|
|
170
|
+
# structural ceiling that admission alone cannot).
|
|
171
|
+
from .capsule_decoder import (
|
|
172
|
+
BundleDecoder, PriorityDecoder, PluralityDecoder,
|
|
173
|
+
SourceCorroboratedPriorityDecoder, LearnedBundleDecoder,
|
|
174
|
+
train_learned_bundle_decoder, BUNDLE_DECODER_FEATURES,
|
|
175
|
+
evaluate_decoder, DecoderResult,
|
|
176
|
+
)
|
|
177
|
+
|
|
178
|
+
# Phase-49 stronger bundle-aware decoder + symmetric transfer —
|
|
179
|
+
# additive extension for Conjecture W3-C7 (paradigm-shift bar).
|
|
180
|
+
# DeepSetBundleDecoder crosses the 0.400 Gate-1 threshold
|
|
181
|
+
# (Claim W3-23); MultitaskBundleDecoder achieves 0.350 / 0.350
|
|
182
|
+
# on (incident, security) under the shared-head reading
|
|
183
|
+
# (Claim W3-22).
|
|
184
|
+
from .capsule_decoder_v2 import (
|
|
185
|
+
BUNDLE_DECODER_FEATURES_V2, INTERACTION_FEATURES,
|
|
186
|
+
DEEPSET_PHI_FEATURES,
|
|
187
|
+
LearnedBundleDecoderV2, train_learned_bundle_decoder_v2,
|
|
188
|
+
InteractionBundleDecoder, train_interaction_bundle_decoder,
|
|
189
|
+
MLPBundleDecoder, train_mlp_bundle_decoder,
|
|
190
|
+
DeepSetBundleDecoder, train_deep_set_bundle_decoder,
|
|
191
|
+
MultitaskBundleDecoder, train_multitask_bundle_decoder,
|
|
192
|
+
)
|
|
193
|
+
|
|
194
|
+
# SDK v3.5 — capsule-native multi-agent team coordination *research
|
|
195
|
+
# slice*. Strictly additive on v3.4: the run-boundary product
|
|
196
|
+
# runtime contract is unchanged. The new surface lives in
|
|
197
|
+
# ``coordpy.team_coord`` and ``team_policy`` and emits
|
|
198
|
+
# three new closed-vocabulary capsule kinds (TEAM_HANDOFF,
|
|
199
|
+
# ROLE_VIEW, TEAM_DECISION). The team-level lifecycle audit
|
|
200
|
+
# (``audit_team_lifecycle``) mechanically verifies invariants
|
|
201
|
+
# T-1..T-7 (Theorem W4-1). See
|
|
202
|
+
# ``docs/RESULTS_COORDPY_TEAM_COORD.md`` and
|
|
203
|
+
# ``docs/CAPSULE_TEAM_FORMALISM.md``.
|
|
204
|
+
from .team_coord import (
|
|
205
|
+
RoleBudget, DEFAULT_ROLE_BUDGETS,
|
|
206
|
+
capsule_team_handoff, capsule_role_view, capsule_team_decision,
|
|
207
|
+
AdmissionPolicy as TeamAdmissionPolicy,
|
|
208
|
+
AdmissionDecision as TeamAdmissionDecision,
|
|
209
|
+
FifoAdmissionPolicy as TeamFifoAdmissionPolicy,
|
|
210
|
+
ClaimPriorityAdmissionPolicy as TeamClaimPriorityAdmissionPolicy,
|
|
211
|
+
CoverageGuidedAdmissionPolicy as TeamCoverageGuidedAdmissionPolicy,
|
|
212
|
+
CohortCoherenceAdmissionPolicy as TeamCohortCoherenceAdmissionPolicy,
|
|
213
|
+
CrossRoleCorroborationAdmissionPolicy
|
|
214
|
+
as TeamCrossRoleCorroborationAdmissionPolicy,
|
|
215
|
+
MultiServiceCorroborationAdmissionPolicy
|
|
216
|
+
as TeamMultiServiceCorroborationAdmissionPolicy,
|
|
217
|
+
TeamCoordinator, audit_team_lifecycle,
|
|
218
|
+
TeamLifecycleAuditReport, T_INVARIANTS,
|
|
219
|
+
# SDK v3.11 — bundle-aware team decoder (W10 family).
|
|
220
|
+
BundleAwareTeamDecoder, decode_admitted_role_view,
|
|
221
|
+
CAUSAL_CLAIM_KINDS_PER_ROOT_CAUSE,
|
|
222
|
+
# SDK v3.12 — multi-round bundle-aware team decoder (W11 family).
|
|
223
|
+
MultiRoundBundleDecoder, collect_admitted_handoffs,
|
|
224
|
+
# SDK v3.13 — real-LLM-robust multi-round bundle decoder (W12 family).
|
|
225
|
+
RobustMultiRoundBundleDecoder, CLAIM_KIND_SYNONYMS,
|
|
226
|
+
normalize_claim_kind, normalize_payload, normalize_handoff,
|
|
227
|
+
# SDK v3.14 — layered open-world normaliser + decoder (W13 family).
|
|
228
|
+
HeuristicAbstractionRule, LayeredClaimNormalizer,
|
|
229
|
+
LayeredRobustMultiRoundBundleDecoder,
|
|
230
|
+
LAYERED_NORMALIZER_ABSTAIN,
|
|
231
|
+
# SDK v3.15 — structured producer protocol (W14 family).
|
|
232
|
+
PRODUCER_PROMPT_NAIVE, PRODUCER_PROMPT_STRUCTURED,
|
|
233
|
+
ALL_PRODUCER_PROMPT_MODES,
|
|
234
|
+
RoleExtractionSchema, ProducerPromptResult,
|
|
235
|
+
StructuredProducerProtocol,
|
|
236
|
+
INCIDENT_TRIAGE_OBSERVATION_KINDS,
|
|
237
|
+
incident_triage_role_schemas,
|
|
238
|
+
# SDK v3.18 — magnitude-hinted producer protocol (W17 family).
|
|
239
|
+
PRODUCER_PROMPT_MAGNITUDE_HINTED,
|
|
240
|
+
OperationalThreshold,
|
|
241
|
+
INCIDENT_TRIAGE_DEFAULT_MAGNITUDE_THRESHOLDS,
|
|
242
|
+
incident_triage_magnitude_thresholds,
|
|
243
|
+
# SDK v3.16 — attention-aware capsule context packing (W15 family).
|
|
244
|
+
W15_DEFAULT_TIER_WEIGHT, W15_DEFAULT_CCK_WEIGHT,
|
|
245
|
+
W15_DEFAULT_CORROBORATION_WEIGHT, W15_DEFAULT_MAGNITUDE_WEIGHT,
|
|
246
|
+
W15_DEFAULT_ROUND_WEIGHT,
|
|
247
|
+
W15PackedHandoff, W15PackResult,
|
|
248
|
+
FifoContextPacker, CapsuleContextPacker,
|
|
249
|
+
AttentionAwareBundleDecoder,
|
|
250
|
+
# SDK v3.19 — bundle-relational compatibility disambiguator (W18 family).
|
|
251
|
+
W18CompatibilityResult,
|
|
252
|
+
RelationalCompatibilityDisambiguator,
|
|
253
|
+
# SDK v3.20 — bundle-contradiction-aware trust-weighted disambiguator
|
|
254
|
+
# (W19 family).
|
|
255
|
+
BundleContradictionDisambiguator, W19TrustResult,
|
|
256
|
+
W19_ALL_BRANCHES, W19_BRANCH_PRIMARY_TRUSTED, W19_BRANCH_INVERSION,
|
|
257
|
+
W19_BRANCH_CONFOUND_RESOLVED, W19_BRANCH_ABSTAINED_NO_SIGNAL,
|
|
258
|
+
W19_BRANCH_ABSTAINED_SYMMETRIC, W19_BRANCH_DISABLED,
|
|
259
|
+
# SDK v3.21 — outside-witness acquisition disambiguator (W20 family).
|
|
260
|
+
OutsideWitnessOracle, OutsideQuery, OutsideVerdict,
|
|
261
|
+
ServiceGraphOracle, CompromisedServiceGraphOracle,
|
|
262
|
+
AbstainingOracle, LLMAdjudicatorOracle,
|
|
263
|
+
build_incident_triage_service_graph,
|
|
264
|
+
OutsideWitnessAcquisitionDisambiguator, W20OutsideResult,
|
|
265
|
+
W20_ALL_BRANCHES, W20_BRANCH_OUTSIDE_RESOLVED,
|
|
266
|
+
W20_BRANCH_OUTSIDE_TRUSTED_ASYMMETRIC,
|
|
267
|
+
W20_BRANCH_OUTSIDE_ABSTAINED, W20_BRANCH_NO_TRIGGER,
|
|
268
|
+
W20_BRANCH_DISABLED, W20_DEFAULT_TRIGGER_BRANCHES,
|
|
269
|
+
# SDK v3.22 — trust-weighted multi-oracle adjudicator (W21 family).
|
|
270
|
+
OracleRegistration, ChangeHistoryOracle, OnCallNotesOracle,
|
|
271
|
+
SingletonAsymmetricOracle, DisagreeingHonestOracle,
|
|
272
|
+
W21OracleProbe, W21MultiOracleResult,
|
|
273
|
+
TrustWeightedMultiOracleDisambiguator,
|
|
274
|
+
W21_ALL_BRANCHES, W21_BRANCH_QUORUM_RESOLVED,
|
|
275
|
+
W21_BRANCH_NO_QUORUM, W21_BRANCH_SYMMETRIC_QUORUM,
|
|
276
|
+
W21_BRANCH_NO_ORACLES, W21_BRANCH_NO_TRIGGER,
|
|
277
|
+
W21_BRANCH_DISABLED, W21_DEFAULT_TRIGGER_BRANCHES,
|
|
278
|
+
# SDK v3.23 — capsule + audited latent-state-sharing hybrid (W22 family).
|
|
279
|
+
SchemaCapsule, build_incident_triage_schema_capsule,
|
|
280
|
+
LatentDigestEnvelope, LatentVerificationOutcome,
|
|
281
|
+
verify_latent_digest, SharedReadCache, CachingOracleAdapter,
|
|
282
|
+
EnvelopeTamperer, W22LatentResult, LatentDigestDisambiguator,
|
|
283
|
+
W22_ALL_BRANCHES, W22_BRANCH_LATENT_RESOLVED,
|
|
284
|
+
W22_BRANCH_LATENT_REJECTED, W22_BRANCH_NO_TRIGGER,
|
|
285
|
+
W22_BRANCH_NO_SCHEMA, W22_BRANCH_DISABLED,
|
|
286
|
+
W22_BRANCH_ABSTAIN_PASSTHROUGH,
|
|
287
|
+
W22_DEFAULT_TRIGGER_BRANCHES,
|
|
288
|
+
W22_LATENT_ENVELOPE_SCHEMA_VERSION,
|
|
289
|
+
# SDK v3.26 — shared-fanout dense-control + cross-agent state reuse (W25).
|
|
290
|
+
FanoutEnvelope, SharedFanoutRegistry, SharedFanoutDisambiguator,
|
|
291
|
+
verify_fanout, W25FanoutResult,
|
|
292
|
+
W25_FANOUT_SCHEMA_VERSION,
|
|
293
|
+
W25_ALL_BRANCHES, W25_BRANCH_FANOUT_PRODUCER_EMITTED,
|
|
294
|
+
W25_BRANCH_FANOUT_CONSUMER_RESOLVED,
|
|
295
|
+
W25_BRANCH_FANOUT_CONSUMER_REJECTED,
|
|
296
|
+
W25_BRANCH_NO_TRIGGER, W25_BRANCH_DISABLED,
|
|
297
|
+
W25_DEFAULT_TRIGGER_BRANCHES,
|
|
298
|
+
# SDK v3.27 — chain-persisted dense-control fanout +
|
|
299
|
+
# per-consumer projections (W26 family).
|
|
300
|
+
ChainAnchorEnvelope, ChainAdvanceEnvelope,
|
|
301
|
+
ChainPersistedFanoutRegistry,
|
|
302
|
+
ChainPersistedFanoutDisambiguator,
|
|
303
|
+
ProjectionSlot, W26ChainResult,
|
|
304
|
+
verify_chain_anchor, verify_chain_advance,
|
|
305
|
+
verify_projection_subscription,
|
|
306
|
+
W26_CHAIN_ANCHOR_SCHEMA_VERSION,
|
|
307
|
+
W26_CHAIN_ADVANCE_SCHEMA_VERSION,
|
|
308
|
+
W26_ALL_BRANCHES,
|
|
309
|
+
W26_BRANCH_CHAIN_ANCHORED, W26_BRANCH_CHAIN_ADVANCED,
|
|
310
|
+
W26_BRANCH_CHAIN_REJECTED, W26_BRANCH_CHAIN_RE_ANCHORED,
|
|
311
|
+
W26_BRANCH_CHAIN_PROJECTION_RESOLVED,
|
|
312
|
+
W26_BRANCH_CHAIN_PROJECTION_REJECTED,
|
|
313
|
+
W26_BRANCH_NO_TRIGGER, W26_BRANCH_DISABLED,
|
|
314
|
+
W26_DEFAULT_TRIGGER_BRANCHES,
|
|
315
|
+
# SDK v3.28 — multi-chain salience-keyed dense-control fanout +
|
|
316
|
+
# per-signature scoping (W27 family).
|
|
317
|
+
SalienceSignatureEnvelope, ChainPivotEnvelope,
|
|
318
|
+
MultiChainPersistedFanoutRegistry,
|
|
319
|
+
MultiChainPersistedFanoutDisambiguator,
|
|
320
|
+
MultiChainPersistedFanoutOrchestrator,
|
|
321
|
+
SharedMultiChainPool,
|
|
322
|
+
W27MultiChainResult, W27OrchestratorResult,
|
|
323
|
+
compute_input_signature_cid,
|
|
324
|
+
verify_salience_signature, verify_chain_pivot,
|
|
325
|
+
W27_SALIENCE_SIGNATURE_SCHEMA_VERSION,
|
|
326
|
+
W27_CHAIN_PIVOT_SCHEMA_VERSION,
|
|
327
|
+
W27_ALL_BRANCHES,
|
|
328
|
+
W27_BRANCH_PIVOTED, W27_BRANCH_ANCHORED_NEW,
|
|
329
|
+
W27_BRANCH_POOL_EXHAUSTED, W27_BRANCH_PIVOT_REJECTED,
|
|
330
|
+
W27_BRANCH_FALLBACK_W26, W27_BRANCH_NO_TRIGGER,
|
|
331
|
+
W27_BRANCH_DISABLED,
|
|
332
|
+
W27_DEFAULT_TRIGGER_BRANCHES,
|
|
333
|
+
# SDK v3.29 — ensemble-verified cross-model multi-chain pivot
|
|
334
|
+
# ratification (W28 family). EXPERIMENTAL — see __experimental__.
|
|
335
|
+
ProbeVote, EnsembleProbe, EnsembleProbeRegistration,
|
|
336
|
+
DeterministicSignatureProbe, OracleConsultationProbe,
|
|
337
|
+
LLMSignatureProbe,
|
|
338
|
+
EnsemblePivotRatificationEnvelope,
|
|
339
|
+
EnsembleRatificationRegistry,
|
|
340
|
+
EnsembleVerifiedMultiChainOrchestrator,
|
|
341
|
+
W28EnsembleResult,
|
|
342
|
+
verify_ensemble_pivot_ratification,
|
|
343
|
+
build_default_ensemble_registry,
|
|
344
|
+
build_two_probe_oracle_ensemble_registry,
|
|
345
|
+
build_cross_host_llm_ensemble_registry,
|
|
346
|
+
W28_RATIFICATION_SCHEMA_VERSION,
|
|
347
|
+
W28_ALL_BRANCHES,
|
|
348
|
+
W28_BRANCH_RATIFIED, W28_BRANCH_RATIFIED_PASSTHROUGH,
|
|
349
|
+
W28_BRANCH_QUORUM_BELOW_THRESHOLD, W28_BRANCH_PROBE_REJECTED,
|
|
350
|
+
W28_BRANCH_NO_RATIFY_NEEDED, W28_BRANCH_FALLBACK_W27,
|
|
351
|
+
W28_BRANCH_NO_TRIGGER, W28_BRANCH_DISABLED,
|
|
352
|
+
W28_DEFAULT_TRIGGER_BRANCHES,
|
|
353
|
+
# SDK v3.30 — geometry-partitioned product-manifold dense control +
|
|
354
|
+
# audited subspace-basis payload + factoradic routing index +
|
|
355
|
+
# causal-validity gate + cross-host variance witness (W29 family).
|
|
356
|
+
# EXPERIMENTAL — see __experimental__.
|
|
357
|
+
SubspaceBasis, verify_subspace_basis,
|
|
358
|
+
compute_structural_subspace_basis,
|
|
359
|
+
encode_permutation_to_factoradic,
|
|
360
|
+
decode_factoradic_to_permutation,
|
|
361
|
+
CrossHostVarianceWitness,
|
|
362
|
+
GeometryPartitionedRatificationEnvelope,
|
|
363
|
+
PartitionRegistration,
|
|
364
|
+
GeometryPartitionRegistry,
|
|
365
|
+
W29PartitionResult,
|
|
366
|
+
GeometryPartitionedOrchestrator,
|
|
367
|
+
classify_partition_id_for_cell,
|
|
368
|
+
verify_geometry_partition_ratification,
|
|
369
|
+
build_trivial_partition_registry,
|
|
370
|
+
build_three_partition_registry,
|
|
371
|
+
W29_PARTITION_SCHEMA_VERSION,
|
|
372
|
+
W29_PARTITION_LINEAR, W29_PARTITION_HIERARCHICAL,
|
|
373
|
+
W29_PARTITION_CYCLIC,
|
|
374
|
+
W29_REGISTERED_PARTITION_IDS, W29_PARTITION_LABEL,
|
|
375
|
+
W29_DEFAULT_ORTHOGONALITY_TOL,
|
|
376
|
+
W29_BRANCH_PARTITION_RESOLVED,
|
|
377
|
+
W29_BRANCH_TRIVIAL_PARTITION_PASSTHROUGH,
|
|
378
|
+
W29_BRANCH_PARTITION_REJECTED,
|
|
379
|
+
W29_BRANCH_PARTITION_BELOW_THRESHOLD,
|
|
380
|
+
W29_BRANCH_CROSS_HOST_VARIANCE_WITNESSED,
|
|
381
|
+
W29_BRANCH_NO_PARTITION_NEEDED,
|
|
382
|
+
W29_BRANCH_FALLBACK_W28,
|
|
383
|
+
W29_BRANCH_NO_TRIGGER, W29_BRANCH_DISABLED,
|
|
384
|
+
W29_ALL_BRANCHES,
|
|
385
|
+
W29_DEFAULT_TRIGGER_BRANCHES,
|
|
386
|
+
# SDK v3.31 — calibrated geometry-aware dense control + multi-stride
|
|
387
|
+
# basis history + per-partition calibration prior + cross-host
|
|
388
|
+
# disagreement-routing + ancestor-chain causal binding (W30 family).
|
|
389
|
+
# EXPERIMENTAL — see __experimental__.
|
|
390
|
+
BasisHistory, AncestorChain, PartitionCalibrationVector,
|
|
391
|
+
CalibratedGeometryRatificationEnvelope,
|
|
392
|
+
CalibratedGeometryRegistry,
|
|
393
|
+
W30CalibratedResult,
|
|
394
|
+
CalibratedGeometryOrchestrator,
|
|
395
|
+
verify_calibrated_geometry_ratification,
|
|
396
|
+
update_partition_calibration_running_mean,
|
|
397
|
+
build_trivial_calibrated_registry,
|
|
398
|
+
build_calibrated_registry,
|
|
399
|
+
W30_CALIBRATED_SCHEMA_VERSION,
|
|
400
|
+
W30_DEFAULT_CALIBRATION_PRIOR_THRESHOLD,
|
|
401
|
+
W30_BRANCH_CALIBRATED_RESOLVED,
|
|
402
|
+
W30_BRANCH_TRIVIAL_CALIBRATION_PASSTHROUGH,
|
|
403
|
+
W30_BRANCH_CALIBRATED_REJECTED,
|
|
404
|
+
W30_BRANCH_DISAGREEMENT_ROUTED,
|
|
405
|
+
W30_BRANCH_CALIBRATION_REROUTED,
|
|
406
|
+
W30_BRANCH_NO_CALIBRATION_NEEDED,
|
|
407
|
+
W30_BRANCH_FALLBACK_W29,
|
|
408
|
+
W30_BRANCH_NO_TRIGGER,
|
|
409
|
+
W30_BRANCH_DISABLED,
|
|
410
|
+
W30_ALL_BRANCHES,
|
|
411
|
+
# SDK v3.32 — online self-calibrated geometry-aware dense control +
|
|
412
|
+
# sealed prior trajectory + adaptive threshold + W31 manifest CID
|
|
413
|
+
# (W31 family). EXPERIMENTAL — see __experimental__.
|
|
414
|
+
PriorTrajectoryEntry,
|
|
415
|
+
OnlineCalibratedRatificationEnvelope,
|
|
416
|
+
OnlineCalibratedRegistry,
|
|
417
|
+
W31OnlineResult,
|
|
418
|
+
OnlineCalibratedOrchestrator,
|
|
419
|
+
verify_online_calibrated_ratification,
|
|
420
|
+
derive_per_cell_agreement_signal,
|
|
421
|
+
compute_adaptive_threshold,
|
|
422
|
+
build_trivial_online_registry,
|
|
423
|
+
build_online_calibrated_registry,
|
|
424
|
+
W31_ONLINE_SCHEMA_VERSION,
|
|
425
|
+
W31_DEFAULT_THRESHOLD_MIN,
|
|
426
|
+
W31_DEFAULT_THRESHOLD_MAX,
|
|
427
|
+
W31_DEFAULT_TRAJECTORY_WINDOW,
|
|
428
|
+
W31_BRANCH_ONLINE_RESOLVED,
|
|
429
|
+
W31_BRANCH_TRIVIAL_ONLINE_PASSTHROUGH,
|
|
430
|
+
W31_BRANCH_ONLINE_REJECTED,
|
|
431
|
+
W31_BRANCH_ONLINE_DISABLED,
|
|
432
|
+
W31_BRANCH_ONLINE_NO_TRIGGER,
|
|
433
|
+
W31_ALL_BRANCHES,
|
|
434
|
+
# SDK v3.33 — long-window convergent online geometry-aware
|
|
435
|
+
# dense control + EWMA prior accumulator + Page CUSUM
|
|
436
|
+
# change-point detector + gold-correlated disagreement-routing
|
|
437
|
+
# + W32 manifest-v2 CID (W32 family). EXPERIMENTAL — see
|
|
438
|
+
# __experimental__.
|
|
439
|
+
GoldCorrelationMap, build_gold_correlation_map,
|
|
440
|
+
ConvergenceStateEntry,
|
|
441
|
+
LongWindowConvergentRatificationEnvelope,
|
|
442
|
+
LongWindowConvergentRegistry,
|
|
443
|
+
W32LongWindowResult,
|
|
444
|
+
LongWindowConvergentOrchestrator,
|
|
445
|
+
verify_long_window_convergent_ratification,
|
|
446
|
+
update_ewma_prior, update_cusum_two_sided, detect_change_point,
|
|
447
|
+
build_trivial_long_window_registry,
|
|
448
|
+
build_long_window_convergent_registry,
|
|
449
|
+
W32_LONG_WINDOW_SCHEMA_VERSION,
|
|
450
|
+
W32_DEFAULT_EWMA_ALPHA,
|
|
451
|
+
W32_DEFAULT_CUSUM_THRESHOLD,
|
|
452
|
+
W32_DEFAULT_CUSUM_K,
|
|
453
|
+
W32_DEFAULT_CUSUM_MAX,
|
|
454
|
+
W32_DEFAULT_LONG_WINDOW,
|
|
455
|
+
W32_DEFAULT_GOLD_CORRELATION_MIN,
|
|
456
|
+
W32_BRANCH_LONG_WINDOW_RESOLVED,
|
|
457
|
+
W32_BRANCH_TRIVIAL_LONG_WINDOW_PASSTHROUGH,
|
|
458
|
+
W32_BRANCH_LONG_WINDOW_REJECTED,
|
|
459
|
+
W32_BRANCH_LONG_WINDOW_DISABLED,
|
|
460
|
+
W32_BRANCH_LONG_WINDOW_NO_TRIGGER,
|
|
461
|
+
W32_BRANCH_GOLD_CORRELATED_REROUTED,
|
|
462
|
+
W32_BRANCH_CHANGE_POINT_RESET,
|
|
463
|
+
W32_ALL_BRANCHES,
|
|
464
|
+
# SDK v3.34 — Trust-EWMA-tracked multi-oracle adjudication (W33).
|
|
465
|
+
# EXPERIMENTAL — see __experimental__.
|
|
466
|
+
TrustTrajectoryEntry,
|
|
467
|
+
TrustEWMARatificationEnvelope,
|
|
468
|
+
TrustEWMARegistry,
|
|
469
|
+
W33TrustEWMAResult,
|
|
470
|
+
TrustEWMATrackedMultiOracleOrchestrator,
|
|
471
|
+
verify_trust_ewma_ratification,
|
|
472
|
+
derive_per_oracle_agreement_signal,
|
|
473
|
+
build_trivial_trust_ewma_registry,
|
|
474
|
+
build_trust_ewma_registry,
|
|
475
|
+
W33_TRUST_EWMA_SCHEMA_VERSION,
|
|
476
|
+
W33_DEFAULT_TRUST_THRESHOLD,
|
|
477
|
+
W33_DEFAULT_TRUST_TRAJECTORY_WINDOW,
|
|
478
|
+
W33_DEFAULT_EWMA_ALPHA,
|
|
479
|
+
W33_BRANCH_TRUST_EWMA_RESOLVED,
|
|
480
|
+
W33_BRANCH_TRIVIAL_TRUST_EWMA_PASSTHROUGH,
|
|
481
|
+
W33_BRANCH_TRUST_EWMA_REJECTED,
|
|
482
|
+
W33_BRANCH_TRUST_EWMA_DISABLED,
|
|
483
|
+
W33_BRANCH_TRUST_EWMA_NO_TRIGGER,
|
|
484
|
+
W33_BRANCH_TRUST_EWMA_DETRUSTED_ABSTAIN,
|
|
485
|
+
W33_BRANCH_TRUST_EWMA_DETRUSTED_REROUTE,
|
|
486
|
+
W33_ALL_BRANCHES,
|
|
487
|
+
# SDK v3.35 — Live-aware multi-anchor adjudication + native-latent
|
|
488
|
+
# audited response-feature proxy + W34 manifest-v4 CID (W34).
|
|
489
|
+
# EXPERIMENTAL — see __experimental__.
|
|
490
|
+
LiveOracleAttestation,
|
|
491
|
+
LiveAwareMultiAnchorRatificationEnvelope,
|
|
492
|
+
LiveAwareMultiAnchorRegistry,
|
|
493
|
+
HostRegistration,
|
|
494
|
+
W34LiveAwareResult,
|
|
495
|
+
LiveAwareMultiAnchorOrchestrator,
|
|
496
|
+
verify_live_aware_multi_anchor_ratification,
|
|
497
|
+
derive_multi_anchor_consensus_reference,
|
|
498
|
+
compute_response_feature_signature,
|
|
499
|
+
apply_host_decay,
|
|
500
|
+
build_trivial_live_aware_registry,
|
|
501
|
+
build_live_aware_registry,
|
|
502
|
+
W34_LIVE_AWARE_SCHEMA_VERSION,
|
|
503
|
+
W34_DEFAULT_ANCHOR_QUORUM_MIN,
|
|
504
|
+
W34_DEFAULT_HOST_DECAY_FACTOR,
|
|
505
|
+
W34_DEFAULT_LIVE_ATTESTATION_TIMEOUT_MS_BUCKET,
|
|
506
|
+
W34_BRANCH_LIVE_AWARE_RESOLVED,
|
|
507
|
+
W34_BRANCH_TRIVIAL_MULTI_ANCHOR_PASSTHROUGH,
|
|
508
|
+
W34_BRANCH_LIVE_AWARE_REJECTED,
|
|
509
|
+
W34_BRANCH_LIVE_AWARE_DISABLED,
|
|
510
|
+
W34_BRANCH_LIVE_AWARE_NO_TRIGGER,
|
|
511
|
+
W34_BRANCH_MULTI_ANCHOR_CONSENSUS,
|
|
512
|
+
W34_BRANCH_MULTI_ANCHOR_NO_CONSENSUS,
|
|
513
|
+
W34_BRANCH_HOST_DECAY_FIRED,
|
|
514
|
+
W34_ALL_BRANCHES,
|
|
515
|
+
# SDK v3.36 — Trust-subspace dense-control proxy + basis-history
|
|
516
|
+
# projection + manifest-v5 CID (W35). EXPERIMENTAL — see
|
|
517
|
+
# __experimental__.
|
|
518
|
+
TrustSubspaceBasisEntry,
|
|
519
|
+
TrustSubspaceDenseRatificationEnvelope,
|
|
520
|
+
TrustSubspaceDenseRegistry,
|
|
521
|
+
W35TrustSubspaceResult,
|
|
522
|
+
TrustSubspaceDenseControlOrchestrator,
|
|
523
|
+
verify_trust_subspace_dense_ratification,
|
|
524
|
+
select_trust_subspace_projection,
|
|
525
|
+
build_trivial_trust_subspace_registry,
|
|
526
|
+
build_trust_subspace_dense_registry,
|
|
527
|
+
W35_TRUST_SUBSPACE_SCHEMA_VERSION,
|
|
528
|
+
W35_DEFAULT_BASIS_EWMA_ALPHA,
|
|
529
|
+
W35_DEFAULT_PROJECTION_THRESHOLD,
|
|
530
|
+
W35_DEFAULT_PROJECTION_MARGIN_MIN,
|
|
531
|
+
W35_DEFAULT_BASIS_HISTORY_WINDOW,
|
|
532
|
+
W35_DEFAULT_MIN_BASIS_OBSERVATIONS,
|
|
533
|
+
W35_BRANCH_TRUST_SUBSPACE_RESOLVED,
|
|
534
|
+
W35_BRANCH_TRIVIAL_TRUST_SUBSPACE_PASSTHROUGH,
|
|
535
|
+
W35_BRANCH_TRUST_SUBSPACE_REJECTED,
|
|
536
|
+
W35_BRANCH_TRUST_SUBSPACE_DISABLED,
|
|
537
|
+
W35_BRANCH_TRUST_SUBSPACE_NO_TRIGGER,
|
|
538
|
+
W35_BRANCH_BASIS_HISTORY_REROUTED,
|
|
539
|
+
W35_BRANCH_BASIS_HISTORY_UNSAFE,
|
|
540
|
+
W35_BRANCH_BASIS_HISTORY_ABSTAINED,
|
|
541
|
+
W35_ALL_BRANCHES,
|
|
542
|
+
# SDK v3.37 — host-diverse trust-subspace dense-control guard +
|
|
543
|
+
# manifest-v6 CID (W36). EXPERIMENTAL — see __experimental__.
|
|
544
|
+
HostDiverseBasisEntry,
|
|
545
|
+
HostDiverseRatificationEnvelope,
|
|
546
|
+
HostDiverseRegistry,
|
|
547
|
+
W36HostDiverseResult,
|
|
548
|
+
HostDiverseTrustSubspaceOrchestrator,
|
|
549
|
+
verify_host_diverse_ratification,
|
|
550
|
+
select_host_diverse_projection,
|
|
551
|
+
build_trivial_host_diverse_registry,
|
|
552
|
+
build_host_diverse_registry,
|
|
553
|
+
W36_HOST_DIVERSE_SCHEMA_VERSION,
|
|
554
|
+
W36_DEFAULT_MIN_DISTINCT_HOSTS,
|
|
555
|
+
W36_DEFAULT_HOST_DIVERSITY_THRESHOLD,
|
|
556
|
+
W36_DEFAULT_HOST_DIVERSITY_MARGIN_MIN,
|
|
557
|
+
W36_BRANCH_HOST_DIVERSE_RESOLVED,
|
|
558
|
+
W36_BRANCH_TRIVIAL_HOST_DIVERSE_PASSTHROUGH,
|
|
559
|
+
W36_BRANCH_HOST_DIVERSE_REJECTED,
|
|
560
|
+
W36_BRANCH_HOST_DIVERSE_DISABLED,
|
|
561
|
+
W36_BRANCH_HOST_DIVERSE_NO_TRIGGER,
|
|
562
|
+
W36_BRANCH_HOST_DIVERSE_REROUTED,
|
|
563
|
+
W36_BRANCH_HOST_DIVERSE_UNSAFE,
|
|
564
|
+
W36_BRANCH_HOST_DIVERSE_ABSTAINED,
|
|
565
|
+
W36_ALL_BRANCHES,
|
|
566
|
+
# SDK v3.38 — anchor-cross-host basis-trajectory ratification +
|
|
567
|
+
# manifest-v7 CID (W37). EXPERIMENTAL — see __experimental__.
|
|
568
|
+
CrossHostBasisTrajectoryEntry,
|
|
569
|
+
CrossHostBasisTrajectoryRatificationEnvelope,
|
|
570
|
+
CrossHostBasisTrajectoryRegistry,
|
|
571
|
+
W37CrossHostTrajectoryResult,
|
|
572
|
+
CrossHostBasisTrajectoryOrchestrator,
|
|
573
|
+
verify_cross_host_trajectory_ratification,
|
|
574
|
+
select_cross_host_trajectory_projection,
|
|
575
|
+
build_trivial_cross_host_trajectory_registry,
|
|
576
|
+
build_cross_host_trajectory_registry,
|
|
577
|
+
W37_CROSS_HOST_TRAJECTORY_SCHEMA_VERSION,
|
|
578
|
+
W37_DEFAULT_TRAJECTORY_EWMA_ALPHA,
|
|
579
|
+
W37_DEFAULT_TRAJECTORY_THRESHOLD,
|
|
580
|
+
W37_DEFAULT_TRAJECTORY_MARGIN_MIN,
|
|
581
|
+
W37_DEFAULT_MIN_ANCHORED_OBSERVATIONS,
|
|
582
|
+
W37_DEFAULT_MIN_TRAJECTORY_ANCHORED_HOSTS,
|
|
583
|
+
W37_DEFAULT_TRAJECTORY_HISTORY_WINDOW,
|
|
584
|
+
W37_BRANCH_TRAJECTORY_RESOLVED,
|
|
585
|
+
W37_BRANCH_TRIVIAL_TRAJECTORY_PASSTHROUGH,
|
|
586
|
+
W37_BRANCH_TRAJECTORY_REJECTED,
|
|
587
|
+
W37_BRANCH_TRAJECTORY_DISABLED,
|
|
588
|
+
W37_BRANCH_TRAJECTORY_NO_TRIGGER,
|
|
589
|
+
W37_BRANCH_TRAJECTORY_REROUTED,
|
|
590
|
+
W37_BRANCH_TRAJECTORY_UNSAFE,
|
|
591
|
+
W37_BRANCH_TRAJECTORY_ABSTAINED,
|
|
592
|
+
W37_BRANCH_TRAJECTORY_NO_HISTORY,
|
|
593
|
+
W37_BRANCH_TRAJECTORY_DISAGREEMENT,
|
|
594
|
+
W37_BRANCH_TRAJECTORY_POISONED,
|
|
595
|
+
W37_ALL_BRANCHES,
|
|
596
|
+
# SDK v3.39 — disjoint cross-source consensus-reference trajectory-
|
|
597
|
+
# divergence adjudication + manifest-v8 CID (W38). EXPERIMENTAL —
|
|
598
|
+
# see __experimental__.
|
|
599
|
+
ConsensusReferenceProbe,
|
|
600
|
+
DisjointConsensusReferenceRatificationEnvelope,
|
|
601
|
+
DisjointConsensusReferenceRegistry,
|
|
602
|
+
W38DisjointConsensusReferenceResult,
|
|
603
|
+
DisjointConsensusReferenceOrchestrator,
|
|
604
|
+
DisjointTopologyError,
|
|
605
|
+
verify_disjoint_consensus_reference_ratification,
|
|
606
|
+
select_disjoint_consensus_divergence,
|
|
607
|
+
build_trivial_disjoint_consensus_registry,
|
|
608
|
+
build_disjoint_consensus_registry,
|
|
609
|
+
W38_DISJOINT_CONSENSUS_SCHEMA_VERSION,
|
|
610
|
+
W38_DEFAULT_CONSENSUS_STRENGTH_MIN,
|
|
611
|
+
W38_DEFAULT_DIVERGENCE_MARGIN_MIN,
|
|
612
|
+
W38_BRANCH_CONSENSUS_RESOLVED,
|
|
613
|
+
W38_BRANCH_TRIVIAL_CONSENSUS_PASSTHROUGH,
|
|
614
|
+
W38_BRANCH_CONSENSUS_REJECTED,
|
|
615
|
+
W38_BRANCH_CONSENSUS_DISABLED,
|
|
616
|
+
W38_BRANCH_CONSENSUS_NO_TRIGGER,
|
|
617
|
+
W38_BRANCH_CONSENSUS_RATIFIED,
|
|
618
|
+
W38_BRANCH_CONSENSUS_NO_REFERENCE,
|
|
619
|
+
W38_BRANCH_CONSENSUS_DIVERGENCE_ABSTAINED,
|
|
620
|
+
W38_BRANCH_CONSENSUS_REFERENCE_WEAK,
|
|
621
|
+
W38_ALL_BRANCHES,
|
|
622
|
+
# SDK v3.40 — multi-host disjoint quorum consensus-reference
|
|
623
|
+
# ratification + manifest-v9 CID + mutually-disjoint physical-host
|
|
624
|
+
# topology (W39). EXPERIMENTAL — see __experimental__.
|
|
625
|
+
MultiHostDisjointQuorumProbe,
|
|
626
|
+
MultiHostDisjointQuorumRatificationEnvelope,
|
|
627
|
+
MultiHostDisjointQuorumRegistry,
|
|
628
|
+
W39MultiHostDisjointQuorumResult,
|
|
629
|
+
MultiHostDisjointQuorumOrchestrator,
|
|
630
|
+
MutuallyDisjointTopologyError,
|
|
631
|
+
verify_multi_host_disjoint_quorum_ratification,
|
|
632
|
+
select_multi_host_disjoint_quorum_decision,
|
|
633
|
+
build_trivial_multi_host_disjoint_quorum_registry,
|
|
634
|
+
build_multi_host_disjoint_quorum_registry,
|
|
635
|
+
W39_MULTI_HOST_DISJOINT_QUORUM_SCHEMA_VERSION,
|
|
636
|
+
W39_DEFAULT_QUORUM_MIN,
|
|
637
|
+
W39_DEFAULT_MIN_QUORUM_PROBES,
|
|
638
|
+
W39_DEFAULT_QUORUM_STRENGTH_MIN,
|
|
639
|
+
W39_DEFAULT_QUORUM_DIVERGENCE_MARGIN_MIN,
|
|
640
|
+
W39_BRANCH_QUORUM_RESOLVED,
|
|
641
|
+
W39_BRANCH_TRIVIAL_QUORUM_PASSTHROUGH,
|
|
642
|
+
W39_BRANCH_QUORUM_REJECTED,
|
|
643
|
+
W39_BRANCH_QUORUM_DISABLED,
|
|
644
|
+
W39_BRANCH_QUORUM_NO_TRIGGER,
|
|
645
|
+
W39_BRANCH_QUORUM_RATIFIED,
|
|
646
|
+
W39_BRANCH_QUORUM_DIVERGENCE_ABSTAINED,
|
|
647
|
+
W39_BRANCH_QUORUM_NO_REFERENCES,
|
|
648
|
+
W39_BRANCH_QUORUM_INSUFFICIENT,
|
|
649
|
+
W39_BRANCH_QUORUM_SPLIT,
|
|
650
|
+
W39_BRANCH_QUORUM_REFERENCE_WEAK,
|
|
651
|
+
W39_ALL_BRANCHES,
|
|
652
|
+
# SDK v3.41 — cross-host response-signature heterogeneity
|
|
653
|
+
# ratification + manifest-v10 CID + cross-host response-text
|
|
654
|
+
# Jaccard divergence guard (W40). EXPERIMENTAL — see
|
|
655
|
+
# __experimental__.
|
|
656
|
+
ResponseSignatureProbe,
|
|
657
|
+
MultiHostResponseHeterogeneityProbe,
|
|
658
|
+
CrossHostResponseHeterogeneityRatificationEnvelope,
|
|
659
|
+
CrossHostResponseHeterogeneityRegistry,
|
|
660
|
+
W40CrossHostResponseHeterogeneityResult,
|
|
661
|
+
CrossHostResponseHeterogeneityOrchestrator,
|
|
662
|
+
verify_cross_host_response_heterogeneity_ratification,
|
|
663
|
+
select_cross_host_response_heterogeneity_decision,
|
|
664
|
+
build_trivial_cross_host_response_heterogeneity_registry,
|
|
665
|
+
build_cross_host_response_heterogeneity_registry,
|
|
666
|
+
W40_RESPONSE_HETEROGENEITY_SCHEMA_VERSION,
|
|
667
|
+
W40_DEFAULT_RESPONSE_TEXT_DIVERSITY_MIN,
|
|
668
|
+
W40_DEFAULT_MIN_RESPONSE_SIGNATURE_PROBES,
|
|
669
|
+
W40_BRANCH_RESPONSE_SIGNATURE_RESOLVED,
|
|
670
|
+
W40_BRANCH_TRIVIAL_RESPONSE_SIGNATURE_PASSTHROUGH,
|
|
671
|
+
W40_BRANCH_RESPONSE_SIGNATURE_REJECTED,
|
|
672
|
+
W40_BRANCH_RESPONSE_SIGNATURE_DISABLED,
|
|
673
|
+
W40_BRANCH_RESPONSE_SIGNATURE_NO_TRIGGER,
|
|
674
|
+
W40_BRANCH_RESPONSE_SIGNATURE_DIVERSE,
|
|
675
|
+
W40_BRANCH_RESPONSE_SIGNATURE_COLLAPSE_ABSTAINED,
|
|
676
|
+
W40_BRANCH_RESPONSE_SIGNATURE_NO_REFERENCES,
|
|
677
|
+
W40_BRANCH_RESPONSE_SIGNATURE_INSUFFICIENT,
|
|
678
|
+
W40_BRANCH_RESPONSE_SIGNATURE_INCOMPLETE,
|
|
679
|
+
W40_ALL_BRANCHES,
|
|
680
|
+
)
|
|
681
|
+
# W41 family - integrated multi-agent context synthesis (SDK v3.42).
|
|
682
|
+
# Strict superset of W40: composes the strongest old-line explicit-
|
|
683
|
+
# capsule trust adjudication chain (W21..W40) and the strongest
|
|
684
|
+
# cross-role / multi-round bundle decoder family (W7..W11) into a
|
|
685
|
+
# single auditable end-to-end path with one manifest-v11 envelope
|
|
686
|
+
# binding both axes plus a content-addressed cross-axis witness.
|
|
687
|
+
from .integrated_synthesis import (
|
|
688
|
+
IntegratedSynthesisRatificationEnvelope,
|
|
689
|
+
IntegratedSynthesisRegistry,
|
|
690
|
+
W41IntegratedSynthesisResult,
|
|
691
|
+
IntegratedSynthesisOrchestrator,
|
|
692
|
+
verify_integrated_synthesis_ratification,
|
|
693
|
+
select_integrated_synthesis_decision,
|
|
694
|
+
classify_producer_axis_branch,
|
|
695
|
+
classify_trust_axis_branch,
|
|
696
|
+
build_integrated_synthesis_registry,
|
|
697
|
+
build_trivial_integrated_synthesis_registry,
|
|
698
|
+
W41_INTEGRATED_SYNTHESIS_SCHEMA_VERSION,
|
|
699
|
+
W41_PRODUCER_AXIS_FIRED,
|
|
700
|
+
W41_PRODUCER_AXIS_NO_TRIGGER,
|
|
701
|
+
W41_TRUST_AXIS_RATIFIED,
|
|
702
|
+
W41_TRUST_AXIS_ABSTAINED,
|
|
703
|
+
W41_TRUST_AXIS_NO_TRIGGER,
|
|
704
|
+
W41_BRANCH_TRIVIAL_INTEGRATED_PASSTHROUGH,
|
|
705
|
+
W41_BRANCH_INTEGRATED_DISABLED,
|
|
706
|
+
W41_BRANCH_INTEGRATED_REJECTED,
|
|
707
|
+
W41_BRANCH_INTEGRATED_PRODUCER_ONLY,
|
|
708
|
+
W41_BRANCH_INTEGRATED_TRUST_ONLY,
|
|
709
|
+
W41_BRANCH_INTEGRATED_BOTH_AXES,
|
|
710
|
+
W41_BRANCH_INTEGRATED_AXES_DIVERGED_ABSTAINED,
|
|
711
|
+
W41_BRANCH_INTEGRATED_NEITHER_AXIS,
|
|
712
|
+
W41_ALL_BRANCHES,
|
|
713
|
+
W41_PRODUCER_BRANCHES,
|
|
714
|
+
W41_TRUST_BRANCHES,
|
|
715
|
+
)
|
|
716
|
+
# SDK v3.43 (W42) — cross-role-invariant synthesis +
|
|
717
|
+
# manifest-v12 CID + role-handoff-signature axis +
|
|
718
|
+
# composite-collusion bounding (third orthogonal evidence axis
|
|
719
|
+
# on top of W41 producer x trust integration).
|
|
720
|
+
from .role_invariant_synthesis import (
|
|
721
|
+
RoleInvariantSynthesisRatificationEnvelope,
|
|
722
|
+
RoleInvariancePolicyEntry,
|
|
723
|
+
RoleInvariancePolicyRegistry,
|
|
724
|
+
RoleInvariantSynthesisRegistry,
|
|
725
|
+
W42RoleInvariantResult,
|
|
726
|
+
RoleInvariantSynthesisOrchestrator,
|
|
727
|
+
verify_role_invariant_synthesis_ratification,
|
|
728
|
+
select_role_invariance_decision,
|
|
729
|
+
compute_role_handoff_signature_cid,
|
|
730
|
+
build_role_invariant_registry,
|
|
731
|
+
build_trivial_role_invariant_registry,
|
|
732
|
+
W42_ROLE_INVARIANT_SCHEMA_VERSION,
|
|
733
|
+
W42_BRANCH_TRIVIAL_INVARIANCE_PASSTHROUGH,
|
|
734
|
+
W42_BRANCH_INVARIANCE_DISABLED,
|
|
735
|
+
W42_BRANCH_INVARIANCE_REJECTED,
|
|
736
|
+
W42_BRANCH_INVARIANCE_NO_TRIGGER,
|
|
737
|
+
W42_BRANCH_INVARIANCE_RATIFIED,
|
|
738
|
+
W42_BRANCH_INVARIANCE_DIVERGED_ABSTAINED,
|
|
739
|
+
W42_BRANCH_INVARIANCE_NO_POLICY,
|
|
740
|
+
W42_ALL_BRANCHES,
|
|
741
|
+
)
|
|
742
|
+
from .team_policy import (
|
|
743
|
+
LearnedTeamAdmissionPolicy,
|
|
744
|
+
TrainSample as TeamTrainSample,
|
|
745
|
+
TrainStats as TeamTrainStats,
|
|
746
|
+
train_team_admission_policy,
|
|
747
|
+
featurise_team_handoff,
|
|
748
|
+
KNOWN_SOURCE_ROLES, KNOWN_CLAIM_KINDS,
|
|
749
|
+
N_FEATURES as TEAM_FEATURE_DIM,
|
|
750
|
+
FEATURE_NAMES as TEAM_FEATURE_NAMES,
|
|
751
|
+
)
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
SDK_VERSION = "coordpy.sdk.v3.43"
|
|
755
|
+
PRODUCT_REPORT_SCHEMA = "phase45.product_report.v2"
|
|
756
|
+
# Legacy schema — still emitted by mock-only runs that don't touch
|
|
757
|
+
# the unified runtime path. Consumers should accept both.
|
|
758
|
+
PRODUCT_REPORT_SCHEMA_V1 = "phase45.product_report.v1"
|
|
759
|
+
CI_VERDICT_SCHEMA = "phase46.ci_verdict.v1"
|
|
760
|
+
IMPORT_AUDIT_SCHEMA = "phase46.import_audit.v1"
|
|
761
|
+
|
|
762
|
+
# SDK v3.30 (W29) — explicit stable-vs-experimental boundary. The
|
|
763
|
+
# symbols enumerated below are part of the *research-grade* dense-
|
|
764
|
+
# control / multi-agent-coordination surface and may evolve between
|
|
765
|
+
# minor versions. The stable runtime contract (RunSpec → run report,
|
|
766
|
+
# capsule primitives, lifecycle audit) is NOT in this tuple. External
|
|
767
|
+
# callers depending on these symbols should pin a specific SDK version
|
|
768
|
+
# and watch the CHANGELOG for breaking changes.
|
|
769
|
+
__experimental__: tuple[str, ...] = (
|
|
770
|
+
# W22 family — capsule + audited latent-state-sharing hybrid.
|
|
771
|
+
"SchemaCapsule", "LatentDigestEnvelope", "LatentDigestDisambiguator",
|
|
772
|
+
"verify_latent_digest", "SharedReadCache", "CachingOracleAdapter",
|
|
773
|
+
"EnvelopeTamperer",
|
|
774
|
+
# W25 family — shared-fanout dense-control.
|
|
775
|
+
"FanoutEnvelope", "SharedFanoutRegistry", "SharedFanoutDisambiguator",
|
|
776
|
+
"verify_fanout",
|
|
777
|
+
# W26 family — chain-persisted dense-control fanout.
|
|
778
|
+
"ChainAnchorEnvelope", "ChainAdvanceEnvelope",
|
|
779
|
+
"ChainPersistedFanoutRegistry", "ChainPersistedFanoutDisambiguator",
|
|
780
|
+
"ProjectionSlot",
|
|
781
|
+
"verify_chain_anchor", "verify_chain_advance",
|
|
782
|
+
"verify_projection_subscription",
|
|
783
|
+
# W27 family — multi-chain salience-keyed dense-control fanout.
|
|
784
|
+
"SalienceSignatureEnvelope", "ChainPivotEnvelope",
|
|
785
|
+
"MultiChainPersistedFanoutRegistry",
|
|
786
|
+
"MultiChainPersistedFanoutDisambiguator",
|
|
787
|
+
"MultiChainPersistedFanoutOrchestrator",
|
|
788
|
+
"SharedMultiChainPool",
|
|
789
|
+
"verify_salience_signature", "verify_chain_pivot",
|
|
790
|
+
"compute_input_signature_cid",
|
|
791
|
+
# W28 family — ensemble-verified cross-model pivot ratification.
|
|
792
|
+
"ProbeVote", "EnsembleProbe", "EnsembleProbeRegistration",
|
|
793
|
+
"DeterministicSignatureProbe", "OracleConsultationProbe",
|
|
794
|
+
"LLMSignatureProbe",
|
|
795
|
+
"EnsemblePivotRatificationEnvelope",
|
|
796
|
+
"EnsembleRatificationRegistry",
|
|
797
|
+
"EnsembleVerifiedMultiChainOrchestrator",
|
|
798
|
+
"verify_ensemble_pivot_ratification",
|
|
799
|
+
"build_default_ensemble_registry",
|
|
800
|
+
"build_two_probe_oracle_ensemble_registry",
|
|
801
|
+
"build_cross_host_llm_ensemble_registry",
|
|
802
|
+
# W29 family — geometry-partitioned product-manifold dense control +
|
|
803
|
+
# audited subspace-basis payload + factoradic routing index +
|
|
804
|
+
# causal-validity gate + cross-host variance witness.
|
|
805
|
+
"SubspaceBasis", "verify_subspace_basis",
|
|
806
|
+
"compute_structural_subspace_basis",
|
|
807
|
+
"encode_permutation_to_factoradic",
|
|
808
|
+
"decode_factoradic_to_permutation",
|
|
809
|
+
"CrossHostVarianceWitness",
|
|
810
|
+
"GeometryPartitionedRatificationEnvelope",
|
|
811
|
+
"PartitionRegistration",
|
|
812
|
+
"GeometryPartitionRegistry",
|
|
813
|
+
"GeometryPartitionedOrchestrator",
|
|
814
|
+
"classify_partition_id_for_cell",
|
|
815
|
+
"verify_geometry_partition_ratification",
|
|
816
|
+
"build_trivial_partition_registry",
|
|
817
|
+
"build_three_partition_registry",
|
|
818
|
+
# W30 family — calibrated geometry-aware dense control + multi-stride
|
|
819
|
+
# basis history + per-partition calibration prior + cross-host
|
|
820
|
+
# disagreement-routing + ancestor-chain causal binding.
|
|
821
|
+
"BasisHistory", "AncestorChain", "PartitionCalibrationVector",
|
|
822
|
+
"CalibratedGeometryRatificationEnvelope",
|
|
823
|
+
"CalibratedGeometryRegistry",
|
|
824
|
+
"W30CalibratedResult",
|
|
825
|
+
"CalibratedGeometryOrchestrator",
|
|
826
|
+
"verify_calibrated_geometry_ratification",
|
|
827
|
+
"update_partition_calibration_running_mean",
|
|
828
|
+
"build_trivial_calibrated_registry",
|
|
829
|
+
"build_calibrated_registry",
|
|
830
|
+
# W31 family — online self-calibrated geometry-aware dense control +
|
|
831
|
+
# sealed prior trajectory + adaptive threshold + W31 manifest CID.
|
|
832
|
+
"PriorTrajectoryEntry",
|
|
833
|
+
"OnlineCalibratedRatificationEnvelope",
|
|
834
|
+
"OnlineCalibratedRegistry",
|
|
835
|
+
"W31OnlineResult",
|
|
836
|
+
"OnlineCalibratedOrchestrator",
|
|
837
|
+
"verify_online_calibrated_ratification",
|
|
838
|
+
"derive_per_cell_agreement_signal",
|
|
839
|
+
"compute_adaptive_threshold",
|
|
840
|
+
"build_trivial_online_registry",
|
|
841
|
+
"build_online_calibrated_registry",
|
|
842
|
+
# W32 family — long-window convergent online geometry-aware
|
|
843
|
+
# dense control + EWMA + Page CUSUM + gold-correlated routing
|
|
844
|
+
# + manifest-v2 CID.
|
|
845
|
+
"GoldCorrelationMap",
|
|
846
|
+
"build_gold_correlation_map",
|
|
847
|
+
"ConvergenceStateEntry",
|
|
848
|
+
"LongWindowConvergentRatificationEnvelope",
|
|
849
|
+
"LongWindowConvergentRegistry",
|
|
850
|
+
"W32LongWindowResult",
|
|
851
|
+
"LongWindowConvergentOrchestrator",
|
|
852
|
+
"verify_long_window_convergent_ratification",
|
|
853
|
+
"update_ewma_prior",
|
|
854
|
+
"update_cusum_two_sided",
|
|
855
|
+
"detect_change_point",
|
|
856
|
+
"build_trivial_long_window_registry",
|
|
857
|
+
"build_long_window_convergent_registry",
|
|
858
|
+
# W33 family — trust-EWMA-tracked multi-oracle adjudication.
|
|
859
|
+
"TrustTrajectoryEntry",
|
|
860
|
+
"TrustEWMARatificationEnvelope",
|
|
861
|
+
"TrustEWMARegistry",
|
|
862
|
+
"W33TrustEWMAResult",
|
|
863
|
+
"TrustEWMATrackedMultiOracleOrchestrator",
|
|
864
|
+
"verify_trust_ewma_ratification",
|
|
865
|
+
"derive_per_oracle_agreement_signal",
|
|
866
|
+
"build_trivial_trust_ewma_registry",
|
|
867
|
+
"build_trust_ewma_registry",
|
|
868
|
+
# W34 family — live-aware multi-anchor adjudication + native-latent
|
|
869
|
+
# audited response-feature proxy + W34 manifest-v4 CID.
|
|
870
|
+
"LiveOracleAttestation",
|
|
871
|
+
"LiveAwareMultiAnchorRatificationEnvelope",
|
|
872
|
+
"LiveAwareMultiAnchorRegistry",
|
|
873
|
+
"HostRegistration",
|
|
874
|
+
"W34LiveAwareResult",
|
|
875
|
+
"LiveAwareMultiAnchorOrchestrator",
|
|
876
|
+
"verify_live_aware_multi_anchor_ratification",
|
|
877
|
+
"derive_multi_anchor_consensus_reference",
|
|
878
|
+
"compute_response_feature_signature",
|
|
879
|
+
"apply_host_decay",
|
|
880
|
+
"build_trivial_live_aware_registry",
|
|
881
|
+
"build_live_aware_registry",
|
|
882
|
+
# W35 family — trust-subspace dense-control proxy + basis-history
|
|
883
|
+
# projection + manifest-v5 CID.
|
|
884
|
+
"TrustSubspaceBasisEntry",
|
|
885
|
+
"TrustSubspaceDenseRatificationEnvelope",
|
|
886
|
+
"TrustSubspaceDenseRegistry",
|
|
887
|
+
"W35TrustSubspaceResult",
|
|
888
|
+
"TrustSubspaceDenseControlOrchestrator",
|
|
889
|
+
"verify_trust_subspace_dense_ratification",
|
|
890
|
+
"select_trust_subspace_projection",
|
|
891
|
+
"build_trivial_trust_subspace_registry",
|
|
892
|
+
"build_trust_subspace_dense_registry",
|
|
893
|
+
# W36 family — host-diverse trust-subspace dense-control guard +
|
|
894
|
+
# manifest-v6 CID.
|
|
895
|
+
"HostDiverseBasisEntry",
|
|
896
|
+
"HostDiverseRatificationEnvelope",
|
|
897
|
+
"HostDiverseRegistry",
|
|
898
|
+
"W36HostDiverseResult",
|
|
899
|
+
"HostDiverseTrustSubspaceOrchestrator",
|
|
900
|
+
"verify_host_diverse_ratification",
|
|
901
|
+
"select_host_diverse_projection",
|
|
902
|
+
"build_trivial_host_diverse_registry",
|
|
903
|
+
"build_host_diverse_registry",
|
|
904
|
+
# W37 family — anchor-cross-host basis-trajectory ratification +
|
|
905
|
+
# manifest-v7 CID.
|
|
906
|
+
"CrossHostBasisTrajectoryEntry",
|
|
907
|
+
"CrossHostBasisTrajectoryRatificationEnvelope",
|
|
908
|
+
"CrossHostBasisTrajectoryRegistry",
|
|
909
|
+
"W37CrossHostTrajectoryResult",
|
|
910
|
+
"CrossHostBasisTrajectoryOrchestrator",
|
|
911
|
+
"verify_cross_host_trajectory_ratification",
|
|
912
|
+
"select_cross_host_trajectory_projection",
|
|
913
|
+
"build_trivial_cross_host_trajectory_registry",
|
|
914
|
+
"build_cross_host_trajectory_registry",
|
|
915
|
+
# W38 family — disjoint cross-source consensus-reference trajectory-
|
|
916
|
+
# divergence adjudication + manifest-v8 CID.
|
|
917
|
+
"ConsensusReferenceProbe",
|
|
918
|
+
"DisjointConsensusReferenceRatificationEnvelope",
|
|
919
|
+
"DisjointConsensusReferenceRegistry",
|
|
920
|
+
"W38DisjointConsensusReferenceResult",
|
|
921
|
+
"DisjointConsensusReferenceOrchestrator",
|
|
922
|
+
"DisjointTopologyError",
|
|
923
|
+
"verify_disjoint_consensus_reference_ratification",
|
|
924
|
+
"select_disjoint_consensus_divergence",
|
|
925
|
+
"build_trivial_disjoint_consensus_registry",
|
|
926
|
+
"build_disjoint_consensus_registry",
|
|
927
|
+
# W39 family — multi-host disjoint quorum consensus-reference
|
|
928
|
+
# ratification + manifest-v9 CID + mutually-disjoint physical-host
|
|
929
|
+
# topology.
|
|
930
|
+
"MultiHostDisjointQuorumProbe",
|
|
931
|
+
"MultiHostDisjointQuorumRatificationEnvelope",
|
|
932
|
+
"MultiHostDisjointQuorumRegistry",
|
|
933
|
+
"W39MultiHostDisjointQuorumResult",
|
|
934
|
+
"MultiHostDisjointQuorumOrchestrator",
|
|
935
|
+
"MutuallyDisjointTopologyError",
|
|
936
|
+
"verify_multi_host_disjoint_quorum_ratification",
|
|
937
|
+
"select_multi_host_disjoint_quorum_decision",
|
|
938
|
+
"build_trivial_multi_host_disjoint_quorum_registry",
|
|
939
|
+
"build_multi_host_disjoint_quorum_registry",
|
|
940
|
+
# W40 family — cross-host response-signature heterogeneity
|
|
941
|
+
# ratification + manifest-v10 CID + cross-host response-text
|
|
942
|
+
# Jaccard divergence guard.
|
|
943
|
+
"ResponseSignatureProbe",
|
|
944
|
+
"MultiHostResponseHeterogeneityProbe",
|
|
945
|
+
"CrossHostResponseHeterogeneityRatificationEnvelope",
|
|
946
|
+
"CrossHostResponseHeterogeneityRegistry",
|
|
947
|
+
"W40CrossHostResponseHeterogeneityResult",
|
|
948
|
+
"CrossHostResponseHeterogeneityOrchestrator",
|
|
949
|
+
"verify_cross_host_response_heterogeneity_ratification",
|
|
950
|
+
"select_cross_host_response_heterogeneity_decision",
|
|
951
|
+
"build_trivial_cross_host_response_heterogeneity_registry",
|
|
952
|
+
"build_cross_host_response_heterogeneity_registry",
|
|
953
|
+
# W41 family — integrated multi-agent context synthesis +
|
|
954
|
+
# manifest-v11 CID + cross-axis witness CID +
|
|
955
|
+
# producer-axis x trust-axis decision selector.
|
|
956
|
+
"IntegratedSynthesisRatificationEnvelope",
|
|
957
|
+
"IntegratedSynthesisRegistry",
|
|
958
|
+
"W41IntegratedSynthesisResult",
|
|
959
|
+
"IntegratedSynthesisOrchestrator",
|
|
960
|
+
"verify_integrated_synthesis_ratification",
|
|
961
|
+
"select_integrated_synthesis_decision",
|
|
962
|
+
"classify_producer_axis_branch",
|
|
963
|
+
"classify_trust_axis_branch",
|
|
964
|
+
"build_integrated_synthesis_registry",
|
|
965
|
+
"build_trivial_integrated_synthesis_registry",
|
|
966
|
+
# W42 family — cross-role-invariant synthesis +
|
|
967
|
+
# manifest-v12 CID + role-handoff-signature axis +
|
|
968
|
+
# composite-collusion bounding.
|
|
969
|
+
"RoleInvariantSynthesisRatificationEnvelope",
|
|
970
|
+
"RoleInvariancePolicyEntry",
|
|
971
|
+
"RoleInvariancePolicyRegistry",
|
|
972
|
+
"RoleInvariantSynthesisRegistry",
|
|
973
|
+
"W42RoleInvariantResult",
|
|
974
|
+
"RoleInvariantSynthesisOrchestrator",
|
|
975
|
+
"verify_role_invariant_synthesis_ratification",
|
|
976
|
+
"select_role_invariance_decision",
|
|
977
|
+
"compute_role_handoff_signature_cid",
|
|
978
|
+
"build_role_invariant_registry",
|
|
979
|
+
"build_trivial_role_invariant_registry",
|
|
980
|
+
)
|
|
981
|
+
|
|
982
|
+
__all__ = [
|
|
983
|
+
# Execution
|
|
984
|
+
"RunSpec", "run", "RunReport",
|
|
985
|
+
# Unified runtime (Slice 2)
|
|
986
|
+
"SweepSpec", "run_sweep", "HeavyRunNotAcknowledged",
|
|
987
|
+
# SDK v3.6 — LLM backend abstraction (additive integration
|
|
988
|
+
# boundary for two-Mac MLX-distributed inference).
|
|
989
|
+
"LLMBackend", "OllamaBackend", "OpenAICompatibleBackend",
|
|
990
|
+
"MLXDistributedBackend", "make_backend", "backend_from_env",
|
|
991
|
+
"backend_from_config",
|
|
992
|
+
# Capsule runtime (Slice 3 — SDK v3)
|
|
993
|
+
"ContextCapsule", "CapsuleKind", "CapsuleLifecycle",
|
|
994
|
+
"CapsuleBudget", "CapsuleLedger", "CapsuleView",
|
|
995
|
+
"CAPSULE_VIEW_SCHEMA", "render_view",
|
|
996
|
+
"verify_chain_from_view_dict",
|
|
997
|
+
"CapsuleAdmissionError", "CapsuleLifecycleError",
|
|
998
|
+
"build_report_ledger",
|
|
999
|
+
"capsule_from_handle", "capsule_from_handoff",
|
|
1000
|
+
"capsule_from_provenance", "capsule_from_sweep_cell",
|
|
1001
|
+
"capsule_from_sweep_spec", "capsule_from_profile",
|
|
1002
|
+
"capsule_from_readiness", "capsule_from_artifact",
|
|
1003
|
+
"capsule_from_report",
|
|
1004
|
+
# Phase-47 cohort subsumption (additive).
|
|
1005
|
+
"capsule_from_cohort", "capsule_from_adaptive_sub_table",
|
|
1006
|
+
# SDK v3.2 — intra-cell + detached-witness adapters.
|
|
1007
|
+
"capsule_from_patch_proposal", "capsule_from_test_verdict",
|
|
1008
|
+
"capsule_from_meta_manifest",
|
|
1009
|
+
# SDK v3.3 — sub-intra-cell parser-axis adapter.
|
|
1010
|
+
"capsule_from_parse_outcome", "PARSE_OUTCOME_ORACLE",
|
|
1011
|
+
# SDK v3.4 — sub-sub-intra-cell PROMPT/LLM_RESPONSE adapters.
|
|
1012
|
+
"capsule_from_prompt", "capsule_from_llm_response",
|
|
1013
|
+
"PROMPT_TEXT_CAP", "LLM_RESPONSE_TEXT_CAP",
|
|
1014
|
+
# Capsule-native runtime (SDK v3.1) — capsules drive execution.
|
|
1015
|
+
"CapsuleNativeRunContext", "ContentAddressMismatch",
|
|
1016
|
+
"seal_and_write_artifact",
|
|
1017
|
+
"CONSTRUCTION_IN_FLIGHT", "CONSTRUCTION_POST_HOC",
|
|
1018
|
+
# SDK v3.2 — strong on-disk verification.
|
|
1019
|
+
"verify_artifacts_on_disk", "verify_meta_manifest_on_disk",
|
|
1020
|
+
# SDK v3.3 — lifecycle audit + deterministic mode opt-in
|
|
1021
|
+
# (``RunSpec.deterministic``).
|
|
1022
|
+
"CapsuleLifecycleAudit", "LifecycleAuditReport",
|
|
1023
|
+
"audit_capsule_lifecycle", "audit_capsule_lifecycle_from_view",
|
|
1024
|
+
# Capsule admission policies (Phase 46 research milestone)
|
|
1025
|
+
"AdmissionPolicy", "FIFOPolicy", "KindPriorityPolicy",
|
|
1026
|
+
"SmallestFirstPolicy", "LearnedAdmissionPolicy",
|
|
1027
|
+
"BudgetedAdmissionLedger", "train_admission_policy",
|
|
1028
|
+
"featurise_capsule", "feature_index",
|
|
1029
|
+
# Bundle-aware admission (Phase 47 research milestone)
|
|
1030
|
+
"BundleAwarePolicy", "CorroboratedAdmissionPolicy",
|
|
1031
|
+
"PluralityBundlePolicy", "BundleLearnedPolicy",
|
|
1032
|
+
"train_bundle_policy", "BundleStats",
|
|
1033
|
+
"featurise_capsule_with_bundle", "bundle_feature_index",
|
|
1034
|
+
# Bundle-aware decoding (Phase 48 research milestone)
|
|
1035
|
+
"BundleDecoder", "PriorityDecoder", "PluralityDecoder",
|
|
1036
|
+
"SourceCorroboratedPriorityDecoder", "LearnedBundleDecoder",
|
|
1037
|
+
"train_learned_bundle_decoder", "BUNDLE_DECODER_FEATURES",
|
|
1038
|
+
"evaluate_decoder", "DecoderResult",
|
|
1039
|
+
# Stronger decoder + symmetric transfer (Phase 49)
|
|
1040
|
+
"BUNDLE_DECODER_FEATURES_V2", "INTERACTION_FEATURES",
|
|
1041
|
+
"DEEPSET_PHI_FEATURES",
|
|
1042
|
+
"LearnedBundleDecoderV2", "train_learned_bundle_decoder_v2",
|
|
1043
|
+
"InteractionBundleDecoder", "train_interaction_bundle_decoder",
|
|
1044
|
+
"MLPBundleDecoder", "train_mlp_bundle_decoder",
|
|
1045
|
+
"DeepSetBundleDecoder", "train_deep_set_bundle_decoder",
|
|
1046
|
+
"MultitaskBundleDecoder", "train_multitask_bundle_decoder",
|
|
1047
|
+
# SDK v3.5 — capsule-native multi-agent team coordination
|
|
1048
|
+
# (research slice; not part of the run-boundary product
|
|
1049
|
+
# runtime contract).
|
|
1050
|
+
"RoleBudget", "DEFAULT_ROLE_BUDGETS",
|
|
1051
|
+
"capsule_team_handoff", "capsule_role_view",
|
|
1052
|
+
"capsule_team_decision",
|
|
1053
|
+
"TeamAdmissionPolicy", "TeamAdmissionDecision",
|
|
1054
|
+
"TeamFifoAdmissionPolicy", "TeamClaimPriorityAdmissionPolicy",
|
|
1055
|
+
"TeamCoverageGuidedAdmissionPolicy",
|
|
1056
|
+
"TeamCohortCoherenceAdmissionPolicy",
|
|
1057
|
+
"TeamCrossRoleCorroborationAdmissionPolicy",
|
|
1058
|
+
"TeamMultiServiceCorroborationAdmissionPolicy",
|
|
1059
|
+
"TeamCoordinator", "audit_team_lifecycle",
|
|
1060
|
+
"TeamLifecycleAuditReport", "T_INVARIANTS",
|
|
1061
|
+
# SDK v3.11 — bundle-aware team decoder (W10 family).
|
|
1062
|
+
"BundleAwareTeamDecoder", "decode_admitted_role_view",
|
|
1063
|
+
"CAUSAL_CLAIM_KINDS_PER_ROOT_CAUSE",
|
|
1064
|
+
# SDK v3.12 — multi-round bundle-aware team decoder (W11 family).
|
|
1065
|
+
"MultiRoundBundleDecoder", "collect_admitted_handoffs",
|
|
1066
|
+
# SDK v3.13 — real-LLM-robust multi-round bundle decoder (W12 family).
|
|
1067
|
+
"RobustMultiRoundBundleDecoder", "CLAIM_KIND_SYNONYMS",
|
|
1068
|
+
"normalize_claim_kind", "normalize_payload", "normalize_handoff",
|
|
1069
|
+
# SDK v3.14 — layered open-world normaliser + decoder (W13 family).
|
|
1070
|
+
"HeuristicAbstractionRule", "LayeredClaimNormalizer",
|
|
1071
|
+
"LayeredRobustMultiRoundBundleDecoder",
|
|
1072
|
+
"LAYERED_NORMALIZER_ABSTAIN",
|
|
1073
|
+
# SDK v3.15 — structured producer protocol (W14 family).
|
|
1074
|
+
"PRODUCER_PROMPT_NAIVE", "PRODUCER_PROMPT_STRUCTURED",
|
|
1075
|
+
"ALL_PRODUCER_PROMPT_MODES",
|
|
1076
|
+
"PRODUCER_PROMPT_MAGNITUDE_HINTED",
|
|
1077
|
+
"OperationalThreshold",
|
|
1078
|
+
"INCIDENT_TRIAGE_DEFAULT_MAGNITUDE_THRESHOLDS",
|
|
1079
|
+
"incident_triage_magnitude_thresholds",
|
|
1080
|
+
"RoleExtractionSchema", "ProducerPromptResult",
|
|
1081
|
+
"StructuredProducerProtocol",
|
|
1082
|
+
"INCIDENT_TRIAGE_OBSERVATION_KINDS",
|
|
1083
|
+
"incident_triage_role_schemas",
|
|
1084
|
+
# SDK v3.16 — attention-aware capsule context packing (W15 family).
|
|
1085
|
+
"W15_DEFAULT_TIER_WEIGHT", "W15_DEFAULT_CCK_WEIGHT",
|
|
1086
|
+
"W15_DEFAULT_CORROBORATION_WEIGHT", "W15_DEFAULT_MAGNITUDE_WEIGHT",
|
|
1087
|
+
"W15_DEFAULT_ROUND_WEIGHT",
|
|
1088
|
+
"W15PackedHandoff", "W15PackResult",
|
|
1089
|
+
"FifoContextPacker", "CapsuleContextPacker",
|
|
1090
|
+
"AttentionAwareBundleDecoder",
|
|
1091
|
+
# SDK v3.19 — W18 family.
|
|
1092
|
+
"W18CompatibilityResult", "RelationalCompatibilityDisambiguator",
|
|
1093
|
+
# SDK v3.20 — W19 family.
|
|
1094
|
+
"BundleContradictionDisambiguator", "W19TrustResult",
|
|
1095
|
+
"W19_ALL_BRANCHES", "W19_BRANCH_PRIMARY_TRUSTED", "W19_BRANCH_INVERSION",
|
|
1096
|
+
"W19_BRANCH_CONFOUND_RESOLVED", "W19_BRANCH_ABSTAINED_NO_SIGNAL",
|
|
1097
|
+
"W19_BRANCH_ABSTAINED_SYMMETRIC", "W19_BRANCH_DISABLED",
|
|
1098
|
+
# SDK v3.21 — W20 family (outside-witness acquisition).
|
|
1099
|
+
"OutsideWitnessOracle", "OutsideQuery", "OutsideVerdict",
|
|
1100
|
+
"ServiceGraphOracle", "CompromisedServiceGraphOracle",
|
|
1101
|
+
"AbstainingOracle", "LLMAdjudicatorOracle",
|
|
1102
|
+
"build_incident_triage_service_graph",
|
|
1103
|
+
"OutsideWitnessAcquisitionDisambiguator", "W20OutsideResult",
|
|
1104
|
+
"W20_ALL_BRANCHES", "W20_BRANCH_OUTSIDE_RESOLVED",
|
|
1105
|
+
"W20_BRANCH_OUTSIDE_TRUSTED_ASYMMETRIC",
|
|
1106
|
+
"W20_BRANCH_OUTSIDE_ABSTAINED", "W20_BRANCH_NO_TRIGGER",
|
|
1107
|
+
"W20_BRANCH_DISABLED", "W20_DEFAULT_TRIGGER_BRANCHES",
|
|
1108
|
+
# SDK v3.22 — W21 family (trust-weighted multi-oracle adjudicator).
|
|
1109
|
+
"OracleRegistration", "ChangeHistoryOracle", "OnCallNotesOracle",
|
|
1110
|
+
"SingletonAsymmetricOracle", "DisagreeingHonestOracle",
|
|
1111
|
+
"W21OracleProbe", "W21MultiOracleResult",
|
|
1112
|
+
"TrustWeightedMultiOracleDisambiguator",
|
|
1113
|
+
"W21_ALL_BRANCHES", "W21_BRANCH_QUORUM_RESOLVED",
|
|
1114
|
+
"W21_BRANCH_NO_QUORUM", "W21_BRANCH_SYMMETRIC_QUORUM",
|
|
1115
|
+
"W21_BRANCH_NO_ORACLES", "W21_BRANCH_NO_TRIGGER",
|
|
1116
|
+
"W21_BRANCH_DISABLED", "W21_DEFAULT_TRIGGER_BRANCHES",
|
|
1117
|
+
# SDK v3.23 — W22 family (capsule + audited latent-state-sharing hybrid).
|
|
1118
|
+
"SchemaCapsule", "build_incident_triage_schema_capsule",
|
|
1119
|
+
"LatentDigestEnvelope", "LatentVerificationOutcome",
|
|
1120
|
+
"verify_latent_digest", "SharedReadCache", "CachingOracleAdapter",
|
|
1121
|
+
"EnvelopeTamperer", "W22LatentResult", "LatentDigestDisambiguator",
|
|
1122
|
+
"W22_ALL_BRANCHES", "W22_BRANCH_LATENT_RESOLVED",
|
|
1123
|
+
"W22_BRANCH_LATENT_REJECTED", "W22_BRANCH_NO_TRIGGER",
|
|
1124
|
+
"W22_BRANCH_NO_SCHEMA", "W22_BRANCH_DISABLED",
|
|
1125
|
+
"W22_BRANCH_ABSTAIN_PASSTHROUGH",
|
|
1126
|
+
"W22_DEFAULT_TRIGGER_BRANCHES",
|
|
1127
|
+
"W22_LATENT_ENVELOPE_SCHEMA_VERSION",
|
|
1128
|
+
# SDK v3.26 — W25 family (shared-fanout dense-control).
|
|
1129
|
+
"FanoutEnvelope", "SharedFanoutRegistry", "SharedFanoutDisambiguator",
|
|
1130
|
+
"verify_fanout", "W25FanoutResult",
|
|
1131
|
+
"W25_FANOUT_SCHEMA_VERSION",
|
|
1132
|
+
"W25_ALL_BRANCHES", "W25_BRANCH_FANOUT_PRODUCER_EMITTED",
|
|
1133
|
+
"W25_BRANCH_FANOUT_CONSUMER_RESOLVED",
|
|
1134
|
+
"W25_BRANCH_FANOUT_CONSUMER_REJECTED",
|
|
1135
|
+
"W25_BRANCH_NO_TRIGGER", "W25_BRANCH_DISABLED",
|
|
1136
|
+
"W25_DEFAULT_TRIGGER_BRANCHES",
|
|
1137
|
+
# SDK v3.27 — W26 family (chain-persisted dense-control fanout +
|
|
1138
|
+
# per-consumer projections).
|
|
1139
|
+
"ChainAnchorEnvelope", "ChainAdvanceEnvelope",
|
|
1140
|
+
"ChainPersistedFanoutRegistry",
|
|
1141
|
+
"ChainPersistedFanoutDisambiguator",
|
|
1142
|
+
"ProjectionSlot", "W26ChainResult",
|
|
1143
|
+
"verify_chain_anchor", "verify_chain_advance",
|
|
1144
|
+
"verify_projection_subscription",
|
|
1145
|
+
"W26_CHAIN_ANCHOR_SCHEMA_VERSION",
|
|
1146
|
+
"W26_CHAIN_ADVANCE_SCHEMA_VERSION",
|
|
1147
|
+
"W26_ALL_BRANCHES",
|
|
1148
|
+
"W26_BRANCH_CHAIN_ANCHORED", "W26_BRANCH_CHAIN_ADVANCED",
|
|
1149
|
+
"W26_BRANCH_CHAIN_REJECTED", "W26_BRANCH_CHAIN_RE_ANCHORED",
|
|
1150
|
+
"W26_BRANCH_CHAIN_PROJECTION_RESOLVED",
|
|
1151
|
+
"W26_BRANCH_CHAIN_PROJECTION_REJECTED",
|
|
1152
|
+
"W26_BRANCH_NO_TRIGGER", "W26_BRANCH_DISABLED",
|
|
1153
|
+
"W26_DEFAULT_TRIGGER_BRANCHES",
|
|
1154
|
+
# SDK v3.28 — W27 family.
|
|
1155
|
+
"SalienceSignatureEnvelope", "ChainPivotEnvelope",
|
|
1156
|
+
"MultiChainPersistedFanoutRegistry",
|
|
1157
|
+
"MultiChainPersistedFanoutDisambiguator",
|
|
1158
|
+
"MultiChainPersistedFanoutOrchestrator",
|
|
1159
|
+
"SharedMultiChainPool",
|
|
1160
|
+
"W27MultiChainResult", "W27OrchestratorResult",
|
|
1161
|
+
"compute_input_signature_cid",
|
|
1162
|
+
"verify_salience_signature", "verify_chain_pivot",
|
|
1163
|
+
"W27_SALIENCE_SIGNATURE_SCHEMA_VERSION",
|
|
1164
|
+
"W27_CHAIN_PIVOT_SCHEMA_VERSION",
|
|
1165
|
+
"W27_ALL_BRANCHES",
|
|
1166
|
+
"W27_BRANCH_PIVOTED", "W27_BRANCH_ANCHORED_NEW",
|
|
1167
|
+
"W27_BRANCH_POOL_EXHAUSTED", "W27_BRANCH_PIVOT_REJECTED",
|
|
1168
|
+
"W27_BRANCH_FALLBACK_W26", "W27_BRANCH_NO_TRIGGER",
|
|
1169
|
+
"W27_BRANCH_DISABLED",
|
|
1170
|
+
"W27_DEFAULT_TRIGGER_BRANCHES",
|
|
1171
|
+
# SDK v3.29 — W28 family (ensemble-verified cross-model multi-chain
|
|
1172
|
+
# pivot ratification). EXPERIMENTAL — see __experimental__ tuple.
|
|
1173
|
+
"ProbeVote", "EnsembleProbe", "EnsembleProbeRegistration",
|
|
1174
|
+
"DeterministicSignatureProbe", "OracleConsultationProbe",
|
|
1175
|
+
"LLMSignatureProbe",
|
|
1176
|
+
"EnsemblePivotRatificationEnvelope",
|
|
1177
|
+
"EnsembleRatificationRegistry",
|
|
1178
|
+
"EnsembleVerifiedMultiChainOrchestrator",
|
|
1179
|
+
"W28EnsembleResult",
|
|
1180
|
+
"verify_ensemble_pivot_ratification",
|
|
1181
|
+
"build_default_ensemble_registry",
|
|
1182
|
+
"build_two_probe_oracle_ensemble_registry",
|
|
1183
|
+
"build_cross_host_llm_ensemble_registry",
|
|
1184
|
+
"W28_RATIFICATION_SCHEMA_VERSION",
|
|
1185
|
+
"W28_ALL_BRANCHES",
|
|
1186
|
+
"W28_BRANCH_RATIFIED", "W28_BRANCH_RATIFIED_PASSTHROUGH",
|
|
1187
|
+
"W28_BRANCH_QUORUM_BELOW_THRESHOLD", "W28_BRANCH_PROBE_REJECTED",
|
|
1188
|
+
"W28_BRANCH_NO_RATIFY_NEEDED", "W28_BRANCH_FALLBACK_W27",
|
|
1189
|
+
"W28_BRANCH_NO_TRIGGER", "W28_BRANCH_DISABLED",
|
|
1190
|
+
"W28_DEFAULT_TRIGGER_BRANCHES",
|
|
1191
|
+
# SDK v3.30 — W29 family (geometry-partitioned product-manifold
|
|
1192
|
+
# dense control + audited subspace-basis payload + factoradic
|
|
1193
|
+
# routing + causal-validity gate + cross-host variance witness).
|
|
1194
|
+
# EXPERIMENTAL — see __experimental__ tuple.
|
|
1195
|
+
"SubspaceBasis", "verify_subspace_basis",
|
|
1196
|
+
"compute_structural_subspace_basis",
|
|
1197
|
+
"encode_permutation_to_factoradic",
|
|
1198
|
+
"decode_factoradic_to_permutation",
|
|
1199
|
+
"CrossHostVarianceWitness",
|
|
1200
|
+
"GeometryPartitionedRatificationEnvelope",
|
|
1201
|
+
"PartitionRegistration", "GeometryPartitionRegistry",
|
|
1202
|
+
"W29PartitionResult", "GeometryPartitionedOrchestrator",
|
|
1203
|
+
"classify_partition_id_for_cell",
|
|
1204
|
+
"verify_geometry_partition_ratification",
|
|
1205
|
+
"build_trivial_partition_registry",
|
|
1206
|
+
"build_three_partition_registry",
|
|
1207
|
+
"W29_PARTITION_SCHEMA_VERSION",
|
|
1208
|
+
"W29_PARTITION_LINEAR", "W29_PARTITION_HIERARCHICAL",
|
|
1209
|
+
"W29_PARTITION_CYCLIC",
|
|
1210
|
+
"W29_REGISTERED_PARTITION_IDS", "W29_PARTITION_LABEL",
|
|
1211
|
+
"W29_DEFAULT_ORTHOGONALITY_TOL",
|
|
1212
|
+
"W29_BRANCH_PARTITION_RESOLVED",
|
|
1213
|
+
"W29_BRANCH_TRIVIAL_PARTITION_PASSTHROUGH",
|
|
1214
|
+
"W29_BRANCH_PARTITION_REJECTED",
|
|
1215
|
+
"W29_BRANCH_PARTITION_BELOW_THRESHOLD",
|
|
1216
|
+
"W29_BRANCH_CROSS_HOST_VARIANCE_WITNESSED",
|
|
1217
|
+
"W29_BRANCH_NO_PARTITION_NEEDED",
|
|
1218
|
+
"W29_BRANCH_FALLBACK_W28",
|
|
1219
|
+
"W29_BRANCH_NO_TRIGGER", "W29_BRANCH_DISABLED",
|
|
1220
|
+
"W29_ALL_BRANCHES",
|
|
1221
|
+
"W29_DEFAULT_TRIGGER_BRANCHES",
|
|
1222
|
+
# SDK v3.31 — W30 family (calibrated geometry-aware dense control +
|
|
1223
|
+
# multi-stride basis history + per-partition calibration prior +
|
|
1224
|
+
# cross-host disagreement-routing + ancestor-chain causal binding).
|
|
1225
|
+
# EXPERIMENTAL — see __experimental__ tuple.
|
|
1226
|
+
"BasisHistory", "AncestorChain", "PartitionCalibrationVector",
|
|
1227
|
+
"CalibratedGeometryRatificationEnvelope",
|
|
1228
|
+
"CalibratedGeometryRegistry",
|
|
1229
|
+
"W30CalibratedResult",
|
|
1230
|
+
"CalibratedGeometryOrchestrator",
|
|
1231
|
+
"verify_calibrated_geometry_ratification",
|
|
1232
|
+
"update_partition_calibration_running_mean",
|
|
1233
|
+
"build_trivial_calibrated_registry",
|
|
1234
|
+
"build_calibrated_registry",
|
|
1235
|
+
"W30_CALIBRATED_SCHEMA_VERSION",
|
|
1236
|
+
"W30_DEFAULT_CALIBRATION_PRIOR_THRESHOLD",
|
|
1237
|
+
"W30_BRANCH_CALIBRATED_RESOLVED",
|
|
1238
|
+
"W30_BRANCH_TRIVIAL_CALIBRATION_PASSTHROUGH",
|
|
1239
|
+
"W30_BRANCH_CALIBRATED_REJECTED",
|
|
1240
|
+
"W30_BRANCH_DISAGREEMENT_ROUTED",
|
|
1241
|
+
"W30_BRANCH_CALIBRATION_REROUTED",
|
|
1242
|
+
"W30_BRANCH_NO_CALIBRATION_NEEDED",
|
|
1243
|
+
"W30_BRANCH_FALLBACK_W29",
|
|
1244
|
+
"W30_BRANCH_NO_TRIGGER", "W30_BRANCH_DISABLED",
|
|
1245
|
+
"W30_ALL_BRANCHES",
|
|
1246
|
+
# SDK v3.32 — W31 family (online self-calibrated geometry-aware
|
|
1247
|
+
# dense control + sealed prior trajectory + adaptive threshold +
|
|
1248
|
+
# W31 manifest CID). EXPERIMENTAL — see __experimental__ tuple.
|
|
1249
|
+
"PriorTrajectoryEntry",
|
|
1250
|
+
"OnlineCalibratedRatificationEnvelope",
|
|
1251
|
+
"OnlineCalibratedRegistry",
|
|
1252
|
+
"W31OnlineResult",
|
|
1253
|
+
"OnlineCalibratedOrchestrator",
|
|
1254
|
+
"verify_online_calibrated_ratification",
|
|
1255
|
+
"derive_per_cell_agreement_signal",
|
|
1256
|
+
"compute_adaptive_threshold",
|
|
1257
|
+
"build_trivial_online_registry",
|
|
1258
|
+
"build_online_calibrated_registry",
|
|
1259
|
+
"W31_ONLINE_SCHEMA_VERSION",
|
|
1260
|
+
"W31_DEFAULT_THRESHOLD_MIN",
|
|
1261
|
+
"W31_DEFAULT_THRESHOLD_MAX",
|
|
1262
|
+
"W31_DEFAULT_TRAJECTORY_WINDOW",
|
|
1263
|
+
"W31_BRANCH_ONLINE_RESOLVED",
|
|
1264
|
+
"W31_BRANCH_TRIVIAL_ONLINE_PASSTHROUGH",
|
|
1265
|
+
"W31_BRANCH_ONLINE_REJECTED",
|
|
1266
|
+
"W31_BRANCH_ONLINE_DISABLED",
|
|
1267
|
+
"W31_BRANCH_ONLINE_NO_TRIGGER",
|
|
1268
|
+
"W31_ALL_BRANCHES",
|
|
1269
|
+
# SDK v3.33 — W32 family (long-window convergent online geometry-
|
|
1270
|
+
# aware dense control + EWMA + Page CUSUM + gold-correlated
|
|
1271
|
+
# routing + manifest-v2 CID). EXPERIMENTAL — see
|
|
1272
|
+
# __experimental__ tuple.
|
|
1273
|
+
"GoldCorrelationMap", "build_gold_correlation_map",
|
|
1274
|
+
"ConvergenceStateEntry",
|
|
1275
|
+
"LongWindowConvergentRatificationEnvelope",
|
|
1276
|
+
"LongWindowConvergentRegistry",
|
|
1277
|
+
"W32LongWindowResult",
|
|
1278
|
+
"LongWindowConvergentOrchestrator",
|
|
1279
|
+
"verify_long_window_convergent_ratification",
|
|
1280
|
+
"update_ewma_prior", "update_cusum_two_sided", "detect_change_point",
|
|
1281
|
+
"build_trivial_long_window_registry",
|
|
1282
|
+
"build_long_window_convergent_registry",
|
|
1283
|
+
"W32_LONG_WINDOW_SCHEMA_VERSION",
|
|
1284
|
+
"W32_DEFAULT_EWMA_ALPHA",
|
|
1285
|
+
"W32_DEFAULT_CUSUM_THRESHOLD",
|
|
1286
|
+
"W32_DEFAULT_CUSUM_K",
|
|
1287
|
+
"W32_DEFAULT_CUSUM_MAX",
|
|
1288
|
+
"W32_DEFAULT_LONG_WINDOW",
|
|
1289
|
+
"W32_DEFAULT_GOLD_CORRELATION_MIN",
|
|
1290
|
+
"W32_BRANCH_LONG_WINDOW_RESOLVED",
|
|
1291
|
+
"W32_BRANCH_TRIVIAL_LONG_WINDOW_PASSTHROUGH",
|
|
1292
|
+
"W32_BRANCH_LONG_WINDOW_REJECTED",
|
|
1293
|
+
"W32_BRANCH_LONG_WINDOW_DISABLED",
|
|
1294
|
+
"W32_BRANCH_LONG_WINDOW_NO_TRIGGER",
|
|
1295
|
+
"W32_BRANCH_GOLD_CORRELATED_REROUTED",
|
|
1296
|
+
"W32_BRANCH_CHANGE_POINT_RESET",
|
|
1297
|
+
"W32_ALL_BRANCHES",
|
|
1298
|
+
# SDK v3.34 — W33 family (trust-EWMA-tracked multi-oracle
|
|
1299
|
+
# adjudication + manifest-v3 CID). EXPERIMENTAL — see
|
|
1300
|
+
# __experimental__ tuple.
|
|
1301
|
+
"TrustTrajectoryEntry",
|
|
1302
|
+
"TrustEWMARatificationEnvelope",
|
|
1303
|
+
"TrustEWMARegistry",
|
|
1304
|
+
"W33TrustEWMAResult",
|
|
1305
|
+
"TrustEWMATrackedMultiOracleOrchestrator",
|
|
1306
|
+
"verify_trust_ewma_ratification",
|
|
1307
|
+
"derive_per_oracle_agreement_signal",
|
|
1308
|
+
"build_trivial_trust_ewma_registry",
|
|
1309
|
+
"build_trust_ewma_registry",
|
|
1310
|
+
"W33_TRUST_EWMA_SCHEMA_VERSION",
|
|
1311
|
+
"W33_DEFAULT_TRUST_THRESHOLD",
|
|
1312
|
+
"W33_DEFAULT_TRUST_TRAJECTORY_WINDOW",
|
|
1313
|
+
"W33_DEFAULT_EWMA_ALPHA",
|
|
1314
|
+
"W33_BRANCH_TRUST_EWMA_RESOLVED",
|
|
1315
|
+
"W33_BRANCH_TRIVIAL_TRUST_EWMA_PASSTHROUGH",
|
|
1316
|
+
"W33_BRANCH_TRUST_EWMA_REJECTED",
|
|
1317
|
+
"W33_BRANCH_TRUST_EWMA_DISABLED",
|
|
1318
|
+
"W33_BRANCH_TRUST_EWMA_NO_TRIGGER",
|
|
1319
|
+
"W33_BRANCH_TRUST_EWMA_DETRUSTED_ABSTAIN",
|
|
1320
|
+
"W33_BRANCH_TRUST_EWMA_DETRUSTED_REROUTE",
|
|
1321
|
+
"W33_ALL_BRANCHES",
|
|
1322
|
+
# SDK v3.35 — W34 family (live-aware multi-anchor adjudication +
|
|
1323
|
+
# native-latent audited response-feature proxy + manifest-v4 CID).
|
|
1324
|
+
# EXPERIMENTAL — see __experimental__ tuple.
|
|
1325
|
+
"LiveOracleAttestation",
|
|
1326
|
+
"LiveAwareMultiAnchorRatificationEnvelope",
|
|
1327
|
+
"LiveAwareMultiAnchorRegistry",
|
|
1328
|
+
"HostRegistration",
|
|
1329
|
+
"W34LiveAwareResult",
|
|
1330
|
+
"LiveAwareMultiAnchorOrchestrator",
|
|
1331
|
+
"verify_live_aware_multi_anchor_ratification",
|
|
1332
|
+
"derive_multi_anchor_consensus_reference",
|
|
1333
|
+
"compute_response_feature_signature",
|
|
1334
|
+
"apply_host_decay",
|
|
1335
|
+
"build_trivial_live_aware_registry",
|
|
1336
|
+
"build_live_aware_registry",
|
|
1337
|
+
"W34_LIVE_AWARE_SCHEMA_VERSION",
|
|
1338
|
+
"W34_DEFAULT_ANCHOR_QUORUM_MIN",
|
|
1339
|
+
"W34_DEFAULT_HOST_DECAY_FACTOR",
|
|
1340
|
+
"W34_DEFAULT_LIVE_ATTESTATION_TIMEOUT_MS_BUCKET",
|
|
1341
|
+
"W34_BRANCH_LIVE_AWARE_RESOLVED",
|
|
1342
|
+
"W34_BRANCH_TRIVIAL_MULTI_ANCHOR_PASSTHROUGH",
|
|
1343
|
+
"W34_BRANCH_LIVE_AWARE_REJECTED",
|
|
1344
|
+
"W34_BRANCH_LIVE_AWARE_DISABLED",
|
|
1345
|
+
"W34_BRANCH_LIVE_AWARE_NO_TRIGGER",
|
|
1346
|
+
"W34_BRANCH_MULTI_ANCHOR_CONSENSUS",
|
|
1347
|
+
"W34_BRANCH_MULTI_ANCHOR_NO_CONSENSUS",
|
|
1348
|
+
"W34_BRANCH_HOST_DECAY_FIRED",
|
|
1349
|
+
"W34_ALL_BRANCHES",
|
|
1350
|
+
# SDK v3.36 — W35 family (trust-subspace dense-control proxy +
|
|
1351
|
+
# basis-history projection + manifest-v5 CID). EXPERIMENTAL —
|
|
1352
|
+
# see __experimental__ tuple.
|
|
1353
|
+
"TrustSubspaceBasisEntry",
|
|
1354
|
+
"TrustSubspaceDenseRatificationEnvelope",
|
|
1355
|
+
"TrustSubspaceDenseRegistry",
|
|
1356
|
+
"W35TrustSubspaceResult",
|
|
1357
|
+
"TrustSubspaceDenseControlOrchestrator",
|
|
1358
|
+
"verify_trust_subspace_dense_ratification",
|
|
1359
|
+
"select_trust_subspace_projection",
|
|
1360
|
+
"build_trivial_trust_subspace_registry",
|
|
1361
|
+
"build_trust_subspace_dense_registry",
|
|
1362
|
+
"W35_TRUST_SUBSPACE_SCHEMA_VERSION",
|
|
1363
|
+
"W35_DEFAULT_BASIS_EWMA_ALPHA",
|
|
1364
|
+
"W35_DEFAULT_PROJECTION_THRESHOLD",
|
|
1365
|
+
"W35_DEFAULT_PROJECTION_MARGIN_MIN",
|
|
1366
|
+
"W35_DEFAULT_BASIS_HISTORY_WINDOW",
|
|
1367
|
+
"W35_DEFAULT_MIN_BASIS_OBSERVATIONS",
|
|
1368
|
+
"W35_BRANCH_TRUST_SUBSPACE_RESOLVED",
|
|
1369
|
+
"W35_BRANCH_TRIVIAL_TRUST_SUBSPACE_PASSTHROUGH",
|
|
1370
|
+
"W35_BRANCH_TRUST_SUBSPACE_REJECTED",
|
|
1371
|
+
"W35_BRANCH_TRUST_SUBSPACE_DISABLED",
|
|
1372
|
+
"W35_BRANCH_TRUST_SUBSPACE_NO_TRIGGER",
|
|
1373
|
+
"W35_BRANCH_BASIS_HISTORY_REROUTED",
|
|
1374
|
+
"W35_BRANCH_BASIS_HISTORY_UNSAFE",
|
|
1375
|
+
"W35_BRANCH_BASIS_HISTORY_ABSTAINED",
|
|
1376
|
+
"W35_ALL_BRANCHES",
|
|
1377
|
+
# SDK v3.37 — W36 family (host-diverse trust-subspace guard +
|
|
1378
|
+
# manifest-v6 CID). EXPERIMENTAL — see __experimental__ tuple.
|
|
1379
|
+
"HostDiverseBasisEntry",
|
|
1380
|
+
"HostDiverseRatificationEnvelope",
|
|
1381
|
+
"HostDiverseRegistry",
|
|
1382
|
+
"W36HostDiverseResult",
|
|
1383
|
+
"HostDiverseTrustSubspaceOrchestrator",
|
|
1384
|
+
"verify_host_diverse_ratification",
|
|
1385
|
+
"select_host_diverse_projection",
|
|
1386
|
+
"build_trivial_host_diverse_registry",
|
|
1387
|
+
"build_host_diverse_registry",
|
|
1388
|
+
"W36_HOST_DIVERSE_SCHEMA_VERSION",
|
|
1389
|
+
"W36_DEFAULT_MIN_DISTINCT_HOSTS",
|
|
1390
|
+
"W36_DEFAULT_HOST_DIVERSITY_THRESHOLD",
|
|
1391
|
+
"W36_DEFAULT_HOST_DIVERSITY_MARGIN_MIN",
|
|
1392
|
+
"W36_BRANCH_HOST_DIVERSE_RESOLVED",
|
|
1393
|
+
"W36_BRANCH_TRIVIAL_HOST_DIVERSE_PASSTHROUGH",
|
|
1394
|
+
"W36_BRANCH_HOST_DIVERSE_REJECTED",
|
|
1395
|
+
"W36_BRANCH_HOST_DIVERSE_DISABLED",
|
|
1396
|
+
"W36_BRANCH_HOST_DIVERSE_NO_TRIGGER",
|
|
1397
|
+
"W36_BRANCH_HOST_DIVERSE_REROUTED",
|
|
1398
|
+
"W36_BRANCH_HOST_DIVERSE_UNSAFE",
|
|
1399
|
+
"W36_BRANCH_HOST_DIVERSE_ABSTAINED",
|
|
1400
|
+
"W36_ALL_BRANCHES",
|
|
1401
|
+
# SDK v3.38 — W37 family (anchor-cross-host basis-trajectory
|
|
1402
|
+
# ratification + manifest-v7 CID). EXPERIMENTAL — see
|
|
1403
|
+
# __experimental__ tuple.
|
|
1404
|
+
"CrossHostBasisTrajectoryEntry",
|
|
1405
|
+
"CrossHostBasisTrajectoryRatificationEnvelope",
|
|
1406
|
+
"CrossHostBasisTrajectoryRegistry",
|
|
1407
|
+
"W37CrossHostTrajectoryResult",
|
|
1408
|
+
"CrossHostBasisTrajectoryOrchestrator",
|
|
1409
|
+
"verify_cross_host_trajectory_ratification",
|
|
1410
|
+
"select_cross_host_trajectory_projection",
|
|
1411
|
+
"build_trivial_cross_host_trajectory_registry",
|
|
1412
|
+
"build_cross_host_trajectory_registry",
|
|
1413
|
+
"W37_CROSS_HOST_TRAJECTORY_SCHEMA_VERSION",
|
|
1414
|
+
"W37_DEFAULT_TRAJECTORY_EWMA_ALPHA",
|
|
1415
|
+
"W37_DEFAULT_TRAJECTORY_THRESHOLD",
|
|
1416
|
+
"W37_DEFAULT_TRAJECTORY_MARGIN_MIN",
|
|
1417
|
+
"W37_DEFAULT_MIN_ANCHORED_OBSERVATIONS",
|
|
1418
|
+
"W37_DEFAULT_MIN_TRAJECTORY_ANCHORED_HOSTS",
|
|
1419
|
+
"W37_DEFAULT_TRAJECTORY_HISTORY_WINDOW",
|
|
1420
|
+
"W37_BRANCH_TRAJECTORY_RESOLVED",
|
|
1421
|
+
"W37_BRANCH_TRIVIAL_TRAJECTORY_PASSTHROUGH",
|
|
1422
|
+
"W37_BRANCH_TRAJECTORY_REJECTED",
|
|
1423
|
+
"W37_BRANCH_TRAJECTORY_DISABLED",
|
|
1424
|
+
"W37_BRANCH_TRAJECTORY_NO_TRIGGER",
|
|
1425
|
+
"W37_BRANCH_TRAJECTORY_REROUTED",
|
|
1426
|
+
"W37_BRANCH_TRAJECTORY_UNSAFE",
|
|
1427
|
+
"W37_BRANCH_TRAJECTORY_ABSTAINED",
|
|
1428
|
+
"W37_BRANCH_TRAJECTORY_NO_HISTORY",
|
|
1429
|
+
"W37_BRANCH_TRAJECTORY_DISAGREEMENT",
|
|
1430
|
+
"W37_BRANCH_TRAJECTORY_POISONED",
|
|
1431
|
+
"W37_ALL_BRANCHES",
|
|
1432
|
+
# W38 family — disjoint cross-source consensus-reference trajectory-
|
|
1433
|
+
# divergence adjudication + manifest-v8 CID.
|
|
1434
|
+
"ConsensusReferenceProbe",
|
|
1435
|
+
"DisjointConsensusReferenceRatificationEnvelope",
|
|
1436
|
+
"DisjointConsensusReferenceRegistry",
|
|
1437
|
+
"W38DisjointConsensusReferenceResult",
|
|
1438
|
+
"DisjointConsensusReferenceOrchestrator",
|
|
1439
|
+
"DisjointTopologyError",
|
|
1440
|
+
"verify_disjoint_consensus_reference_ratification",
|
|
1441
|
+
"select_disjoint_consensus_divergence",
|
|
1442
|
+
"build_trivial_disjoint_consensus_registry",
|
|
1443
|
+
"build_disjoint_consensus_registry",
|
|
1444
|
+
"W38_DISJOINT_CONSENSUS_SCHEMA_VERSION",
|
|
1445
|
+
"W38_DEFAULT_CONSENSUS_STRENGTH_MIN",
|
|
1446
|
+
"W38_DEFAULT_DIVERGENCE_MARGIN_MIN",
|
|
1447
|
+
"W38_BRANCH_CONSENSUS_RESOLVED",
|
|
1448
|
+
"W38_BRANCH_TRIVIAL_CONSENSUS_PASSTHROUGH",
|
|
1449
|
+
"W38_BRANCH_CONSENSUS_REJECTED",
|
|
1450
|
+
"W38_BRANCH_CONSENSUS_DISABLED",
|
|
1451
|
+
"W38_BRANCH_CONSENSUS_NO_TRIGGER",
|
|
1452
|
+
"W38_BRANCH_CONSENSUS_RATIFIED",
|
|
1453
|
+
"W38_BRANCH_CONSENSUS_NO_REFERENCE",
|
|
1454
|
+
"W38_BRANCH_CONSENSUS_DIVERGENCE_ABSTAINED",
|
|
1455
|
+
"W38_BRANCH_CONSENSUS_REFERENCE_WEAK",
|
|
1456
|
+
"W38_ALL_BRANCHES",
|
|
1457
|
+
# W39 family — multi-host disjoint quorum consensus-reference
|
|
1458
|
+
# ratification + manifest-v9 CID + mutually-disjoint physical-host
|
|
1459
|
+
# topology.
|
|
1460
|
+
"MultiHostDisjointQuorumProbe",
|
|
1461
|
+
"MultiHostDisjointQuorumRatificationEnvelope",
|
|
1462
|
+
"MultiHostDisjointQuorumRegistry",
|
|
1463
|
+
"W39MultiHostDisjointQuorumResult",
|
|
1464
|
+
"MultiHostDisjointQuorumOrchestrator",
|
|
1465
|
+
"MutuallyDisjointTopologyError",
|
|
1466
|
+
"verify_multi_host_disjoint_quorum_ratification",
|
|
1467
|
+
"select_multi_host_disjoint_quorum_decision",
|
|
1468
|
+
"build_trivial_multi_host_disjoint_quorum_registry",
|
|
1469
|
+
"build_multi_host_disjoint_quorum_registry",
|
|
1470
|
+
"W39_MULTI_HOST_DISJOINT_QUORUM_SCHEMA_VERSION",
|
|
1471
|
+
"W39_DEFAULT_QUORUM_MIN",
|
|
1472
|
+
"W39_DEFAULT_MIN_QUORUM_PROBES",
|
|
1473
|
+
"W39_DEFAULT_QUORUM_STRENGTH_MIN",
|
|
1474
|
+
"W39_DEFAULT_QUORUM_DIVERGENCE_MARGIN_MIN",
|
|
1475
|
+
"W39_BRANCH_QUORUM_RESOLVED",
|
|
1476
|
+
"W39_BRANCH_TRIVIAL_QUORUM_PASSTHROUGH",
|
|
1477
|
+
"W39_BRANCH_QUORUM_REJECTED",
|
|
1478
|
+
"W39_BRANCH_QUORUM_DISABLED",
|
|
1479
|
+
"W39_BRANCH_QUORUM_NO_TRIGGER",
|
|
1480
|
+
"W39_BRANCH_QUORUM_RATIFIED",
|
|
1481
|
+
"W39_BRANCH_QUORUM_DIVERGENCE_ABSTAINED",
|
|
1482
|
+
"W39_BRANCH_QUORUM_NO_REFERENCES",
|
|
1483
|
+
"W39_BRANCH_QUORUM_INSUFFICIENT",
|
|
1484
|
+
"W39_BRANCH_QUORUM_SPLIT",
|
|
1485
|
+
"W39_BRANCH_QUORUM_REFERENCE_WEAK",
|
|
1486
|
+
"W39_ALL_BRANCHES",
|
|
1487
|
+
# W40 family — cross-host response-signature heterogeneity
|
|
1488
|
+
# ratification + manifest-v10 CID + cross-host response-text
|
|
1489
|
+
# Jaccard divergence guard.
|
|
1490
|
+
"ResponseSignatureProbe",
|
|
1491
|
+
"MultiHostResponseHeterogeneityProbe",
|
|
1492
|
+
"CrossHostResponseHeterogeneityRatificationEnvelope",
|
|
1493
|
+
"CrossHostResponseHeterogeneityRegistry",
|
|
1494
|
+
"W40CrossHostResponseHeterogeneityResult",
|
|
1495
|
+
"CrossHostResponseHeterogeneityOrchestrator",
|
|
1496
|
+
"verify_cross_host_response_heterogeneity_ratification",
|
|
1497
|
+
"select_cross_host_response_heterogeneity_decision",
|
|
1498
|
+
"build_trivial_cross_host_response_heterogeneity_registry",
|
|
1499
|
+
"build_cross_host_response_heterogeneity_registry",
|
|
1500
|
+
"W40_RESPONSE_HETEROGENEITY_SCHEMA_VERSION",
|
|
1501
|
+
"W40_DEFAULT_RESPONSE_TEXT_DIVERSITY_MIN",
|
|
1502
|
+
"W40_DEFAULT_MIN_RESPONSE_SIGNATURE_PROBES",
|
|
1503
|
+
"W40_BRANCH_RESPONSE_SIGNATURE_RESOLVED",
|
|
1504
|
+
"W40_BRANCH_TRIVIAL_RESPONSE_SIGNATURE_PASSTHROUGH",
|
|
1505
|
+
"W40_BRANCH_RESPONSE_SIGNATURE_REJECTED",
|
|
1506
|
+
"W40_BRANCH_RESPONSE_SIGNATURE_DISABLED",
|
|
1507
|
+
"W40_BRANCH_RESPONSE_SIGNATURE_NO_TRIGGER",
|
|
1508
|
+
"W40_BRANCH_RESPONSE_SIGNATURE_DIVERSE",
|
|
1509
|
+
"W40_BRANCH_RESPONSE_SIGNATURE_COLLAPSE_ABSTAINED",
|
|
1510
|
+
"W40_BRANCH_RESPONSE_SIGNATURE_NO_REFERENCES",
|
|
1511
|
+
"W40_BRANCH_RESPONSE_SIGNATURE_INSUFFICIENT",
|
|
1512
|
+
"W40_BRANCH_RESPONSE_SIGNATURE_INCOMPLETE",
|
|
1513
|
+
"W40_ALL_BRANCHES",
|
|
1514
|
+
# W41 family - integrated multi-agent context synthesis +
|
|
1515
|
+
# manifest-v11 CID + cross-axis witness + producer/trust
|
|
1516
|
+
# decision selector.
|
|
1517
|
+
"IntegratedSynthesisRatificationEnvelope",
|
|
1518
|
+
"IntegratedSynthesisRegistry",
|
|
1519
|
+
"W41IntegratedSynthesisResult",
|
|
1520
|
+
"IntegratedSynthesisOrchestrator",
|
|
1521
|
+
"verify_integrated_synthesis_ratification",
|
|
1522
|
+
"select_integrated_synthesis_decision",
|
|
1523
|
+
"classify_producer_axis_branch",
|
|
1524
|
+
"classify_trust_axis_branch",
|
|
1525
|
+
"build_integrated_synthesis_registry",
|
|
1526
|
+
"build_trivial_integrated_synthesis_registry",
|
|
1527
|
+
"W41_INTEGRATED_SYNTHESIS_SCHEMA_VERSION",
|
|
1528
|
+
"W41_PRODUCER_AXIS_FIRED",
|
|
1529
|
+
"W41_PRODUCER_AXIS_NO_TRIGGER",
|
|
1530
|
+
"W41_TRUST_AXIS_RATIFIED",
|
|
1531
|
+
"W41_TRUST_AXIS_ABSTAINED",
|
|
1532
|
+
"W41_TRUST_AXIS_NO_TRIGGER",
|
|
1533
|
+
"W41_BRANCH_TRIVIAL_INTEGRATED_PASSTHROUGH",
|
|
1534
|
+
"W41_BRANCH_INTEGRATED_DISABLED",
|
|
1535
|
+
"W41_BRANCH_INTEGRATED_REJECTED",
|
|
1536
|
+
"W41_BRANCH_INTEGRATED_PRODUCER_ONLY",
|
|
1537
|
+
"W41_BRANCH_INTEGRATED_TRUST_ONLY",
|
|
1538
|
+
"W41_BRANCH_INTEGRATED_BOTH_AXES",
|
|
1539
|
+
"W41_BRANCH_INTEGRATED_AXES_DIVERGED_ABSTAINED",
|
|
1540
|
+
"W41_BRANCH_INTEGRATED_NEITHER_AXIS",
|
|
1541
|
+
"LearnedTeamAdmissionPolicy", "TeamTrainSample", "TeamTrainStats",
|
|
1542
|
+
"train_team_admission_policy", "featurise_team_handoff",
|
|
1543
|
+
"KNOWN_SOURCE_ROLES", "KNOWN_CLAIM_KINDS",
|
|
1544
|
+
"TEAM_FEATURE_DIM", "TEAM_FEATURE_NAMES",
|
|
1545
|
+
# Layered API (end-user / developer / researcher ergonomics)
|
|
1546
|
+
"CoordPySimpleAPI", "CoordPyBuilderAPI", "CoordPyAdvancedAPI", "BuilderSpec",
|
|
1547
|
+
# Stable lightweight agent/team surface
|
|
1548
|
+
"Agent", "AgentTurn", "TeamResult", "AgentTeam", "agent",
|
|
1549
|
+
"create_team",
|
|
1550
|
+
# Config
|
|
1551
|
+
"CoordPyConfig",
|
|
1552
|
+
# Provenance
|
|
1553
|
+
"PROVENANCE_SCHEMA", "build_manifest",
|
|
1554
|
+
# Re-exported submodules
|
|
1555
|
+
"profiles", "report", "ci_gate", "import_data", "extensions",
|
|
1556
|
+
# Version / schema constants
|
|
1557
|
+
"__version__", "SDK_VERSION",
|
|
1558
|
+
"PRODUCT_REPORT_SCHEMA", "PRODUCT_REPORT_SCHEMA_V1",
|
|
1559
|
+
"CI_VERDICT_SCHEMA", "IMPORT_AUDIT_SCHEMA",
|
|
1560
|
+
]
|