Summary
groq-provider.spec.ts and mistral-provider.spec.ts carry @stable, run in the daily shard, and skip on every run — they have skipped continuously since PR #917 landed the availability gate. The Groq and MistralAI components are not present in langflowai/langflow-nightly:latest, and per a product decision they will stay out of the image (still supported, but shipped as an installable bundle rather than bundled by default).
Four QA-CHECKLIST.md bullets count these two specs as validated [x], so the Coverage Summary and the generated Phase 0 — Validated block both credit coverage that never executes a single assertion.
Separately, the cause recorded in our code and issues is wrong for the current nightly — it is not a missing langchain-* package.
Measured on 1.12.0.dev8 (image built 2026-07-28T01:37, freshest digest)
- Installed
langchain-groq into the container and restarted → groq still absent from GET /api/v1/all. The langchain package is not the gate.
lfx/components/groq/__init__.py is now a deprecation shim:
"Compatibility shim: lfx.components.groq moved to lfx-bundles. […] This module re-points to the installed bundle distribution. It contains no component implementations […] and is removed once the deprecation window closes (M4)."
- The image installs ~20 per-vendor distributions —
lfx_openai, lfx_anthropic, lfx_google, lfx_ollama, lfx_amazon, lfx_azure, lfx_cohere, lfx_ibm, lfx_datastax, lfx_vllm, lfx_openai_compatible, … There is no lfx_groq and no lfx_mistral.
lfx-groq / lfx-mistral do not exist in the package registry. lfx-bundles==1.1.5 does.
- Installing
lfx-bundles + restart restores them: catalog goes from 3,077,041 bytes / 37 categories to 4,313,696 bytes / 104 categories, with groq and mistral present. (Reverted afterwards — the container is back to the exact baseline byte size with both packages MISSING.)
Ollama is present on dev8 because lfx_ollama ships in the image, not because langchain-ollama returned.
Why not restore coverage with a bundle lane
uv pip install lfx-bundles + restart is cheap, but it cannot run in the default lane: it adds 67 component categories, changing the sidebar contents for every other spec, so the suite would stop validating the surface the shipped image actually delivers. It would need an isolated job with its own service container running only bundle-dependent specs — one extra daily job, an extra image matrix to maintain, for two provider specs.
Not worth it at this ratio. Demote instead, and keep the availability gate so the specs still work for anyone running against an image that has the bundles.
Scope
Non-goals
Notes
The lfx-bundles migration itself has a much wider blast radius than these two specs — ~75 component families are now shims scheduled for removal at M4. Tracked separately.
Summary
groq-provider.spec.tsandmistral-provider.spec.tscarry@stable, run in the daily shard, and skip on every run — they have skipped continuously since PR #917 landed the availability gate. The Groq and MistralAI components are not present inlangflowai/langflow-nightly:latest, and per a product decision they will stay out of the image (still supported, but shipped as an installable bundle rather than bundled by default).Four
QA-CHECKLIST.mdbullets count these two specs as validated[x], so the Coverage Summary and the generatedPhase 0 — Validatedblock both credit coverage that never executes a single assertion.Separately, the cause recorded in our code and issues is wrong for the current nightly — it is not a missing
langchain-*package.Measured on
1.12.0.dev8(image built 2026-07-28T01:37, freshest digest)langchain-groqinto the container and restarted → groq still absent fromGET /api/v1/all. The langchain package is not the gate.lfx/components/groq/__init__.pyis now a deprecation shim:lfx_openai,lfx_anthropic,lfx_google,lfx_ollama,lfx_amazon,lfx_azure,lfx_cohere,lfx_ibm,lfx_datastax,lfx_vllm,lfx_openai_compatible, … There is nolfx_groqand nolfx_mistral.lfx-groq/lfx-mistraldo not exist in the package registry.lfx-bundles==1.1.5does.lfx-bundles+ restart restores them: catalog goes from 3,077,041 bytes / 37 categories to 4,313,696 bytes / 104 categories, withgroqandmistralpresent. (Reverted afterwards — the container is back to the exact baseline byte size with both packagesMISSING.)Ollama is present on dev8 because
lfx_ollamaships in the image, not becauselangchain-ollamareturned.Why not restore coverage with a bundle lane
uv pip install lfx-bundles+ restart is cheap, but it cannot run in the default lane: it adds 67 component categories, changing the sidebar contents for every other spec, so the suite would stop validating the surface the shipped image actually delivers. It would need an isolated job with its own service container running only bundle-dependent specs — one extra daily job, an extra image matrix to maintain, for two provider specs.Not worth it at this ratio. Demote instead, and keep the availability gate so the specs still work for anyone running against an image that has the bundles.
Scope
@stablefromgroq-provider.spec.tsandmistral-provider.spec.ts(a spec that always skips cannot carry the tag). Keep theisProviderComponentAvailablegate.QA-CHECKLIST.mdbullets from[x]to[~]— lines 421-422 and 1062-1063 — and state the reason indocs/core-functionality/model-provider/groq-provider.mdandmistral-provider.md: not packaged in the tested image; requireslfx-bundles.tests/helpers/provider-setup/probe-component-available.ts(its header comment blames a missinglangchain-*runtime package) and in both specs' skip messages, which citelangchain-mistralai missing (#907, LE-1987).REGRESSIONS.mdrow for LE-1987: the "missinglangchain-*extras" mechanism described there was accurate for1.12.0.dev3, but the current mechanism is the bundle split. Do not remove the row — the regression it records (silent hide with no message) was real and is fixed.inactivereason becomes "provider bundle not installed", not "model class cannot build". Without that split, Harden collect-models: build-probe a provider's model class, not just the raw API key #900's "fail loudly" requirement would make the daily permanently red for Groq/Mistral.Non-goals
lfx-bundles.Notes
The
lfx-bundlesmigration itself has a much wider blast radius than these two specs — ~75 component families are now shims scheduled for removal at M4. Tracked separately.