Find file in tenseleyflow/sway@76fc010e98be5db50cc834abdd18ba170ebe3914
- .github/workflows/ci.yml
- .gitignore
- CHANGELOG.md
- LICENSE
- README.md
- examples/pytest_integration/sway.yaml
- examples/pytest_integration/test_sway_gate.py
- pyproject.toml
- src/dlm_sway/__init__.py
- src/dlm_sway/backends/__init__.py
- src/dlm_sway/backends/_instrumentation.py
- src/dlm_sway/backends/api.py
- src/dlm_sway/backends/dummy.py
- src/dlm_sway/backends/hf.py
- src/dlm_sway/backends/mlx.py
- src/dlm_sway/backends/two_model.py
- src/dlm_sway/cli/__init__.py
- src/dlm_sway/cli/app.py
- src/dlm_sway/cli/commands.py
- src/dlm_sway/core/__init__.py
- src/dlm_sway/core/determinism.py
- src/dlm_sway/core/errors.py
- src/dlm_sway/core/model.py
- src/dlm_sway/core/result.py
- src/dlm_sway/core/scoring.py
- src/dlm_sway/core/sections.py
- src/dlm_sway/core/stats.py
- src/dlm_sway/integrations/__init__.py
- src/dlm_sway/integrations/dlm/__init__.py
- src/dlm_sway/integrations/dlm/autogen.py
- src/dlm_sway/integrations/dlm/resolver.py
- src/dlm_sway/mining/__init__.py
- src/dlm_sway/mining/outlier_miner.py
- src/dlm_sway/mining/paraphrase_miner.py
- src/dlm_sway/probes/__init__.py
- src/dlm_sway/probes/_calibration_pack.py
- src/dlm_sway/probes/_corpora/public_domain_en.txt
- src/dlm_sway/probes/_divergence.py
- src/dlm_sway/probes/_external_corpus.py
- src/dlm_sway/probes/_null_cache.py
- src/dlm_sway/probes/_null_proxy.py
- src/dlm_sway/probes/_zscore.py
- src/dlm_sway/probes/adapter_ablation.py
- src/dlm_sway/probes/adapter_revert.py
- src/dlm_sway/probes/base.py
- src/dlm_sway/probes/calibration_drift.py
- src/dlm_sway/probes/cluster_kl.py
- src/dlm_sway/probes/delta_kl.py
- src/dlm_sway/probes/external_perplexity.py
- src/dlm_sway/probes/leakage.py
- src/dlm_sway/probes/null_adapter.py
- src/dlm_sway/probes/paraphrase_invariance.py
- src/dlm_sway/probes/preference_flip.py
- src/dlm_sway/probes/prompt_collapse.py
- src/dlm_sway/probes/section_internalization.py
- src/dlm_sway/probes/style_fingerprint.py
- src/dlm_sway/py.typed
- src/dlm_sway/pytest_plugin.py
- src/dlm_sway/suite/__init__.py
- src/dlm_sway/suite/compare.py
- src/dlm_sway/suite/loader.py
- src/dlm_sway/suite/report.py
- src/dlm_sway/suite/report_html.py
- src/dlm_sway/suite/runner.py
- src/dlm_sway/suite/score.py
- src/dlm_sway/suite/spec.py
- src/dlm_sway/suite/trace_analysis.py
- src/dlm_sway/visualize.py
- tests/__init__.py
- tests/conftest.py
- tests/fixtures/__init__.py
- tests/fixtures/build_mlx_adapter.py
- tests/fixtures/sway-history/01-2026-01-15.json
- tests/fixtures/sway-history/02-2026-01-22.json
- tests/fixtures/sway-history/03-2026-01-29.json
- tests/fixtures/tiny_model.py
- tests/fixtures/trace_sample.jsonl
- tests/integration/__init__.py
- tests/integration/conftest.py
- tests/integration/test_api_ollama.py
- tests/integration/test_cluster_kl_e2e.py
- tests/integration/test_external_perplexity_e2e.py
- tests/integration/test_hf_adapter_toggle.py
- tests/integration/test_hf_multi_rank_null.py
- tests/integration/test_hf_null_adapter.py
- tests/integration/test_hf_scaled_adapter.py
- tests/integration/test_hf_scoring.py
- tests/integration/test_mlx_smoke.py
- tests/integration/test_nan_adapter_regression.py
- tests/integration/test_sway_gate_exit_code.py
- tests/snapshots/compare.md
- tests/snapshots/report.html
- tests/snapshots/report.json
- tests/snapshots/report.junit.xml
- tests/snapshots/report.md
- tests/unit/__init__.py
- tests/unit/test_autogen_quality.py
- tests/unit/test_backend_api.py
- tests/unit/test_backend_dummy.py
- tests/unit/test_backend_hf_helpers.py
- tests/unit/test_backend_instrumentation.py
- tests/unit/test_backend_registry.py
- tests/unit/test_bootstrap_ci_narrowing.py
- tests/unit/test_cli.py
- tests/unit/test_cli_compare.py
- tests/unit/test_cli_mine.py
- tests/unit/test_cli_report_html.py
- tests/unit/test_cluster_kl_prove_value.py
- tests/unit/test_compare.py
- tests/unit/test_compare_prove_value.py
- tests/unit/test_cross_process_determinism.py
- tests/unit/test_cross_verdict_consistency.py
- tests/unit/test_determinism.py
- tests/unit/test_divergence.py
- tests/unit/test_dlm_bridge.py
- tests/unit/test_dlm_not_imported.py
- tests/unit/test_errors.py
- tests/unit/test_ext_ppl_vs_calibration_drift.py
- tests/unit/test_model.py
- tests/unit/test_no_dead_options.py
- tests/unit/test_null_cache.py
- tests/unit/test_null_calibration.py
- tests/unit/test_null_multi_rank.py
- tests/unit/test_outlier_miner.py
- tests/unit/test_paraphrase_miner.py
- tests/unit/test_paraphrase_miner_prove_value.py
- tests/unit/test_preflight_check.py
- tests/unit/test_probe_adapter_ablation.py
- tests/unit/test_probe_adapter_revert.py
- tests/unit/test_probe_base.py
- tests/unit/test_probe_calibration_drift.py
- tests/unit/test_probe_cluster_kl.py
- tests/unit/test_probe_delta_kl.py
- tests/unit/test_probe_external_perplexity.py
- tests/unit/test_probe_leakage.py
- tests/unit/test_probe_paraphrase_invariance.py
- tests/unit/test_probe_preference_flip.py
- tests/unit/test_probe_prompt_collapse.py
- tests/unit/test_probe_section_internalization.py
- tests/unit/test_probe_style_fingerprint.py
- tests/unit/test_pytest_plugin.py
- tests/unit/test_report_extras_rollup.py
- tests/unit/test_report_formatters.py
- tests/unit/test_report_html.py
- tests/unit/test_report_html_offline.py
- tests/unit/test_report_snapshot.py
- tests/unit/test_result.py
- tests/unit/test_runner_backend_stats.py
- tests/unit/test_safe_finalize.py
- tests/unit/test_score_weights_override.py
- tests/unit/test_scoring.py
- tests/unit/test_sections.py
- tests/unit/test_stats.py
- tests/unit/test_style_fingerprint_extended.py
- tests/unit/test_suite_runner.py
- tests/unit/test_suite_score_report.py
- tests/unit/test_suite_spec.py
- tests/unit/test_trace_analysis.py
- tests/unit/test_two_model_differential.py
- tests/unit/test_visualize.py
- tests/unit/test_zscore_helpers.py
- tests/unit/test_zscore_threading.py