sheldon-context 0.1.0__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.
Files changed (141) hide show
  1. sheldon_context/__init__.py +1087 -0
  2. sheldon_context/__main__.py +6 -0
  3. sheldon_context/_version.py +3 -0
  4. sheldon_context/adapters.py +287 -0
  5. sheldon_context/adaptive_context_policy.py +318 -0
  6. sheldon_context/adaptive_context_policy_c2.py +69 -0
  7. sheldon_context/answer_anchored_reader.py +287 -0
  8. sheldon_context/answer_contract.py +539 -0
  9. sheldon_context/answer_object_execution.py +579 -0
  10. sheldon_context/answer_object_programs.py +441 -0
  11. sheldon_context/answer_object_realization.py +769 -0
  12. sheldon_context/answer_ready_compiler.py +615 -0
  13. sheldon_context/answer_ready_compiler_v2.py +229 -0
  14. sheldon_context/answer_slot_reader.py +224 -0
  15. sheldon_context/api.py +5376 -0
  16. sheldon_context/artifacts.py +3869 -0
  17. sheldon_context/atomic_evidence.py +672 -0
  18. sheldon_context/block_conditioned_adaptation.py +365 -0
  19. sheldon_context/block_conditioned_reader.py +233 -0
  20. sheldon_context/block_conditioned_runtime.py +111 -0
  21. sheldon_context/canonical_citation_reader.py +109 -0
  22. sheldon_context/citation_copy_lowering.py +261 -0
  23. sheldon_context/cli.py +5534 -0
  24. sheldon_context/client.py +2452 -0
  25. sheldon_context/compact_cli.py +97 -0
  26. sheldon_context/compare.py +2041 -0
  27. sheldon_context/compare_cli.py +98 -0
  28. sheldon_context/compiler.py +260 -0
  29. sheldon_context/compiler_profiles.py +72 -0
  30. sheldon_context/compression.py +263 -0
  31. sheldon_context/context_program.py +914 -0
  32. sheldon_context/copy_alignment_executor.py +205 -0
  33. sheldon_context/coverage_gated_fallback.py +304 -0
  34. sheldon_context/coverage_recovery_execution.py +235 -0
  35. sheldon_context/coverage_verified_reader.py +356 -0
  36. sheldon_context/diagnostics.py +298 -0
  37. sheldon_context/domain_adaptation.py +737 -0
  38. sheldon_context/domain_applications.py +436 -0
  39. sheldon_context/domain_continuation.py +806 -0
  40. sheldon_context/domain_curriculum.py +433 -0
  41. sheldon_context/domain_execution.py +932 -0
  42. sheldon_context/domain_kits.py +901 -0
  43. sheldon_context/domain_preference.py +524 -0
  44. sheldon_context/domain_preference_training.py +432 -0
  45. sheldon_context/domain_profiles.py +1195 -0
  46. sheldon_context/domain_programs.py +484 -0
  47. sheldon_context/domain_training.py +807 -0
  48. sheldon_context/engine.py +11373 -0
  49. sheldon_context/evaluate_cli.py +286 -0
  50. sheldon_context/evaluation.py +5510 -0
  51. sheldon_context/evidence_checklist.py +165 -0
  52. sheldon_context/evidence_fusion.py +754 -0
  53. sheldon_context/evidence_indexed_realization.py +694 -0
  54. sheldon_context/explicit_facet_parser.py +117 -0
  55. sheldon_context/extractive_qa_selector.py +164 -0
  56. sheldon_context/facet_answer_contract.py +243 -0
  57. sheldon_context/facet_extractive_executor.py +208 -0
  58. sheldon_context/factorized_relevance.py +141 -0
  59. sheldon_context/few_shot_domain_kits.py +563 -0
  60. sheldon_context/generation_boundaries.py +110 -0
  61. sheldon_context/generic_compiler_v1.json +61 -0
  62. sheldon_context/grounded_clause_repair.py +195 -0
  63. sheldon_context/grounded_reader.py +300 -0
  64. sheldon_context/ingest.py +619 -0
  65. sheldon_context/isolated_source_slot_execution.py +232 -0
  66. sheldon_context/line_pointer_executor.py +239 -0
  67. sheldon_context/linear_evidence_binder.py +156 -0
  68. sheldon_context/local_mlx.py +303 -0
  69. sheldon_context/models.py +79 -0
  70. sheldon_context/neural_answer_realization.py +552 -0
  71. sheldon_context/obligation_bound_adaptation.py +707 -0
  72. sheldon_context/obligation_bound_evidence.py +293 -0
  73. sheldon_context/obligation_bound_runtime.py +462 -0
  74. sheldon_context/obligation_clause_executor.py +310 -0
  75. sheldon_context/obligation_copy_executor.py +114 -0
  76. sheldon_context/obligation_evidence_executor.py +322 -0
  77. sheldon_context/omission_explicit_recovery.py +422 -0
  78. sheldon_context/packet.py +6415 -0
  79. sheldon_context/profile_source_slot_execution.py +314 -0
  80. sheldon_context/py.typed +1 -0
  81. sheldon_context/question_scoped_facet_executor.py +159 -0
  82. sheldon_context/quoted_evidence_executor.py +259 -0
  83. sheldon_context/readiness.py +304 -0
  84. sheldon_context/record_io.py +20 -0
  85. sheldon_context/relative_relevance.py +86 -0
  86. sheldon_context/retrieval.py +546 -0
  87. sheldon_context/retrieval_aware_context.py +403 -0
  88. sheldon_context/robust_omission_recovery.py +435 -0
  89. sheldon_context/robust_slot_binding.py +189 -0
  90. sheldon_context/routed_few_shot_domain_kits.py +599 -0
  91. sheldon_context/salience_quoted_evidence_executor.py +156 -0
  92. sheldon_context/scientific_context.py +575 -0
  93. sheldon_context/scientific_evaluation.py +286 -0
  94. sheldon_context/scientific_obligation.py +621 -0
  95. sheldon_context/scientific_obligation_v3.py +455 -0
  96. sheldon_context/selected_source_slot_execution.py +170 -0
  97. sheldon_context/selective_evidence_executor.py +652 -0
  98. sheldon_context/semantic_evidence_selector.py +264 -0
  99. sheldon_context/semantic_markdown.py +305 -0
  100. sheldon_context/slot_preserving_recovery.py +459 -0
  101. sheldon_context/source_complete_reader.py +234 -0
  102. sheldon_context/source_constrained_decoder.py +211 -0
  103. sheldon_context/source_decomposed_quote_executor.py +182 -0
  104. sheldon_context/source_exact_realization.py +849 -0
  105. sheldon_context/source_hint_resolution.py +154 -0
  106. sheldon_context/source_hint_resolution_v2.py +161 -0
  107. sheldon_context/source_material_unit_execution.py +318 -0
  108. sheldon_context/source_obligation_delta.py +615 -0
  109. sheldon_context/source_only_regeneration.py +178 -0
  110. sheldon_context/source_query_execution.py +788 -0
  111. sheldon_context/source_query_programs.py +348 -0
  112. sheldon_context/source_risk_pair_selector.py +199 -0
  113. sheldon_context/source_risk_pareto_selector.py +113 -0
  114. sheldon_context/source_scoped_atomic_copy.py +970 -0
  115. sheldon_context/source_scoped_domain_execution.py +192 -0
  116. sheldon_context/source_scoped_retrieval.py +249 -0
  117. sheldon_context/source_scoped_retrieval_v2.py +320 -0
  118. sheldon_context/source_structural_block_execution.py +324 -0
  119. sheldon_context/source_supported_slot_execution.py +558 -0
  120. sheldon_context/source_tail_completion.py +536 -0
  121. sheldon_context/source_unit_completion.py +469 -0
  122. sheldon_context/source_verified_revision.py +200 -0
  123. sheldon_context/state.py +488 -0
  124. sheldon_context/store.py +695 -0
  125. sheldon_context/sufficiency_execution.py +1212 -0
  126. sheldon_context/temporal_scope_router.py +93 -0
  127. sheldon_context/text.py +124 -0
  128. sheldon_context/transfer_dev_answer_ready_v1.json +45 -0
  129. sheldon_context/transfer_dev_answer_ready_v2.json +53 -0
  130. sheldon_context/typed_closure_execution.py +575 -0
  131. sheldon_context/typed_closure_programs.py +334 -0
  132. sheldon_context/unit_complete_coverage_reader.py +227 -0
  133. sheldon_context/workload_contracts.py +1113 -0
  134. sheldon_context/workload_policies.py +482 -0
  135. sheldon_context/workload_proposals.py +245 -0
  136. sheldon_context-0.1.0.dist-info/METADATA +178 -0
  137. sheldon_context-0.1.0.dist-info/RECORD +141 -0
  138. sheldon_context-0.1.0.dist-info/WHEEL +5 -0
  139. sheldon_context-0.1.0.dist-info/entry_points.txt +5 -0
  140. sheldon_context-0.1.0.dist-info/licenses/LICENSE +21 -0
  141. sheldon_context-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1087 @@
