A small, public demonstration checkpoint for the CarbonConsole support
assistant. This is a sample artifact intended for tutorials and quickstart
testing — it is not a production model and contains no proprietary data.
1from pathlib import Path
2
3# Load the packed weights blob shipped with this repo.
4weights = Path("carbonconsole.model").read_bytes()
5print(f"loaded {len(weights)} bytes")
This public checkpoint ships with placeholder weights so you can validate your
download/serving pipeline end to end. Swap in your own fine-tune for real
inference.
Weights here are exported from our internal training pipeline; the production
fine-tune is tracked separately and not included in this demo bundle.