| # Bloom private bundle |
|
|
| This repo contains a single offline bundle: |
| - bloom_bundle.tar |
| - bloom_bundle.tar.sha256 |
|
|
| ## Download + verify |
| 1) Download both files |
| 2) Verify sha256 |
| 3) Extract tar |
|
|
| ## Extraction output |
| The tar contains: bloom_bundle/... |
| |
| You will run the server using the extracted folder paths (no internet needed after download). |
| |
| |
| # Bloom Private Bundle (Offline Delivery) |
| |
| This is a private delivery repo for the Bloom on device model bundle. |
| |
| The goal: |
| - All files are packaged in one archive + checksum |
| - Works offline after extraction |
| |
| --- |
| |
| ## What is inside |
| |
| This repo contains: |
| - `bloom_bundle.tar` |
| A tar archive containing a local model snapshot, tokenizer files, adapter files, and a small manifest. |
|
|
| - `bloom_bundle.tar.sha256` |
| SHA256 checksum for verifying the tar file integrity. |
|
|
| Important: |
| - After you extract the tar, everything should run with `local_files_only=True` (no internet required). |
| - You do not need to know upstream model details. Treat this bundle as the runtime artifact. |
|
|
| --- |
|
|
| ## Quick start (Linux / RunPod) |
|
|
| ### 1 Install minimal Python deps |
| Recommended: use a venv. |
|
|
| ```bash |
| python -m venv .venv |
| source .venv/bin/activate |
| pip install -U pip |
| pip install -r runner/requirements.txt |
| |
| |