1
+ """Local-first, source-grounded context compilation for small models."""
2
+
3
+ from ._version import __version__
4
+
5
+ from .adapters import adapt_record, adapt_records
6
+ from .api import list_runtime_handoffs
7
+ from .artifacts import (
8
+ load_benchmark_authoring_queue,
9
+ load_benchmark_case_authoring_protocol,
10
+ load_benchmark_case_set_quality,
11
+ load_benchmark_datasheet,
12
+ load_benchmark_draft_rows,
13
+ load_benchmark_promotion_readiness,
14
+ load_benchmark_scale_readiness,
15
+ load_benchmark_seed_candidate_context_eval,
16
+ load_benchmark_seed_candidate_failure_analysis,
17
+ load_benchmark_seed_candidate_rows,
18
+ load_benchmark_workflow_status,
19
+ load_out_of_domain_transfer_suite_blueprint,
20
+ load_evidence_catalog,
21
+ load_context_utilization_rollup,
22
+ load_external_baseline_subset_rollup,
23
+ load_first_benchmark_answer,
24
+ load_latency_frontier_rollup,
25
+ load_provider_export_adapter_coverage,
26
+ load_provider_stage_failure_analysis,
27
+ load_public_target_150_accounting_decision,
28
+ load_public_target_150_e2e_answer_utilization_queue_v2,
29
+ load_public_target_150_e2e_evidence_memo_v2,
30
+ load_public_target_150_e2e_next_step_gate_v1,
31
+ load_public_target_150_e2e_status_v2,
32
+ load_public_target_answer_utilization_stop_rule,
33
+ load_public_target_answer_matrix,
34
+ load_public_target_batch03_failure_analysis,
35
+ load_public_target_fresh_150_v2_answer_utilization_iteration_gate,
36
+ load_public_target_fresh_150_v2_answer_utilization_taxonomy,
37
+ load_public_target_fresh_150_v2_bounded_p0_p1_answer_utilization_validation,
38
+ load_public_target_fresh_150_v2_e2e_analysis_memo,
39
+ load_public_target_fresh_150_v2_paper_safe_metric_rollup,
40
+ load_public_target_fresh_150_v2_post_validation_next_step_gate,
41
+ load_public_target_fresh_150_v2_p0_p1_clause_repair_projection,
42
+ load_public_target_fresh_150_v2_p0_p1_mitigation_harness_plan,
43
+ load_public_target_fresh_150_v2_raw_beats_packet_audit,
44
+ load_public_target_fresh_150_v2_raw_beats_closure_gate,
45
+ load_public_target_fresh_150_v2_bounded_original_output_candidate_gate,
46
+ load_public_target_fresh_150_v2_bounded_phrase_lock_residual_audit,
47
+ load_public_target_fresh_150_v2_residual_exact_clause_candidate_gate,
48
+ load_public_target_fresh_150_v2_residual_supported_miss_audit,
49
+ load_public_target_fresh_150_v2_residual_packet_surface_candidate_gate,
50
+ load_public_target_fresh_150_v2_residual_prompt_candidate_rejection_gate,
51
+ load_public_target_fresh_150_v2_residual_coverage_candidate_gate,
52
+ load_public_target_fresh_150_v2_residual_two_miss_phrase_lock_plan,
53
+ load_public_target_fresh_150_v2_residual_phrase_lock_v2_candidate_gate,
54
+ load_public_target_fresh_150_v2_residual_product_repair_gate,
55
+ load_public_target_fresh_150_v2_residual_original_output_boundary_gate,
56
+ load_public_target_fresh_150_v2_residual_single_miss_candidate_plan,
57
+ load_public_target_fresh_150_v2_residual_required_phrase_contract_candidate_gate,
58
+ load_public_target_fresh_150_v2_residual_strict_phrase_contract_candidate_gate,
59
+ load_public_target_fresh_150_v2_final_result_package,
60
+ load_public_target_fresh_150_v2_preprint_draft,
61
+ load_public_target_fresh_150_v2_preprint_reproducibility_manifest,
62
+ load_public_target_fresh_150_v2_preprint_claim_trace,
63
+ load_public_target_fresh_150_v2_preprint_readiness_gate,
64
+ load_public_target_fresh_150_v2_preprint_manuscript,
65
+ load_public_target_fresh_150_v2_preprint_handoff_gate,
66
+ load_public_target_fresh_150_v2_preprint_release_bundle,
67
+ load_public_target_fresh_150_v2_post_preprint_experiment_gate,
68
+ load_public_target_fresh_150_v2_raw_beats_triage_v1,
69
+ load_public_target_fresh_150_v2_report_table,
70
+ load_public_target_fresh_150_v2_results_section_draft,
71
+ load_public_target_fresh_150_v2_rerun_readiness_gate,
72
+ load_public_target_fresh_150_v2_same_split_baseline_refresh_gate,
73
+ load_research_folder_answer_smoke,
74
+ load_research_folder_workflow_smoke,
75
+ load_system_readiness_manifest,
76
+ resolve_benchmark_authoring_queue_path,
77
+ resolve_benchmark_case_authoring_protocol_path,
78
+ resolve_benchmark_case_set_quality_path,
79
+ resolve_benchmark_datasheet_path,
80
+ resolve_benchmark_draft_rows_path,
81
+ resolve_benchmark_promotion_readiness_path,
82
+ resolve_benchmark_scale_readiness_path,
83
+ resolve_benchmark_seed_candidate_context_eval_path,
84
+ resolve_benchmark_seed_candidate_failure_analysis_path,
85
+ resolve_benchmark_seed_candidate_rows_path,
86
+ resolve_benchmark_workflow_status_path,
87
+ resolve_out_of_domain_transfer_suite_blueprint_path,
88
+ resolve_context_utilization_rollup_path,
89
+ resolve_external_baseline_subset_rollup_path,
90
+ resolve_research_folder_answer_smoke_path,
91
+ resolve_first_benchmark_answer_path,
92
+ resolve_latency_frontier_rollup_path,
93
+ resolve_provider_export_adapter_coverage_path,
94
+ resolve_provider_stage_failure_analysis_path,
95
+ resolve_public_target_150_accounting_decision_path,
96
+ resolve_public_target_150_e2e_answer_utilization_queue_v2_path,
97
+ resolve_public_target_150_e2e_evidence_memo_v2_path,
98
+ resolve_public_target_150_e2e_next_step_gate_v1_path,
99
+ resolve_public_target_150_e2e_status_v2_path,
100
+ resolve_public_target_answer_utilization_stop_rule_path,
101
+ resolve_public_target_answer_matrix_path,
102
+ resolve_public_target_batch03_failure_analysis_path,
103
+ resolve_public_target_fresh_150_v2_answer_utilization_iteration_gate_path,
104
+ resolve_public_target_fresh_150_v2_answer_utilization_taxonomy_path,
105
+ resolve_public_target_fresh_150_v2_bounded_p0_p1_answer_utilization_validation_path,
106
+ resolve_public_target_fresh_150_v2_e2e_analysis_memo_path,
107
+ resolve_public_target_fresh_150_v2_paper_safe_metric_rollup_path,
108
+ resolve_public_target_fresh_150_v2_post_validation_next_step_gate_path,
109
+ resolve_public_target_fresh_150_v2_p0_p1_clause_repair_projection_path,
110
+ resolve_public_target_fresh_150_v2_p0_p1_mitigation_harness_plan_path,
111
+ resolve_public_target_fresh_150_v2_raw_beats_packet_audit_path,
112
+ resolve_public_target_fresh_150_v2_raw_beats_closure_gate_path,
113
+ resolve_public_target_fresh_150_v2_bounded_original_output_candidate_gate_path,
114
+ resolve_public_target_fresh_150_v2_bounded_phrase_lock_residual_audit_path,
115
+ resolve_public_target_fresh_150_v2_residual_exact_clause_candidate_gate_path,
116
+ resolve_public_target_fresh_150_v2_residual_supported_miss_audit_path,
117
+ resolve_public_target_fresh_150_v2_residual_packet_surface_candidate_gate_path,
118
+ resolve_public_target_fresh_150_v2_residual_prompt_candidate_rejection_gate_path,
119
+ resolve_public_target_fresh_150_v2_residual_coverage_candidate_gate_path,
120
+ resolve_public_target_fresh_150_v2_residual_two_miss_phrase_lock_plan_path,
121
+ resolve_public_target_fresh_150_v2_residual_phrase_lock_v2_candidate_gate_path,
122
+ resolve_public_target_fresh_150_v2_residual_product_repair_gate_path,
123
+ resolve_public_target_fresh_150_v2_residual_original_output_boundary_gate_path,
124
+ resolve_public_target_fresh_150_v2_residual_single_miss_candidate_plan_path,
125
+ resolve_public_target_fresh_150_v2_residual_required_phrase_contract_candidate_gate_path,
126
+ resolve_public_target_fresh_150_v2_residual_strict_phrase_contract_candidate_gate_path,
127
+ resolve_public_target_fresh_150_v2_final_result_package_path,
128
+ resolve_public_target_fresh_150_v2_preprint_draft_path,
129
+ resolve_public_target_fresh_150_v2_preprint_reproducibility_manifest_path,
130
+ resolve_public_target_fresh_150_v2_preprint_claim_trace_path,
131
+ resolve_public_target_fresh_150_v2_preprint_readiness_gate_path,
132
+ resolve_public_target_fresh_150_v2_preprint_manuscript_path,
133
+ resolve_public_target_fresh_150_v2_preprint_handoff_gate_path,
134
+ resolve_public_target_fresh_150_v2_preprint_release_bundle_path,
135
+ resolve_public_target_fresh_150_v2_post_preprint_experiment_gate_path,
136
+ resolve_public_target_fresh_150_v2_raw_beats_triage_v1_path,
137
+ resolve_public_target_fresh_150_v2_report_table_path,
138
+ resolve_public_target_fresh_150_v2_results_section_draft_path,
139
+ resolve_public_target_fresh_150_v2_rerun_readiness_gate_path,
140
+ resolve_public_target_fresh_150_v2_same_split_baseline_refresh_gate_path,
141
+ resolve_research_folder_workflow_smoke_path,
142
+ resolve_system_readiness_manifest_path,
143
+ )
144
+ from .compare import verify_answer_eval_provenance, verify_context_eval_provenance
145
+ from .answer_contract import (
146
+ answer_obligation_coverage,
147
+ build_answer_contract,
148
+ build_answer_obligations,
149
+ build_answer_requirements,
150
+ derive_question_requirements,
151
+ render_answer_contract,
152
+ render_answer_requirements,
153
+ verify_answer_contract,
154
+ verify_answer_obligations,
155
+ verify_answer_requirements,
156
+ verify_structured_answer,
157
+ )
158
+ from .answer_object_execution import (
159
+ ANSWER_OBJECT_ARTIFACT_TYPE,
160
+ ANSWER_OBJECT_ARTIFACT_VERSION,
161
+ ANSWER_OBJECT_EXECUTION_METHOD,
162
+ execute_answer_object_program,
163
+ )
164
+ from .answer_object_programs import (
165
+ ANSWER_OBJECT_PROGRAM_ARTIFACT_TYPE,
166
+ ANSWER_OBJECT_PROGRAM_ARTIFACT_VERSION,
167
+ ANSWER_OBJECT_PROGRAM_PROCEDURE_VERSION,
168
+ ANSWER_OBJECT_SELECTORS,
169
+ create_answer_object_program_draft,
170
+ freeze_answer_object_program,
171
+ load_answer_object_program,
172
+ validate_answer_object_program,
173
+ write_answer_object_program,
174
+ )
175
+ from .answer_object_realization import (
176
+ ANSWER_OBJECT_REALIZATION_ANSWER_TYPE,
177
+ ANSWER_OBJECT_REALIZATION_CANDIDATE,
178
+ ANSWER_OBJECT_REALIZATION_MODES,
179
+ ANSWER_OBJECT_REALIZATION_PROGRAM_TYPE,
180
+ ANSWER_OBJECT_REALIZATION_RUN_TYPE,
181
+ ANSWER_OBJECT_REALIZATION_VERSION,
182
+ compose_answer_object_realization,
183
+ prepare_answer_object_realization,
184
+ run_answer_object_realization,
185
+ verify_answer_object_selection,
186
+ )
187
+ from .neural_answer_realization import (
188
+ NEURAL_ANSWER_REALIZATION_ANSWER_TYPE,
189
+ NEURAL_ANSWER_REALIZATION_CANDIDATE,
190
+ NEURAL_ANSWER_REALIZATION_MODES,
191
+ NEURAL_ANSWER_REALIZATION_PROGRAM_TYPE,
192
+ NEURAL_ANSWER_REALIZATION_RUN_TYPE,
193
+ NEURAL_ANSWER_REALIZATION_VERSION,
194
+ compose_neural_answer_realization,
195
+ prepare_neural_answer_realization,
196
+ run_neural_answer_realization,
197
+ )
198
+ from .client import LocalContextClient, LocalContextClientError
199
+ from .compiler import COMPILER_ABLATIONS, compile_retrieved_context, normalize_compiler_ablation
200
+ from .compiler_profiles import compiler_profile_manifest, list_compiler_profiles, load_compiler_profile
201
+ from .domain_profiles import (
202
+ DOMAIN_PROFILE_ARTIFACT_TYPE,
203
+ DOMAIN_PROFILE_ARTIFACT_VERSION,
204
+ DOMAIN_PROFILE_PROCEDURE_VERSION,
205
+ expand_domain_query,
206
+ freeze_domain_profile,
207
+ load_domain_profile,
208
+ propose_domain_profile,
209
+ validate_domain_profile,
210
+ verify_domain_profile,
211
+ write_domain_profile,
212
+ )
213
+ from .domain_applications import (
214
+ DOMAIN_APPLICATION_ARTIFACT_VERSION,
215
+ DOMAIN_APPLICATION_BUNDLE_ARTIFACT_TYPE,
216
+ DOMAIN_APPLICATION_RELOCATION_ARTIFACT_TYPE,
217
+ export_domain_application,
218
+ load_domain_application_bundle,
219
+ portable_corpus_manifest,
220
+ relocate_domain_application,
221
+ verify_domain_application_bundle,
222
+ verify_domain_application_relocation,
223
+ write_domain_application_artifact,
224
+ )
225
+ from .domain_adaptation import (
226
+ GROUNDED_READER_DATASET_SCHEMA,
227
+ GROUNDED_READER_PROCEDURE,
228
+ RETRIEVAL_AWARE_DATASET_SCHEMA,
229
+ RETRIEVAL_AWARE_PROCEDURE,
230
+ build_retrieval_aware_examples,
231
+ retrieval_aware_reader_contract,
232
+ stable_object_sha256,
233
+ validate_retrieval_aware_examples,
234
+ )
235
+ from .grounded_reader import (
236
+ DOMAIN_READER_CONTRACTS,
237
+ DOMAIN_READER_V1,
238
+ GROUNDED_READER_V2,
239
+ INSUFFICIENT_CONTEXT,
240
+ answer_grounded_domain_local,
241
+ build_grounded_reader_messages,
242
+ compile_grounded_domain_context,
243
+ )
244
+ from .domain_kits import (
245
+ DOMAIN_DATASET_MANIFEST_ARTIFACT_TYPE,
246
+ DOMAIN_KIT_ARTIFACT_TYPE,
247
+ DOMAIN_KIT_ARTIFACT_VERSION,
248
+ DOMAIN_KIT_PROCEDURE,
249
+ answer_domain_kit_local,
250
+ create_domain_dataset_manifest,
251
+ create_domain_kit,
252
+ load_domain_dataset_manifest,
253
+ load_domain_kit,
254
+ verify_domain_dataset_manifest,
255
+ verify_domain_kit,
256
+ write_domain_dataset_manifest,
257
+ write_domain_kit,
258
+ )
259
+ from .few_shot_domain_kits import (
260
+ FEW_SHOT_DOMAIN_KIT_ARTIFACT_TYPE,
261
+ FEW_SHOT_DOMAIN_KIT_ARTIFACT_VERSION,
262
+ FEW_SHOT_DOMAIN_KIT_PROCEDURE,
263
+ answer_few_shot_domain_kit_local,
264
+ compile_few_shot_domain_kit_context,
265
+ create_few_shot_domain_kit,
266
+ load_few_shot_domain_kit,
267
+ verify_few_shot_domain_kit,
268
+ write_few_shot_domain_kit,
269
+ )
270
+ from .routed_few_shot_domain_kits import (
271
+ ROUTED_FEW_SHOT_DOMAIN_KIT_ARTIFACT_TYPE,
272
+ ROUTED_FEW_SHOT_DOMAIN_KIT_ARTIFACT_VERSION,
273
+ ROUTED_FEW_SHOT_DOMAIN_KIT_PROCEDURE,
274
+ answer_routed_few_shot_domain_kit_local,
275
+ compile_routed_few_shot_domain_kit_context,
276
+ create_routed_few_shot_domain_kit,
277
+ load_routed_few_shot_domain_kit,
278
+ select_routed_few_shot_demonstrations,
279
+ verify_routed_few_shot_domain_kit,
280
+ write_routed_few_shot_domain_kit,
281
+ )
282
+ from .domain_curriculum import (
283
+ DOMAIN_CURRICULUM_ARTIFACT_TYPE,
284
+ DOMAIN_CURRICULUM_ARTIFACT_VERSION,
285
+ DOMAIN_CURRICULUM_PROCEDURE,
286
+ materialize_domain_curriculum,
287
+ materialize_domain_documents,
288
+ )
289
+ from .domain_training import (
290
+ DOMAIN_TRAINING_ARTIFACT_VERSION,
291
+ DOMAIN_TRAINING_PLAN_ARTIFACT_TYPE,
292
+ DOMAIN_TRAINING_PROCEDURE,
293
+ DOMAIN_TRAINING_RESULT_ARTIFACT_TYPE,
294
+ create_domain_kit_from_training_result,
295
+ create_domain_training_plan,
296
+ load_domain_training_plan,
297
+ load_domain_training_result,
298
+ resolve_public_mlx_model_snapshot,
299
+ run_domain_training,
300
+ verify_domain_training_plan,
301
+ verify_domain_training_result,
302
+ write_domain_training_plan,
303
+ )
304
+ from .domain_preference import (
305
+ EVIDENCE_PREFERENCE_PAIR_ARTIFACT_TYPE,
306
+ EVIDENCE_PREFERENCE_PAIR_ARTIFACT_VERSION,
307
+ EVIDENCE_PREFERENCE_PROCEDURE,
308
+ MATCHED_SFT_OBJECTIVE,
309
+ PREFERENCE_OBJECTIVE,
310
+ PreferencePairDataset,
311
+ build_evidence_preference_pair,
312
+ build_evidence_preference_pairs,
313
+ evaluate_evidence_preferences,
314
+ evidence_preference_loss,
315
+ iterate_preference_batches,
316
+ validate_evidence_preference_pair,
317
+ )
318
+ from .domain_preference_training import (
319
+ EVIDENCE_PREFERENCE_TRAINING_ARTIFACT_VERSION,
320
+ EVIDENCE_PREFERENCE_TRAINING_PROCEDURE,
321
+ run_local_evidence_preference_training,
322
+ select_preference_checkpoint,
323
+ validate_preference_training_configuration,
324
+ verify_evidence_preference_training_result,
325
+ )
326
+ from .retrieval_aware_context import (
327
+ RETRIEVAL_AWARE_CONTEXT_PROCEDURE,
328
+ compile_retrieval_aware_context,
329
+ )
330
+ from .profile_source_slot_execution import (
331
+ PROFILE_SOURCE_SLOT_OUTPUT_SCHEMA,
332
+ PROFILE_SOURCE_SLOT_PROCEDURE,
333
+ build_profile_source_slot_messages,
334
+ build_profile_source_slot_or_abstention_messages,
335
+ parse_profile_source_slot_output,
336
+ )
337
+ from .source_scoped_domain_execution import (
338
+ SOURCE_SCOPED_DOMAIN_EXECUTION_PROCEDURE,
339
+ SOURCE_SCOPED_DOMAIN_OUTPUT_SCHEMA,
340
+ build_source_scoped_domain_messages,
341
+ parse_source_scoped_domain_output,
342
+ )
343
+ from .obligation_bound_evidence import (
344
+ OBLIGATION_BOUND_OUTPUT_SCHEMA,
345
+ OBLIGATION_BOUND_PROCEDURE,
346
+ build_obligation_bound_completion,
347
+ build_obligation_bound_messages,
348
+ parse_obligation_bound_output,
349
+ )
350
+ from .obligation_bound_adaptation import (
351
+ OBLIGATION_BOUND_DATASET_PROCEDURE,
352
+ OBLIGATION_BOUND_DATASET_SCHEMA,
353
+ build_obligation_bound_examples,
354
+ validate_obligation_bound_examples,
355
+ )
356
+ from .obligation_bound_runtime import (
357
+ OBLIGATION_BOUND_RUNTIME_PROCEDURE,
358
+ derive_obligation_bound_obligations,
359
+ prepare_obligation_bound_runtime,
360
+ )
361
+ from .block_conditioned_reader import (
362
+ BLOCK_CONDITIONED_OUTPUT_SCHEMA,
363
+ BLOCK_CONDITIONED_PROCEDURE,
364
+ build_block_conditioned_completion,
365
+ build_block_conditioned_messages,
366
+ compose_block_conditioned_outputs,
367
+ parse_block_conditioned_output,
368
+ )
369
+ from .block_conditioned_adaptation import (
370
+ BLOCK_CONDITIONED_DATASET_PROCEDURE,
371
+ BLOCK_CONDITIONED_DATASET_SCHEMA,
372
+ build_block_conditioned_examples,
373
+ validate_block_conditioned_examples,
374
+ )
375
+ from .block_conditioned_runtime import (
376
+ BLOCK_CONDITIONED_RUNTIME_PROCEDURE,
377
+ prepare_block_conditioned_runtime,
378
+ )
379
+ from .factorized_relevance import (
380
+ FACTORIZED_RELEVANCE_PROCEDURE,
381
+ NOT_RELEVANT_LABEL,
382
+ RELEVANT_LABEL,
383
+ build_factorized_relevance_completion,
384
+ build_factorized_relevance_messages,
385
+ parse_factorized_relevance_output,
386
+ )
387
+ from .relative_relevance import (
388
+ RELATIVE_RELEVANCE_PROCEDURE,
389
+ derive_relevance_cardinality,
390
+ select_relative_relevance,
391
+ )
392
+ from .answer_anchored_reader import (
393
+ ANSWER_ANCHORED_OUTPUT_SCHEMA,
394
+ ANSWER_ANCHORED_PROCEDURE,
395
+ build_answer_anchored_completion,
396
+ build_answer_anchored_messages,
397
+ parse_answer_anchored_output,
398
+ select_answer_anchored_evidence,
399
+ )
400
+ from .coverage_recovery_execution import (
401
+ COVERAGE_RECOVERY_EXECUTION_PROCEDURE,
402
+ COVERAGE_RECOVERY_EXECUTION_SCHEMA,
403
+ execute_coverage_recovery,
404
+ prepare_coverage_recovery,
405
+ prepare_coverage_recovery_revision,
406
+ )
407
+ from .slot_preserving_recovery import (
408
+ SLOT_PRESERVING_RECOVERY_PROCEDURE,
409
+ SLOT_PRESERVING_RECOVERY_SCHEMA,
410
+ SLOT_REPAIR_MODES,
411
+ compose_slot_preserving_recovery,
412
+ execute_slot_preserving_recovery,
413
+ parse_generated_slot_blocks,
414
+ prepare_slot_preserving_recovery,
415
+ )
416
+ from .omission_explicit_recovery import (
417
+ OMISSION_EXPLICIT_MODES,
418
+ OMISSION_EXPLICIT_RECOVERY_PROCEDURE,
419
+ OMISSION_EXPLICIT_RECOVERY_SCHEMA,
420
+ compose_omission_explicit_recovery,
421
+ execute_omission_explicit_recovery,
422
+ prepare_omission_explicit_recovery,
423
+ )
424
+ from .coverage_gated_fallback import (
425
+ COVERAGE_GATED_FALLBACK_PROCEDURE,
426
+ COVERAGE_GATED_FALLBACK_SCHEMA,
427
+ compose_coverage_gated_global_fallback,
428
+ execute_coverage_gated_global_fallback,
429
+ prepare_coverage_gated_global_fallback,
430
+ )
431
+ from .domain_execution import (
432
+ EXACT_WORKLOAD_ANSWER_ARTIFACT_TYPE,
433
+ EXACT_WORKLOAD_ANSWER_ARTIFACT_VERSION,
434
+ EXACT_WORKLOAD_EXECUTION_METHOD,
435
+ PROGRAMMED_WORKLOAD_ANSWER_ARTIFACT_TYPE,
436
+ PROGRAMMED_WORKLOAD_ANSWER_ARTIFACT_VERSION,
437
+ PROGRAMMED_WORKLOAD_EXECUTION_METHOD,
438
+ QUERY_ALIGNED_WORKLOAD_ANSWER_ARTIFACT_TYPE,
439
+ QUERY_ALIGNED_WORKLOAD_ANSWER_ARTIFACT_VERSION,
440
+ QUERY_ALIGNED_WORKLOAD_EXECUTION_METHOD,
441
+ TYPED_WORKLOAD_ANSWER_ARTIFACT_TYPE,
442
+ TYPED_WORKLOAD_ANSWER_ARTIFACT_VERSION,
443
+ TYPED_WORKLOAD_EXECUTION_METHOD,
444
+ execute_exact_workload_answer,
445
+ execute_programmed_workload_answer,
446
+ execute_query_aligned_workload_answer,
447
+ execute_typed_workload_answer,
448
+ )
449
+ from .domain_programs import (
450
+ DOMAIN_EXECUTION_PROGRAM_ARTIFACT_TYPE,
451
+ DOMAIN_EXECUTION_PROGRAM_ARTIFACT_VERSION,
452
+ DOMAIN_EXECUTION_PROGRAM_PROCEDURE_VERSION,
453
+ DOMAIN_EXECUTION_RECORD_POLICIES,
454
+ create_domain_execution_program_draft,
455
+ freeze_domain_execution_program,
456
+ load_domain_execution_program,
457
+ validate_domain_execution_program,
458
+ verify_domain_execution_program,
459
+ write_domain_execution_program,
460
+ )
461
+ from .source_query_execution import (
462
+ SOURCE_QUERY_ANSWER_ARTIFACT_TYPE,
463
+ SOURCE_QUERY_ANSWER_ARTIFACT_VERSION,
464
+ SOURCE_QUERY_EXECUTION_METHOD,
465
+ execute_source_query_program,
466
+ )
467
+ from .source_query_programs import (
468
+ SOURCE_QUERY_PROGRAM_ARTIFACT_TYPE,
469
+ SOURCE_QUERY_PROGRAM_ARTIFACT_VERSION,
470
+ SOURCE_QUERY_PROGRAM_PROCEDURE_VERSION,
471
+ SOURCE_QUERY_SELECTION_MODES,
472
+ create_source_query_program_draft,
473
+ freeze_source_query_program,
474
+ load_source_query_program,
475
+ validate_source_query_program,
476
+ write_source_query_program,
477
+ )
478
+ from .workload_contracts import (
479
+ WORKLOAD_CONTRACT_ARTIFACT_TYPE,
480
+ WORKLOAD_CONTRACT_ARTIFACT_VERSION,
481
+ WORKLOAD_CONTRACT_OPERATORS,
482
+ compile_workload_context,
483
+ create_workload_contract_draft,
484
+ freeze_workload_contract,
485
+ load_workload_contract,
486
+ select_workload_operation,
487
+ validate_workload_contract,
488
+ verify_workload_contract,
489
+ write_workload_contract,
490
+ )
491
+ from .local_mlx import (
492
+ LocalMLXRuntime,
493
+ MLXRuntimeUnavailable,
494
+ local_adapter_manifest,
495
+ verify_local_adapter,
496
+ )
497
+ from .workload_proposals import (
498
+ WORKLOAD_PROPOSAL_PROCEDURE,
499
+ propose_workload_operations,
500
+ validate_workload_proposal,
501
+ )
502
+ from .workload_policies import (
503
+ WORKLOAD_POLICY_ARTIFACT_TYPE,
504
+ WORKLOAD_POLICY_ARTIFACT_VERSION,
505
+ WORKLOAD_POLICY_PROCEDURE_VERSION,
506
+ create_workload_policy_draft,
507
+ freeze_workload_policy,
508
+ load_workload_policy,
509
+ validate_workload_policy,
510
+ verify_workload_policy,
511
+ write_workload_policy,
512
+ )
513
+ from .evidence_checklist import (
514
+ EVIDENCE_CHECKLIST_TYPE,
515
+ EVIDENCE_CHECKLIST_VERSION,
516
+ compile_evidence_checklist_context,
517
+ )
518
+ from .evidence_fusion import (
519
+ EVIDENCE_FUSION_POLICY_TYPE,
520
+ EVIDENCE_FUSION_POLICY_VERSION,
521
+ EVIDENCE_FUSION_PROCEDURE_VERSION,
522
+ compile_fused_workload_context,
523
+ create_evidence_fusion_policy,
524
+ freeze_evidence_fusion_policy,
525
+ load_evidence_fusion_policy,
526
+ validate_evidence_fusion_policy,
527
+ verify_evidence_fusion_policy,
528
+ write_evidence_fusion_policy,
529
+ )
530
+ from .atomic_evidence import (
531
+ ATOMIC_EVIDENCE_INDEX_TYPE,
532
+ ATOMIC_EVIDENCE_INDEX_VERSION,
533
+ ATOMIC_EVIDENCE_PROCEDURE_VERSION,
534
+ build_atomic_evidence_units,
535
+ compile_atomic_evidence_context,
536
+ create_atomic_evidence_index,
537
+ freeze_atomic_evidence_index,
538
+ load_atomic_evidence_index,
539
+ validate_atomic_evidence_index,
540
+ verify_atomic_evidence_index,
541
+ write_atomic_evidence_index,
542
+ )
543
+ from .context_program import (
544
+ CONTEXT_PROGRAM_CANDIDATES,
545
+ CONTEXT_PROGRAM_OPERATORS,
546
+ bind_context_program,
547
+ compose_context_program_answer,
548
+ execute_context_program,
549
+ plan_context_program,
550
+ prepare_context_program,
551
+ verify_context_program,
552
+ verify_context_program_clause,
553
+ )
554
+ from .scientific_evaluation import (
555
+ SCIENTIFIC_SCORING_VERSION,
556
+ score_answer_level_faithfulness,
557
+ score_context_source_coverage,
558
+ score_scientific_propositions,
559
+ unsupported_scientific_anchors,
560
+ )
561
+ from .scientific_context import (
562
+ SCIENTIFIC_CONTEXT_CANDIDATES,
563
+ SCIENTIFIC_CONTEXT_VERSION,
564
+ prepare_scientific_context_program,
565
+ )
566
+ from .scientific_obligation import (
567
+ SCIENTIFIC_OBLIGATION_CANDIDATE,
568
+ SCIENTIFIC_OBLIGATION_VERSION,
569
+ compose_scientific_obligation_answer,
570
+ execute_scientific_obligation_program,
571
+ parse_sentence_selection,
572
+ prepare_scientific_obligation_program,
573
+ verify_scientific_obligation_program,
574
+ )
575
+ from .engine import DEFAULT_PRODUCT_FINAL_ANSWER_REPAIR_MODE, LocalContextEngine, resolve_product_answer_repair_mode
576
+ from .models import StateFact
577
+ from .source_hint_resolution import resolve_explicit_source_hints
578
+ from .source_hint_resolution_v2 import resolve_explicit_source_hints_v2
579
+ from .source_scoped_retrieval import (
580
+ SOURCE_SCOPED_RETRIEVAL_PROCEDURE,
581
+ complete_source_scoped_retrieval,
582
+ )
583
+ from .source_scoped_retrieval_v2 import (
584
+ SOURCE_SCOPED_RETRIEVAL_PROCEDURE_V2,
585
+ complete_source_scoped_retrieval_v2,
586
+ )
587
+ from .evaluation import (
588
+ answer_brief_coverage,
589
+ answer_clause_coverage,
590
+ answer_clause_repair_suggestion,
591
+ evaluation_preflight,
592
+ list_builtin_suite_manifests,
593
+ list_evaluation_method_presets,
594
+ list_evaluation_methods,
595
+ resolve_evaluation_methods,
596
+ validate_case_set,
597
+ validate_case_suite_manifest,
598
+ )
599
+ from .readiness import answer_runtime_readiness
600
+ from .packet import PACKET_POLICIES, normalize_packet_policy
601
+ from .retrieval import RETRIEVAL_PROFILES, normalize_retrieval_profile, vector_backend_statuses
602
+ from .state import (
603
+ STATE_RESOLUTION_MODES,
604
+ STATE_STATUSES,
605
+ normalize_state_facts,
606
+ normalize_state_facts_with_audit,
607
+ resolve_state_facts,
608
+ )
609
+
610
+ __all__ = [
611
+ "ANSWER_OBJECT_ARTIFACT_TYPE",
612
+ "ANSWER_OBJECT_ARTIFACT_VERSION",
613
+ "ANSWER_OBJECT_EXECUTION_METHOD",
614
+ "ANSWER_OBJECT_PROGRAM_ARTIFACT_TYPE",
615
+ "ANSWER_OBJECT_PROGRAM_ARTIFACT_VERSION",
616
+ "ANSWER_OBJECT_PROGRAM_PROCEDURE_VERSION",
617
+ "ANSWER_OBJECT_REALIZATION_ANSWER_TYPE",
618
+ "ANSWER_OBJECT_REALIZATION_CANDIDATE",
619
+ "ANSWER_OBJECT_REALIZATION_MODES",
620
+ "ANSWER_OBJECT_REALIZATION_PROGRAM_TYPE",
621
+ "ANSWER_OBJECT_REALIZATION_RUN_TYPE",
622
+ "ANSWER_OBJECT_REALIZATION_VERSION",
623
+ "ANSWER_OBJECT_SELECTORS",
624
+ "NEURAL_ANSWER_REALIZATION_ANSWER_TYPE",
625
+ "NEURAL_ANSWER_REALIZATION_CANDIDATE",
626
+ "NEURAL_ANSWER_REALIZATION_MODES",
627
+ "NEURAL_ANSWER_REALIZATION_PROGRAM_TYPE",
628
+ "NEURAL_ANSWER_REALIZATION_RUN_TYPE",
629
+ "NEURAL_ANSWER_REALIZATION_VERSION",
630
+ "answer_obligation_coverage",
631
+ "LocalContextEngine",
632
+ "StateFact",
633
+ "STATE_STATUSES",
634
+ "STATE_RESOLUTION_MODES",
635
+ "LocalContextClient",
636
+ "LocalContextClientError",
637
+ "PACKET_POLICIES",
638
+ "RETRIEVAL_PROFILES",
639
+ "COMPILER_ABLATIONS",
640
+ "DOMAIN_PROFILE_ARTIFACT_TYPE",
641
+ "DOMAIN_PROFILE_ARTIFACT_VERSION",
642
+ "DOMAIN_PROFILE_PROCEDURE_VERSION",
643
+ "EVIDENCE_PREFERENCE_PAIR_ARTIFACT_TYPE",
644
+ "EVIDENCE_PREFERENCE_PAIR_ARTIFACT_VERSION",
645
+ "EVIDENCE_PREFERENCE_PROCEDURE",
646
+ "EVIDENCE_PREFERENCE_TRAINING_ARTIFACT_VERSION",
647
+ "EVIDENCE_PREFERENCE_TRAINING_PROCEDURE",
648
+ "MATCHED_SFT_OBJECTIVE",
649
+ "PREFERENCE_OBJECTIVE",
650
+ "PreferencePairDataset",
651
+ "RETRIEVAL_AWARE_CONTEXT_PROCEDURE",
652
+ "CONTEXT_PROGRAM_CANDIDATES",
653
+ "CONTEXT_PROGRAM_OPERATORS",
654
+ "SCIENTIFIC_CONTEXT_CANDIDATES",
655
+ "SCIENTIFIC_CONTEXT_VERSION",
656
+ "SCIENTIFIC_OBLIGATION_CANDIDATE",
657
+ "SCIENTIFIC_OBLIGATION_VERSION",
658
+ "DEFAULT_PRODUCT_FINAL_ANSWER_REPAIR_MODE",
659
+ "adapt_record",
660
+ "adapt_records",
661
+ "answer_brief_coverage",
662
+ "answer_clause_coverage",
663
+ "answer_clause_repair_suggestion",
664
+ "answer_runtime_readiness",
665
+ "build_answer_contract",
666
+ "build_answer_obligations",
667
+ "build_answer_requirements",
668
+ "build_evidence_preference_pair",
669
+ "build_evidence_preference_pairs",
670
+ "bind_context_program",
671
+ "compose_context_program_answer",
672
+ "compose_answer_object_realization",
673
+ "compose_neural_answer_realization",
674
+ "compose_scientific_obligation_answer",
675
+ "compiler_profile_manifest",
676
+ "compile_retrieved_context",
677
+ "compile_retrieval_aware_context",
678
+ "evaluate_evidence_preferences",
679
+ "evidence_preference_loss",
680
+ "iterate_preference_batches",
681
+ "run_local_evidence_preference_training",
682
+ "select_preference_checkpoint",
683
+ "validate_evidence_preference_pair",
684
+ "validate_preference_training_configuration",
685
+ "verify_evidence_preference_training_result",
686
+ "OBLIGATION_BOUND_OUTPUT_SCHEMA",
687
+ "OBLIGATION_BOUND_PROCEDURE",
688
+ "OBLIGATION_BOUND_DATASET_PROCEDURE",
689
+ "OBLIGATION_BOUND_DATASET_SCHEMA",
690
+ "OBLIGATION_BOUND_RUNTIME_PROCEDURE",
691
+ "BLOCK_CONDITIONED_OUTPUT_SCHEMA",
692
+ "BLOCK_CONDITIONED_PROCEDURE",
693
+ "BLOCK_CONDITIONED_DATASET_PROCEDURE",
694
+ "BLOCK_CONDITIONED_DATASET_SCHEMA",
695
+ "BLOCK_CONDITIONED_RUNTIME_PROCEDURE",
696
+ "FACTORIZED_RELEVANCE_PROCEDURE",
697
+ "RELATIVE_RELEVANCE_PROCEDURE",
698
+ "ANSWER_ANCHORED_OUTPUT_SCHEMA",
699
+ "ANSWER_ANCHORED_PROCEDURE",
700
+ "COVERAGE_RECOVERY_EXECUTION_PROCEDURE",
701
+ "COVERAGE_RECOVERY_EXECUTION_SCHEMA",
702
+ "SLOT_PRESERVING_RECOVERY_PROCEDURE",
703
+ "SLOT_PRESERVING_RECOVERY_SCHEMA",
704
+ "SLOT_REPAIR_MODES",
705
+ "OMISSION_EXPLICIT_MODES",
706
+ "OMISSION_EXPLICIT_RECOVERY_PROCEDURE",
707
+ "OMISSION_EXPLICIT_RECOVERY_SCHEMA",
708
+ "COVERAGE_GATED_FALLBACK_PROCEDURE",
709
+ "COVERAGE_GATED_FALLBACK_SCHEMA",
710
+ "NOT_RELEVANT_LABEL",
711
+ "RELEVANT_LABEL",
712
+ "build_block_conditioned_completion",
713
+ "build_block_conditioned_examples",
714
+ "build_block_conditioned_messages",
715
+ "build_factorized_relevance_completion",
716
+ "build_factorized_relevance_messages",
717
+ "build_answer_anchored_completion",
718
+ "build_answer_anchored_messages",
719
+ "execute_coverage_recovery",
720
+ "execute_slot_preserving_recovery",
721
+ "execute_omission_explicit_recovery",
722
+ "execute_coverage_gated_global_fallback",
723
+ "build_obligation_bound_completion",
724
+ "build_obligation_bound_examples",
725
+ "build_obligation_bound_messages",
726
+ "derive_obligation_bound_obligations",
727
+ "derive_relevance_cardinality",
728
+ "parse_obligation_bound_output",
729
+ "compose_block_conditioned_outputs",
730
+ "parse_block_conditioned_output",
731
+ "parse_factorized_relevance_output",
732
+ "parse_answer_anchored_output",
733
+ "prepare_coverage_recovery",
734
+ "prepare_coverage_recovery_revision",
735
+ "prepare_slot_preserving_recovery",
736
+ "compose_slot_preserving_recovery",
737
+ "prepare_omission_explicit_recovery",
738
+ "compose_omission_explicit_recovery",
739
+ "prepare_coverage_gated_global_fallback",
740
+ "compose_coverage_gated_global_fallback",
741
+ "parse_generated_slot_blocks",
742
+ "prepare_block_conditioned_runtime",
743
+ "prepare_obligation_bound_runtime",
744
+ "select_relative_relevance",
745
+ "select_answer_anchored_evidence",
746
+ "validate_block_conditioned_examples",
747
+ "validate_obligation_bound_examples",
748
+ "derive_question_requirements",
749
+ "execute_context_program",
750
+ "execute_answer_object_program",
751
+ "execute_scientific_obligation_program",
752
+ "evaluation_preflight",
753
+ "expand_domain_query",
754
+ "freeze_domain_profile",
755
+ "freeze_answer_object_program",
756
+ "list_builtin_suite_manifests",
757
+ "list_compiler_profiles",
758
+ "list_evaluation_method_presets",
759
+ "list_evaluation_methods",
760
+ "list_runtime_handoffs",
761
+ "load_domain_profile",
762
+ "load_answer_object_program",
763
+ "normalize_packet_policy",
764
+ "normalize_compiler_ablation",
765
+ "normalize_retrieval_profile",
766
+ "plan_context_program",
767
+ "parse_sentence_selection",
768
+ "prepare_context_program",
769
+ "prepare_answer_object_realization",
770
+ "prepare_neural_answer_realization",
771
+ "prepare_scientific_context_program",
772
+ "prepare_scientific_obligation_program",
773
+ "propose_domain_profile",
774
+ "create_answer_object_program_draft",
775
+ "render_answer_contract",
776
+ "render_answer_requirements",
777
+ "run_answer_object_realization",
778
+ "run_neural_answer_realization",
779
+ "load_compiler_profile",
780
+ "validate_case_set",
781
+ "validate_case_suite_manifest",
782
+ "validate_domain_profile",
783
+ "validate_answer_object_program",
784
+ "vector_backend_statuses",
785
+ "verify_domain_profile",
786
+ "verify_answer_object_selection",
787
+ "write_domain_profile",
788
+ "write_answer_object_program",
789
+ "SOURCE_QUERY_ANSWER_ARTIFACT_TYPE",
790
+ "SOURCE_QUERY_ANSWER_ARTIFACT_VERSION",
791
+ "SOURCE_QUERY_EXECUTION_METHOD",
792
+ "execute_source_query_program",
793
+ "SOURCE_QUERY_PROGRAM_ARTIFACT_TYPE",
794
+ "SOURCE_QUERY_PROGRAM_ARTIFACT_VERSION",
795
+ "SOURCE_QUERY_PROGRAM_PROCEDURE_VERSION",
796
+ "SOURCE_QUERY_SELECTION_MODES",
797
+ "create_source_query_program_draft",
798
+ "freeze_source_query_program",
799
+ "load_source_query_program",
800
+ "validate_source_query_program",
801
+ "write_source_query_program",
802
+ "DOMAIN_APPLICATION_ARTIFACT_VERSION",
803
+ "DOMAIN_APPLICATION_BUNDLE_ARTIFACT_TYPE",
804
+ "DOMAIN_APPLICATION_RELOCATION_ARTIFACT_TYPE",
805
+ "export_domain_application",
806
+ "load_domain_application_bundle",
807
+ "portable_corpus_manifest",
808
+ "relocate_domain_application",
809
+ "verify_domain_application_bundle",
810
+ "verify_domain_application_relocation",
811
+ "write_domain_application_artifact",
812
+ "GROUNDED_READER_DATASET_SCHEMA",
813
+ "GROUNDED_READER_PROCEDURE",
814
+ "RETRIEVAL_AWARE_DATASET_SCHEMA",
815
+ "RETRIEVAL_AWARE_PROCEDURE",
816
+ "build_retrieval_aware_examples",
817
+ "retrieval_aware_reader_contract",
818
+ "stable_object_sha256",
819
+ "validate_retrieval_aware_examples",
820
+ "DOMAIN_READER_CONTRACTS",
821
+ "DOMAIN_READER_V1",
822
+ "GROUNDED_READER_V2",
823
+ "INSUFFICIENT_CONTEXT",
824
+ "answer_grounded_domain_local",
825
+ "build_grounded_reader_messages",
826
+ "compile_grounded_domain_context",
827
+ "DOMAIN_DATASET_MANIFEST_ARTIFACT_TYPE",
828
+ "DOMAIN_KIT_ARTIFACT_TYPE",
829
+ "DOMAIN_KIT_ARTIFACT_VERSION",
830
+ "DOMAIN_KIT_PROCEDURE",
831
+ "answer_domain_kit_local",
832
+ "create_domain_dataset_manifest",
833
+ "create_domain_kit",
834
+ "load_domain_dataset_manifest",
835
+ "load_domain_kit",
836
+ "verify_domain_dataset_manifest",
837
+ "verify_domain_kit",
838
+ "write_domain_dataset_manifest",
839
+ "write_domain_kit",
840
+ "FEW_SHOT_DOMAIN_KIT_ARTIFACT_TYPE",
841
+ "FEW_SHOT_DOMAIN_KIT_ARTIFACT_VERSION",
842
+ "FEW_SHOT_DOMAIN_KIT_PROCEDURE",
843
+ "answer_few_shot_domain_kit_local",
844
+ "compile_few_shot_domain_kit_context",
845
+ "create_few_shot_domain_kit",
846
+ "load_few_shot_domain_kit",
847
+ "verify_few_shot_domain_kit",
848
+ "write_few_shot_domain_kit",
849
+ "DOMAIN_CURRICULUM_ARTIFACT_TYPE",
850
+ "DOMAIN_CURRICULUM_ARTIFACT_VERSION",
851
+ "DOMAIN_CURRICULUM_PROCEDURE",
852
+ "materialize_domain_curriculum",
853
+ "materialize_domain_documents",
854
+ "DOMAIN_TRAINING_ARTIFACT_VERSION",
855
+ "DOMAIN_TRAINING_PLAN_ARTIFACT_TYPE",
856
+ "DOMAIN_TRAINING_PROCEDURE",
857
+ "DOMAIN_TRAINING_RESULT_ARTIFACT_TYPE",
858
+ "create_domain_kit_from_training_result",
859
+ "create_domain_training_plan",
860
+ "load_domain_training_plan",
861
+ "load_domain_training_result",
862
+ "resolve_public_mlx_model_snapshot",
863
+ "run_domain_training",
864
+ "verify_domain_training_plan",
865
+ "verify_domain_training_result",
866
+ "write_domain_training_plan",
867
+ "WORKLOAD_CONTRACT_ARTIFACT_TYPE",
868
+ "WORKLOAD_CONTRACT_ARTIFACT_VERSION",
869
+ "WORKLOAD_CONTRACT_OPERATORS",
870
+ "EVIDENCE_CHECKLIST_TYPE",
871
+ "EVIDENCE_CHECKLIST_VERSION",
872
+ "compile_evidence_checklist_context",
873
+ "compile_workload_context",
874
+ "create_workload_contract_draft",
875
+ "freeze_workload_contract",
876
+ "load_workload_contract",
877
+ "select_workload_operation",
878
+ "validate_workload_contract",
879
+ "verify_workload_contract",
880
+ "write_workload_contract",
881
+ "LocalMLXRuntime",
882
+ "MLXRuntimeUnavailable",
883
+ "local_adapter_manifest",
884
+ "verify_local_adapter",
885
+ "WORKLOAD_PROPOSAL_PROCEDURE",
886
+ "propose_workload_operations",
887
+ "validate_workload_proposal",
888
+ "WORKLOAD_POLICY_ARTIFACT_TYPE",
889
+ "WORKLOAD_POLICY_ARTIFACT_VERSION",
890
+ "WORKLOAD_POLICY_PROCEDURE_VERSION",
891
+ "create_workload_policy_draft",
892
+ "freeze_workload_policy",
893
+ "load_workload_policy",
894
+ "validate_workload_policy",
895
+ "verify_workload_policy",
896
+ "write_workload_policy",
897
+ "EVIDENCE_FUSION_POLICY_TYPE",
898
+ "EVIDENCE_FUSION_POLICY_VERSION",
899
+ "EVIDENCE_FUSION_PROCEDURE_VERSION",
900
+ "compile_fused_workload_context",
901
+ "create_evidence_fusion_policy",
902
+ "freeze_evidence_fusion_policy",
903
+ "load_evidence_fusion_policy",
904
+ "validate_evidence_fusion_policy",
905
+ "verify_evidence_fusion_policy",
906
+ "write_evidence_fusion_policy",
907
+ "ATOMIC_EVIDENCE_INDEX_TYPE",
908
+ "ATOMIC_EVIDENCE_INDEX_VERSION",
909
+ "ATOMIC_EVIDENCE_PROCEDURE_VERSION",
910
+ "build_atomic_evidence_units",
911
+ "compile_atomic_evidence_context",
912
+ "create_atomic_evidence_index",
913
+ "freeze_atomic_evidence_index",
914
+ "load_atomic_evidence_index",
915
+ "validate_atomic_evidence_index",
916
+ "verify_atomic_evidence_index",
917
+ "write_atomic_evidence_index",
918
+ "load_benchmark_authoring_queue",
919
+ "load_benchmark_case_authoring_protocol",
920
+ "load_benchmark_case_set_quality",
921
+ "load_benchmark_datasheet",
922
+ "load_benchmark_draft_rows",
923
+ "load_benchmark_promotion_readiness",
924
+ "load_benchmark_scale_readiness",
925
+ "load_benchmark_seed_candidate_context_eval",
926
+ "load_benchmark_seed_candidate_failure_analysis",
927
+ "load_benchmark_seed_candidate_rows",
928
+ "load_benchmark_workflow_status",
929
+ "load_out_of_domain_transfer_suite_blueprint",
930
+ "load_evidence_catalog",
931
+ "load_context_utilization_rollup",
932
+ "load_external_baseline_subset_rollup",
933
+ "load_first_benchmark_answer",
934
+ "load_latency_frontier_rollup",
935
+ "load_provider_export_adapter_coverage",
936
+ "load_provider_stage_failure_analysis",
937
+ "load_public_target_150_accounting_decision",
938
+ "load_public_target_150_e2e_answer_utilization_queue_v2",
939
+ "load_public_target_150_e2e_evidence_memo_v2",
940
+ "load_public_target_150_e2e_next_step_gate_v1",
941
+ "load_public_target_150_e2e_status_v2",
942
+ "load_public_target_answer_utilization_stop_rule",
943
+ "load_public_target_answer_matrix",
944
+ "load_public_target_batch03_failure_analysis",
945
+ "load_public_target_fresh_150_v2_answer_utilization_iteration_gate",
946
+ "load_public_target_fresh_150_v2_answer_utilization_taxonomy",
947
+ "load_public_target_fresh_150_v2_bounded_p0_p1_answer_utilization_validation",
948
+ "load_public_target_fresh_150_v2_e2e_analysis_memo",
949
+ "load_public_target_fresh_150_v2_paper_safe_metric_rollup",
950
+ "load_public_target_fresh_150_v2_post_validation_next_step_gate",
951
+ "load_public_target_fresh_150_v2_p0_p1_clause_repair_projection",
952
+ "load_public_target_fresh_150_v2_p0_p1_mitigation_harness_plan",
953
+ "load_public_target_fresh_150_v2_raw_beats_packet_audit",
954
+ "load_public_target_fresh_150_v2_raw_beats_closure_gate",
955
+ "load_public_target_fresh_150_v2_bounded_original_output_candidate_gate",
956
+ "load_public_target_fresh_150_v2_bounded_phrase_lock_residual_audit",
957
+ "load_public_target_fresh_150_v2_residual_exact_clause_candidate_gate",
958
+ "load_public_target_fresh_150_v2_residual_supported_miss_audit",
959
+ "load_public_target_fresh_150_v2_residual_packet_surface_candidate_gate",
960
+ "load_public_target_fresh_150_v2_residual_prompt_candidate_rejection_gate",
961
+ "load_public_target_fresh_150_v2_residual_coverage_candidate_gate",
962
+ "load_public_target_fresh_150_v2_residual_two_miss_phrase_lock_plan",
963
+ "load_public_target_fresh_150_v2_residual_phrase_lock_v2_candidate_gate",
964
+ "load_public_target_fresh_150_v2_residual_product_repair_gate",
965
+ "load_public_target_fresh_150_v2_residual_original_output_boundary_gate",
966
+ "load_public_target_fresh_150_v2_residual_single_miss_candidate_plan",
967
+ "load_public_target_fresh_150_v2_residual_required_phrase_contract_candidate_gate",
968
+ "load_public_target_fresh_150_v2_residual_strict_phrase_contract_candidate_gate",
969
+ "load_public_target_fresh_150_v2_final_result_package",
970
+ "load_public_target_fresh_150_v2_preprint_draft",
971
+ "load_public_target_fresh_150_v2_preprint_reproducibility_manifest",
972
+ "load_public_target_fresh_150_v2_preprint_claim_trace",
973
+ "load_public_target_fresh_150_v2_preprint_readiness_gate",
974
+ "load_public_target_fresh_150_v2_preprint_manuscript",
975
+ "load_public_target_fresh_150_v2_preprint_handoff_gate",
976
+ "load_public_target_fresh_150_v2_preprint_release_bundle",
977
+ "load_public_target_fresh_150_v2_post_preprint_experiment_gate",
978
+ "load_public_target_fresh_150_v2_raw_beats_triage_v1",
979
+ "load_public_target_fresh_150_v2_report_table",
980
+ "load_public_target_fresh_150_v2_results_section_draft",
981
+ "load_public_target_fresh_150_v2_rerun_readiness_gate",
982
+ "load_public_target_fresh_150_v2_same_split_baseline_refresh_gate",
983
+ "load_research_folder_answer_smoke",
984
+ "load_research_folder_workflow_smoke",
985
+ "load_system_readiness_manifest",
986
+ "resolve_benchmark_case_authoring_protocol_path",
987
+ "resolve_evaluation_methods",
988
+ "resolve_explicit_source_hints",
989
+ "resolve_explicit_source_hints_v2",
990
+ "SOURCE_SCOPED_RETRIEVAL_PROCEDURE",
991
+ "complete_source_scoped_retrieval",
992
+ "SOURCE_SCOPED_RETRIEVAL_PROCEDURE_V2",
993
+ "complete_source_scoped_retrieval_v2",
994
+ "SOURCE_SCOPED_DOMAIN_EXECUTION_PROCEDURE",
995
+ "SOURCE_SCOPED_DOMAIN_OUTPUT_SCHEMA",
996
+ "build_source_scoped_domain_messages",
997
+ "parse_source_scoped_domain_output",
998
+ "PROFILE_SOURCE_SLOT_OUTPUT_SCHEMA",
999
+ "PROFILE_SOURCE_SLOT_PROCEDURE",
1000
+ "build_profile_source_slot_messages",
1001
+ "build_profile_source_slot_or_abstention_messages",
1002
+ "parse_profile_source_slot_output",
1003
+ "resolve_product_answer_repair_mode",
1004
+ "resolve_benchmark_authoring_queue_path",
1005
+ "resolve_benchmark_case_set_quality_path",
1006
+ "resolve_benchmark_datasheet_path",
1007
+ "resolve_benchmark_draft_rows_path",
1008
+ "resolve_benchmark_promotion_readiness_path",
1009
+ "resolve_benchmark_scale_readiness_path",
1010
+ "resolve_benchmark_seed_candidate_context_eval_path",
1011
+ "resolve_benchmark_seed_candidate_failure_analysis_path",
1012
+ "resolve_benchmark_seed_candidate_rows_path",
1013
+ "resolve_benchmark_workflow_status_path",
1014
+ "resolve_out_of_domain_transfer_suite_blueprint_path",
1015
+ "resolve_context_utilization_rollup_path",
1016
+ "resolve_external_baseline_subset_rollup_path",
1017
+ "resolve_first_benchmark_answer_path",
1018
+ "resolve_latency_frontier_rollup_path",
1019
+ "resolve_provider_export_adapter_coverage_path",
1020
+ "resolve_provider_stage_failure_analysis_path",
1021
+ "resolve_public_target_150_accounting_decision_path",
1022
+ "resolve_public_target_150_e2e_answer_utilization_queue_v2_path",
1023
+ "resolve_public_target_150_e2e_evidence_memo_v2_path",
1024
+ "resolve_public_target_150_e2e_next_step_gate_v1_path",
1025
+ "resolve_public_target_150_e2e_status_v2_path",
1026
+ "resolve_public_target_answer_utilization_stop_rule_path",
1027
+ "resolve_public_target_answer_matrix_path",
1028
+ "resolve_public_target_batch03_failure_analysis_path",
1029
+ "resolve_public_target_fresh_150_v2_answer_utilization_iteration_gate_path",
1030
+ "resolve_public_target_fresh_150_v2_answer_utilization_taxonomy_path",
1031
+ "resolve_public_target_fresh_150_v2_bounded_p0_p1_answer_utilization_validation_path",
1032
+ "resolve_public_target_fresh_150_v2_e2e_analysis_memo_path",
1033
+ "resolve_public_target_fresh_150_v2_paper_safe_metric_rollup_path",
1034
+ "resolve_public_target_fresh_150_v2_post_validation_next_step_gate_path",
1035
+ "resolve_public_target_fresh_150_v2_p0_p1_clause_repair_projection_path",
1036
+ "resolve_public_target_fresh_150_v2_p0_p1_mitigation_harness_plan_path",
1037
+ "resolve_public_target_fresh_150_v2_raw_beats_packet_audit_path",
1038
+ "resolve_public_target_fresh_150_v2_raw_beats_closure_gate_path",
1039
+ "resolve_public_target_fresh_150_v2_bounded_original_output_candidate_gate_path",
1040
+ "resolve_public_target_fresh_150_v2_bounded_phrase_lock_residual_audit_path",
1041
+ "resolve_public_target_fresh_150_v2_residual_exact_clause_candidate_gate_path",
1042
+ "resolve_public_target_fresh_150_v2_residual_supported_miss_audit_path",
1043
+ "resolve_public_target_fresh_150_v2_residual_packet_surface_candidate_gate_path",
1044
+ "resolve_public_target_fresh_150_v2_residual_prompt_candidate_rejection_gate_path",
1045
+ "resolve_public_target_fresh_150_v2_residual_coverage_candidate_gate_path",
1046
+ "resolve_public_target_fresh_150_v2_residual_two_miss_phrase_lock_plan_path",
1047
+ "resolve_public_target_fresh_150_v2_residual_phrase_lock_v2_candidate_gate_path",
1048
+ "resolve_public_target_fresh_150_v2_residual_product_repair_gate_path",
1049
+ "resolve_public_target_fresh_150_v2_residual_original_output_boundary_gate_path",
1050
+ "resolve_public_target_fresh_150_v2_residual_single_miss_candidate_plan_path",
1051
+ "resolve_public_target_fresh_150_v2_residual_required_phrase_contract_candidate_gate_path",
1052
+ "resolve_public_target_fresh_150_v2_residual_strict_phrase_contract_candidate_gate_path",
1053
+ "resolve_public_target_fresh_150_v2_final_result_package_path",
1054
+ "resolve_public_target_fresh_150_v2_preprint_draft_path",
1055
+ "resolve_public_target_fresh_150_v2_preprint_reproducibility_manifest_path",
1056
+ "resolve_public_target_fresh_150_v2_preprint_claim_trace_path",
1057
+ "resolve_public_target_fresh_150_v2_preprint_readiness_gate_path",
1058
+ "resolve_public_target_fresh_150_v2_preprint_manuscript_path",
1059
+ "resolve_public_target_fresh_150_v2_preprint_handoff_gate_path",
1060
+ "resolve_public_target_fresh_150_v2_preprint_release_bundle_path",
1061
+ "resolve_public_target_fresh_150_v2_post_preprint_experiment_gate_path",
1062
+ "resolve_public_target_fresh_150_v2_raw_beats_triage_v1_path",
1063
+ "resolve_public_target_fresh_150_v2_report_table_path",
1064
+ "resolve_public_target_fresh_150_v2_results_section_draft_path",
1065
+ "resolve_public_target_fresh_150_v2_rerun_readiness_gate_path",
1066
+ "resolve_public_target_fresh_150_v2_same_split_baseline_refresh_gate_path",
1067
+ "resolve_research_folder_answer_smoke_path",
1068
+ "resolve_research_folder_workflow_smoke_path",
1069
+ "resolve_system_readiness_manifest_path",
1070
+ "verify_answer_eval_provenance",
1071
+ "verify_answer_contract",
1072
+ "verify_answer_obligations",
1073
+ "verify_answer_requirements",
1074
+ "verify_context_program",
1075
+ "verify_context_program_clause",
1076
+ "verify_scientific_obligation_program",
1077
+ "SCIENTIFIC_SCORING_VERSION",
1078
+ "score_answer_level_faithfulness",
1079
+ "score_context_source_coverage",
1080
+ "score_scientific_propositions",
1081
+ "unsupported_scientific_anchors",
1082
+ "verify_context_eval_provenance",
1083
+ "verify_structured_answer",
1084
+ "normalize_state_facts",
1085
+ "normalize_state_facts_with_audit",
1086
+ "resolve_state_facts",
1087
+ ]