Summary
The golden test case at testdata/cases/vision-language/ministral-3-3b.yaml references the gated HuggingFace model mistralai/Ministral-3-3B-Instruct-2512. Without an HF auth token, the test cannot run — making it unusable in CI.
Problem
- The model is gated (requires HuggingFace authentication)
- CI does not have HF auth tokens configured
- The golden test provides no value without the ability to download and run the model
Proposed Solution
- Generate the reference JSON data (expected model outputs) using an authenticated HF account
- Commit the reference JSON alongside the YAML test case in
testdata/cases/vision-language/
- This allows the golden test to run in CI without needing HF authentication (compares against pre-computed reference, not live model)
This follows the pattern used by other golden test cases in the repo.
Additional Context
Summary
The golden test case at
testdata/cases/vision-language/ministral-3-3b.yamlreferences the gated HuggingFace modelmistralai/Ministral-3-3B-Instruct-2512. Without an HF auth token, the test cannot run — making it unusable in CI.Problem
Proposed Solution
testdata/cases/vision-language/This follows the pattern used by other golden test cases in the repo.
Additional Context
test_vision_features_parityintegration test also requires HF access — could benefit from the same reference JSON approach