Covers the new sniff + JSONL adapter end-to-end:
- from_bytes_dispatches_to_jsonl_on_brace: feeds an in-memory copy
of the exact bytes shipped at ruvnet/wifi-densepose-pretrained
(model.rvf.jsonl, v1.0.0) through the public API and asserts the
synthesised manifest exposes the real model id and version.
- jsonl_sniff_tolerates_leading_whitespace: padding with \n \t still
dispatches to JSONL.
- jsonl_quantization_becomes_quant_segment: the quantization line
surfaces verbatim through quant_info().
- jsonl_preserves_other_lines_in_metadata: encoder, lora, ewc, and
metadata lines all round-trip through metadata()["lines"].
- jsonl_no_weights_segment_present: weights() returns None - the
JSONL bundle does not carry f32 weights, by design.
- jsonl_progressive_loader_layer_a_works: covers the integration
point that previously broke - ProgressiveLoader::new + load_layer_a
now reports the real model name on JSONL input.
- jsonl_invalid_json_line_is_explicit / jsonl_missing_type_field /
jsonl_blank_lines_only: every error path produces a "JSONL RVF"
prefix and identifies the offending line, so failures surface to
operators instead of degrading to null output.
- jsonl_minimal_metadata_only: a single-line bundle still parses.
- binary_error_mentions_jsonl_hint: corrupt binary input now points
at the JSONL format in its error text.