Luma Dream Machine video provider adapter for genblaze
Project description
genblaze-luma
Luma Dream Machine (Ray-2) video provider adapter for genblaze — text-to-video AI pipelines with SHA-256 provenance manifests on every render.
genblaze-luma wraps Luma Labs' Dream Machine API (Ray-2, Ray-Flash-2) as a genblaze provider. Compose Luma video generations into multi-step AI pipelines, persist outputs to Backblaze B2 or any S3-compatible store, and emit a tamper-evident provenance manifest for every run.
Why genblaze-luma
- Luma Ray-2, unified API — same
PipelineAPI as Sora, Veo, Runway, Flux. - Provenance by default — SHA-256-verified manifest with prompt, model, and params on every render.
- Production-ready — timeouts, retries, progress streaming, moderation hooks, step caching.
- Composable — chain Luma outputs into downstream FFmpeg steps or AV compositors.
- Durable storage — plug
genblaze-s3in for Backblaze B2 / AWS S3 / R2 / MinIO persistence.
Models
| Model | Notes |
|---|---|
ray-2 |
Latest, highest-quality Dream Machine |
ray-flash-2 |
Faster and lower-cost variant |
Install
pip install genblaze-luma
Registers the luma provider via entry points; genblaze-core discovers it automatically.
Quickstart — Ray-2 text-to-video
pip install genblaze-core genblaze-luma
export LUMAAI_API_KEY="..."
from genblaze_core import Modality, Pipeline
from genblaze_luma import LumaProvider
run, manifest = (
Pipeline("luma-demo")
.step(LumaProvider(), model="ray-2",
prompt="A slow-motion shot of ocean waves crashing against volcanic rocks at golden hour, cinematic",
modality=Modality.VIDEO, aspect_ratio="16:9")
.run(timeout=300)
)
print(run.steps[0].assets[0].url, manifest.canonical_hash)
Persist to Backblaze B2
from genblaze_core import KeyStrategy, ObjectStorageSink
from genblaze_s3 import S3StorageBackend
storage = ObjectStorageSink(
S3StorageBackend.for_backblaze("my-bucket"),
key_strategy=KeyStrategy.HIERARCHICAL,
)
# pass sink=storage to .run(…)
Backblaze B2 is the recommended default sink for large AI-generated video.
Credentials
| Env var | Where to get it |
|---|---|
LUMAAI_API_KEY |
https://lumalabs.ai/dream-machine/api |
Documentation
- Main repo: https://github.com/backblaze-labs/genblaze
- Example:
luma_video_pipeline.py
Related packages
genblaze-core— the pipeline SDKgenblaze-s3— durable storage on Backblaze B2 and other S3-compatible backends- Other video providers:
genblaze-openai(Sora) ·genblaze-google(Veo) ·genblaze-runway(Gen-4) ·genblaze-decart(Lucy)
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file genblaze_luma-0.2.1.tar.gz.
File metadata
- Download URL: genblaze_luma-0.2.1.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e3dd5c9f1806febb7ac751f66d9c791a41146d363366fe1d7a8d272bc6c845d
|
|
| MD5 |
db34590cec79650820a84fe90accc380
|
|
| BLAKE2b-256 |
8b76f96c7577fc84c58f028e5e8a3006f087ba4d864cd1bd432cb3377b37ec2e
|
File details
Details for the file genblaze_luma-0.2.1-py3-none-any.whl.
File metadata
- Download URL: genblaze_luma-0.2.1-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e40814385bb318a338d6d60425f0fd8271ac0efc305b7bf7288dad083d696394
|
|
| MD5 |
41f76bf3822f6c8b1e333ec786e58a16
|
|
| BLAKE2b-256 |
29bc56c1e9ffb986f04e38e559583daf9a80f6b72a3f22d2fc33ce0248b1081f
|