Local, cross-provider preflight checks for an LLM model switch
Project description
LLM Preflight
Know whether a model change is safe before it reaches production. LLM Preflight runs a small local preflight across providers and compares validated output, response speed, tokens, and estimated cost.
It is a local preflight tool—not a hosted evaluation platform, tracing system, RAG framework, or public leaderboard. Its results are evidence for your account, network, prompts, and validation rules.
Formerly LLM Speed Bench. The primary command is llm-preflight;
llm-bench remains a supported compatibility command. See the
migration guide.
[!WARNING] Live benchmarks make paid API requests. Start with the no-key demo, preview the plan before a live run, and keep limits and repetitions small.
Try it in 60 seconds
Create and run a deterministic local benchmark—no API key or network request:
llm-preflight --init
llm-preflight benchmark.json --no-save
From a source checkout:
python3 -m llm_bench.cli --init
python3 -m llm_bench.cli benchmark.json --no-save
--init never overwrites an existing config. It creates a mock benchmark so
you can see the report and exit behavior before making a paid request.
Use it when
- You are switching models or providers.
- A provider publishes a new model or changes a
latestalias. - You need to compare your own prompt's validity, latency, and cost.
- You want local result artifacts instead of a hosted dashboard.
It measures deterministic test validity, end-to-end latency (p50/p95), time to first token, throughput when usage is available, token totals, and estimated cost. Result files retain request metadata and per-request observations for reproducibility.
First live run
Python 3.10+ is required; there are no runtime dependencies.
cp benchmark.example.json benchmark.json
cp .env.example .env.production
# Edit benchmark.json and add only the provider keys you use.
python3 -m llm_bench.cli benchmark.json --dry-run
python3 -m llm_bench.cli benchmark.json
The CLI reads .env.production beside the config without overriding environment
variables already set by your shell. Use --no-env-file or --env-file PATH
when needed. Runs print a terminal report and, unless --no-save is used,
write JSON and Markdown results under results/.
Install the command globally in a virtual environment if preferred:
python3 -m pip install llm-preflight
llm-preflight --init
Run --doctor and --dry-run before the final command. They make no generation
requests; the final command is the paid work.
Change a model safely
This is the core workflow. Put your approved model and candidate model in one config, then run the small response-and-contract preflight:
llm-preflight benchmark.json --migration-check --dry-run
llm-preflight benchmark.json --migration-check
It sends three short representative cases to each selected model, once each. It answers: did the API work, did each response meet the basic contract, and how quickly did the provider start and finish responding? It is a cheap compatibility check, not a statistical performance conclusion.
When that passes, run the task-specific checks that match your application—for
example exact-routing-check or structured-output-check—before approving a
switch.
Use custom contract tests to express the outputs your
own feature must preserve.
Choose your path
I am new and want to see the tool safely. Start with the Getting started guide. It uses a no-key local mock before any provider request.
I know the current and candidate model IDs. Edit one config, run the migration check, then add a custom contract test for the output your feature must preserve. You do not need the catalogue.
I want to find and review provider releases. Use the local catalogue lifecycle below. It keeps broad provider metadata separate from the small set of models you approve for ongoing testing.
llm-preflight catalog init
llm-preflight catalog refresh benchmarks/watch.json
# If a model is shown as “Needs one probe”, review and confirm a minimal request:
llm-preflight catalog probe benchmarks/watch.json
llm-preflight catalog prepare benchmarks/watch.json \
--against benchmarks/approved.json --output benchmarks/candidates.json
llm-preflight benchmarks/candidates.json --interactive \
--approve-to benchmarks/approved.json
Refresh reads metadata only. A probe sends one minimal request only for text candidates you select and confirm. The interactive benchmark then lets you approve passing models explicitly. Follow the complete catalogue tutorial for the decision points.
I am automating an established contract. Use
CI and JSON output, with a saved baseline and --ci where a
regression should fail the pipeline.
Useful commands once you know your path
# Inspect configuration, credentials, and model selection without generation.
llm-preflight benchmark.json --doctor
llm-preflight benchmark.json --dry-run
llm-preflight benchmark.json --pricing-check
# Run a reduced live benchmark.
llm-preflight benchmark.json --smoke
# Run a single ad hoc prompt.
llm-preflight --quick "Return only valid JSON with a status field." \
--models openai:gpt-5.4-mini
For advanced discovery, interactive runs, CI, baselines, replay, and stop modes, see workflows. For models, environment files, custom prompts, and provider-specific options, see configuration.
What makes a comparison useful
- Keep prompts, system instructions, temperature, and output limits fixed.
- Validate outputs: a fast malformed response is a failed result.
- Run from the same host; network distance and provider load affect latency.
- Treat single-user latency and load testing as separate experiments.
- Prefer dated model IDs over moving aliases.
The CLI distinguishes API FAIL (transport, credentials, provider, or request
failure) from API OK / TEST FAIL (a response that fails your validator).
Recommendations only consider models that pass every selected test.
Documentation
- Getting started — safe demo, first paid run, and choosing the right workflow.
- Workflows — discovery, smoke mode, CI, replay, matrix, baselines, and request safety.
- Configuration — providers, custom prompts, presets, aliases, and environment overlays.
- Custom contract tests — copyable JSON extraction, exact-routing, and content-rule migration tests.
- CLI reference — every command-line option, default, and incompatibility.
- Interactive mode — selection, paid-run preview, and live progress.
- CI and JSON output — machine-readable output and exit-code gates.
- Result JSON schema — fields for integrations and saved benchmark evidence.
- Model watch and approval — discover, compare, and deliberately promote, re-test, and retire provider models.
- Troubleshooting — installation, credentials, catalogue, and benchmark-result recovery.
- Tests, pricing, and safety — built-in tests, validators, pricing confidence, retries, and sensitive data.
- Contributing — development setup and the TDD workflow.
- Security — reporting vulnerabilities.
Contributing and license
Contributions are welcome; see CONTRIBUTING.md. Released under the MIT License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llm_preflight-2.0.0.tar.gz.
File metadata
- Download URL: llm_preflight-2.0.0.tar.gz
- Upload date:
- Size: 60.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef7333d192bdbcf16d9fec2a9a125601020bd976cc9e7b5c9368952b768a5b37
|
|
| MD5 |
f1a7670bae5594ccf0741f4f0f304577
|
|
| BLAKE2b-256 |
f301fbb2f523f814ba0c433738a6ab5aa2088bfa043ba533d67f9370e480749a
|
Provenance
The following attestation bundles were made for llm_preflight-2.0.0.tar.gz:
Publisher:
release.yml on feronovak/llm-preflight
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
llm_preflight-2.0.0.tar.gz -
Subject digest:
ef7333d192bdbcf16d9fec2a9a125601020bd976cc9e7b5c9368952b768a5b37 - Sigstore transparency entry: 2186767661
- Sigstore integration time:
-
Permalink:
feronovak/llm-preflight@d371a7c86dab8822020a1d35800133bd39247c37 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/feronovak
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d371a7c86dab8822020a1d35800133bd39247c37 -
Trigger Event:
release
-
Statement type:
File details
Details for the file llm_preflight-2.0.0-py3-none-any.whl.
File metadata
- Download URL: llm_preflight-2.0.0-py3-none-any.whl
- Upload date:
- Size: 57.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06e00aeae02ee1621340988bf0f1ce2ca77086a5d2a48a83215296f3a8c0c362
|
|
| MD5 |
695aa2658dc89fdd561d6d64362270ec
|
|
| BLAKE2b-256 |
7892de6cac8582bed24869a063a6664c52c25f7868196f87b5897f8c32ca122a
|
Provenance
The following attestation bundles were made for llm_preflight-2.0.0-py3-none-any.whl:
Publisher:
release.yml on feronovak/llm-preflight
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
llm_preflight-2.0.0-py3-none-any.whl -
Subject digest:
06e00aeae02ee1621340988bf0f1ce2ca77086a5d2a48a83215296f3a8c0c362 - Sigstore transparency entry: 2186767695
- Sigstore integration time:
-
Permalink:
feronovak/llm-preflight@d371a7c86dab8822020a1d35800133bd39247c37 -
Branch / Tag:
refs/tags/v2.0.0 - Owner: https://github.com/feronovak
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d371a7c86dab8822020a1d35800133bd39247c37 -
Trigger Event:
release
-
Statement type: