Reproduce the Conformance Report
From a source checkout
python -m pip install -e .
llm-shield-proxy benchmark \
--iterations 10000 \
--json-out CONFORMANCE_LATEST.json
The runner performs no public-model call and writes no test PII into the report. Set the exact revision explicitly when running outside GitHub Actions:
LLM_SHIELD_SOURCE_REVISION=$(git rev-parse HEAD) \
llm-shield-proxy benchmark --iterations 10000 --json-out CONFORMANCE_LATEST.json
On PowerShell:
$env:LLM_SHIELD_SOURCE_REVISION = git rev-parse HEAD
py -m llm_shield_proxy.cli benchmark --iterations 10000 --json-out CONFORMANCE_LATEST.json
Verify the artifact
Confirm that:
schemaends in/v1.0.0;source_revisionequals the revision tested;- all seven
checksare present and pass; - protected vector values are absent;
- timing scope excludes components not exercised;
- memory scope distinguishes Python allocations from process RSS.
Use benchmarks/REPORTING.md for a production-shaped comparison. Publish unsuccessful runs and deviations alongside successful results.
Contribute an independent reproduction
Open a GitHub Discussion or pull request containing the unmodified JSON artifact, host/runtime description, command, and a statement of affiliation or conflict of interest. Independent artifacts will be listed separately from project-maintainer results.