.env.example
.gitignore
.pre-commit-config.yaml
.release-please-manifest.json
CHANGELOG.md
CITATION.cff
CONTRIBUTING.md
LICENSE
MANIFEST.in
Makefile
NOTICE
README.md
constraints-dev.txt
mkdocs.yml
pyproject.toml
release-please-config.json
.github/ISSUE_TEMPLATE/bug-report.yml
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/feature-request.yml
.github/workflows/ci.yml
.github/workflows/docs.yml
.github/workflows/issue-labels.yml
.github/workflows/pr-title.yml
.github/workflows/release.yml
config/engine-attestation.example.json
config/engine-launch.example.json
config/fleet.example.json
config/hosts.example.json
deploy/ha/haproxy.cfg
docs/CLI-Reference.md
docs/Command-Results.md
docs/Config-Inspection.md
docs/Configuration.md
docs/Core-Concepts.md
docs/Deploy.md
docs/Dev-Runtime.md
docs/Diagnostic-Bundles.md
docs/HTTP-API.md
docs/Install-from-PyPI.md
docs/Measure.md
docs/Observability.md
docs/Operate.md
docs/Telemetry-and-Artifacts.md
docs/Troubleshoot.md
docs/index.md
docs/assets/infographic.png
docs/assets/narwhal.png
docs/assets/social-preview.png
docs/assets/architectures/aggregated.svg
docs/assets/architectures/coldswap.svg
docs/assets/architectures/hotswap.svg
docs/assets/architectures/static.svg
docs/cli/Attest.md
docs/cli/Check.md
docs/cli/Dev.md
docs/cli/Engine.md
docs/cli/Profile.md
docs/cli/Serve.md
docs/concepts/01-Request-and-Topology.md
docs/concepts/02-Role-Control.md
docs/concepts/03-Failure-and-State.md
docs/configuration/01-Fleet-Schema.md
docs/configuration/02-Serving-and-Role-Control.md
docs/configuration/03-Recovery-and-Validation.md
docs/configuration/04-Deployment-Inputs.md
docs/configuration/05-Engine-Launch.md
docs/configuration/06-Fabric-and-Operations.md
docs/deploy/01-Discover.md
docs/deploy/02-Install.md
docs/deploy/03-Validate-Engines.md
docs/deploy/04-Qualify-Fabric.md
docs/deploy/05-Attest.md
docs/deploy/06-Profile-and-Preflight.md
docs/deploy/07-Serve-and-Measure.md
docs/dev/CUDA-Runtime.md
docs/dev/RTX-5090-Reference.md
docs/http-api/01-Requests.md
docs/http-api/02-Admission-and-Responses.md
docs/http-api/03-Backend-and-Failures.md
docs/http-api/04-Inspection.md
docs/http-api/05-Live-State.md
docs/http-api/06-SLO-and-Demand.md
docs/http-api/07-Handoff-and-Lifecycle.md
docs/measure/01-Profile.md
docs/measure/02-Targets-and-Freeze.md
docs/measure/03-Load-Trial.md
docs/measure/04-Reconcile-and-Accept.md
docs/measure/05-Benchmark-Runner.md
docs/measure/06-Benchmark-Evidence.md
docs/measure/07-GPU-Qualification.md
docs/observability/01-Start-and-Verify.md
docs/observability/02-Access.md
docs/observability/03-Telemetry-and-Recovery.md
docs/observability/04-WSL2.md
docs/operate/01-Start-Routers.md
docs/operate/02-Monitor.md
docs/operate/03-Restart-Engines.md
docs/operate/04-Upgrade-and-Validate.md
docs/stylesheets/extra.css
docs/telemetry/01-Journal.md
docs/telemetry/02-Profiles.md
docs/telemetry/03-Metrics-and-Control.md
docs/telemetry/04-Failures.md
docs/telemetry/05-Compatibility.md
docs/troubleshoot/01-Engine-Recovery.md
docs/troubleshoot/02-Router-Recovery.md
src/narwhal/__init__.py
src/narwhal/cli.py
src/narwhal/cli_errors.py
src/narwhal/cli_support.py
src/narwhal/command_results.py
src/narwhal/contracts.py
src/narwhal/fleet.example.json
src/narwhal/provenance.py
src/narwhal/py.typed
src/narwhal/types.py
src/narwhal/config/__init__.py
src/narwhal/config/cli.py
src/narwhal/config/environment.py
src/narwhal/config/inspection.py
src/narwhal/config/loading.py
src/narwhal/config/model.py
src/narwhal/config/serialization.py
src/narwhal/config/validation.py
src/narwhal/deployment/__init__.py
src/narwhal/deployment/attestation_contract.py
src/narwhal/deployment/cache_capture_hook.py
src/narwhal/deployment/engine_launch.py
src/narwhal/deployment/launch_engine.py
src/narwhal/deployment/native_engine.py
src/narwhal/deployment/stage_worker.py
src/narwhal/deployment/stages.py
src/narwhal/dev/__init__.py
src/narwhal/dev/cli.py
src/narwhal/dev/lifecycle.py
src/narwhal/dev/reference-v1.json
src/narwhal/dev/small-cuda-v1.json
src/narwhal/dev/template.py
src/narwhal/diagnostics/__init__.py
src/narwhal/diagnostics/bundle.py
src/narwhal/diagnostics/check.py
src/narwhal/engines/__init__.py
src/narwhal/engines/attestation.py
src/narwhal/engines/client.py
src/narwhal/engines/connector.py
src/narwhal/engines/dialect.py
src/narwhal/engines/stream.py
src/narwhal/engines/validation.py
src/narwhal/observability/__init__.py
src/narwhal/observability/journal.py
src/narwhal/observability/metrics.py
src/narwhal/profiling/__init__.py
src/narwhal/profiling/fitting.py
src/narwhal/profiling/generation.py
src/narwhal/profiling/model.py
src/narwhal/profiling/probe.py
src/narwhal/profiling/store.py
src/narwhal/runtime/__init__.py
src/narwhal/runtime/lease.py
src/narwhal/runtime/lifecycle.py
src/narwhal/runtime/listeners.py
src/narwhal/runtime/monitoring.py
src/narwhal/runtime/standby.py
src/narwhal/runtime/state.py
src/narwhal/scheduling/__init__.py
src/narwhal/scheduling/availability.py
src/narwhal/scheduling/consolidation.py
src/narwhal/scheduling/control.py
src/narwhal/scheduling/controller.py
src/narwhal/scheduling/costs.py
src/narwhal/scheduling/demand.py
src/narwhal/scheduling/health.py
src/narwhal/scheduling/monitor.py
src/narwhal/scheduling/outcomes.py
src/narwhal/scheduling/reactive.py
src/narwhal/scheduling/scheduler.py
src/narwhal/scheduling/scoring.py
src/narwhal/scheduling/window.py
src/narwhal/serving/__init__.py
src/narwhal/serving/admission.py
src/narwhal/serving/app.py
src/narwhal/serving/completion.py
src/narwhal/serving/dispatch.py
src/narwhal/serving/execution.py
src/narwhal/serving/ingress.py
src/narwhal/serving/lifecycle.py
src/narwhal/serving/policy.py
src/narwhal/serving/records.py
src/narwhal/serving/response.py
src/narwhal/serving/retry.py
src/narwhal/serving/router.py
src/narwhal/serving/schemas.py
src/narwhal_inference.egg-info/PKG-INFO
src/narwhal_inference.egg-info/SOURCES.txt
src/narwhal_inference.egg-info/dependency_links.txt
src/narwhal_inference.egg-info/entry_points.txt
src/narwhal_inference.egg-info/requires.txt
src/narwhal_inference.egg-info/top_level.txt
tests/__init__.py
tests/fixtures.py
tests/test_cli_failures.py
tests/core/__init__.py
tests/core/test_cli_reference.py
tests/core/test_command_results.py
tests/core/test_config.py
tests/core/test_config_cli.py
tests/core/test_contracts.py
tests/data/fleet.json
tests/deployment/__init__.py
tests/deployment/fixtures.py
tests/deployment/interruption_harness.py
tests/deployment/test_attestation_contract.py
tests/deployment/test_cache_registration.py
tests/deployment/test_cache_sizing.py
tests/deployment/test_checkpoint_manifest.py
tests/deployment/test_container_allowance.py
tests/deployment/test_deploy_hosts.py
tests/deployment/test_deploy_http_probe.py
tests/deployment/test_dev.py
tests/deployment/test_diagnostic_bundle.py
tests/deployment/test_discover_deployment.py
tests/deployment/test_engine_launch.py
tests/deployment/test_fabric_budget.py
tests/deployment/test_interruption.py
tests/deployment/test_launch_engine.py
tests/deployment/test_native_engine.py
tests/deployment/test_prepare_host_env.py
tests/deployment/test_runtime_check_cli.py
tests/deployment/test_source_bundle.py
tests/deployment/test_stage_cli_failures.py
tests/deployment/test_stages.py
tests/deployment/test_tokenizer_check.py
tests/engines/__init__.py
tests/engines/test_attestation.py
tests/engines/test_connector.py
tests/engines/test_engine_probes.py
tests/engines/test_engine_timeouts.py
tests/engines/test_stream_validation.py
tests/maintenance/__init__.py
tests/maintenance/test_cli_identity.py
tests/maintenance/test_documentation_contracts.py
tests/maintenance/test_release_metadata.py
tests/measurement/__init__.py
tests/measurement/test_benchmark_evidence.py
tests/measurement/test_benchmark_runner.py
tests/measurement/test_dev_cycle.py
tests/measurement/test_load_trial.py
tests/observability/__init__.py
tests/observability/test_observability_artifacts.py
tests/observability/test_observability_start.py
tests/observability/test_observability_targets.py
tests/observability/test_public_namespace.py
tests/profiling/__init__.py
tests/profiling/test_profile_fitting.py
tests/profiling/test_profile_generation.py
tests/profiling/test_profile_probe.py
tests/profiling/test_profile_store.py
tests/runtime/__init__.py
tests/runtime/test_lease.py
tests/runtime/test_lifecycle_api.py
tests/runtime/test_lifecycle_validation.py
tests/runtime/test_listeners.py
tests/runtime/test_monitoring.py
tests/runtime/test_persistence.py
tests/runtime/test_standby_shutdown.py
tests/scheduling/__init__.py
tests/scheduling/test_health.py
tests/scheduling/test_operator_cli.py
tests/scheduling/test_preflight.py
tests/scheduling/test_reactive.py
tests/scheduling/test_validation_pairs.py
tests/serving/__init__.py
tests/serving/test_admission.py
tests/serving/test_chat_completions.py
tests/serving/test_cli_bind.py
tests/serving/test_failover_controls.py
tests/serving/test_http_accounting.py
tests/serving/test_retry.py
tests/serving/test_router_verification.py
tools/deployment/__init__.py
tools/deployment/attestation_contract.py
tools/deployment/cache_capture_hook.py
tools/deployment/checkpoint_manifest.py
tools/deployment/deploy_hosts.py
tools/deployment/discover_deployment.py
tools/deployment/engine_launch.py
tools/deployment/fabric_budget.py
tools/deployment/host_access.py
tools/deployment/launch_engine.py
tools/deployment/prepare_host_env.py
tools/maintenance/__init__.py
tools/maintenance/check_installed.py
tools/maintenance/check_links.py
tools/maintenance/check_publication.py
tools/maintenance/release.py
tools/maintenance/run_coverage.py
tools/measurement/__init__.py
tools/measurement/benchmark_evidence.py
tools/measurement/benchmark_runner.py
tools/measurement/dev_cycle.py
tools/measurement/load_trial.py
tools/observability/README.md
tools/observability/artifacts.py
tools/observability/compose.yml
tools/observability/grafana-narwhal.json
tools/observability/make_targets.py
tools/observability/prometheus-alerts.yml
tools/observability/prometheus.yml
tools/observability/start.py
tools/observability/grafana/provisioning/dashboards/narwhal.yml
tools/observability/grafana/provisioning/datasources/prometheus.yml