Runway Gen video provider adapter for genblaze
Project description
genblaze-runway
Runway Gen-4 / Gen-3 video provider adapter for genblaze — text-to-video AI pipelines with SHA-256 provenance manifests on every render.
genblaze-runway wraps the Runway ML API (Gen-4 Turbo, Gen-3a Turbo) as a genblaze provider. Compose Runway 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-runway
- Runway Gen-4 Turbo, unified API — same
PipelineAPI as Sora, Veo, Luma, Flux. - Provenance by default — every render gets a SHA-256-verified manifest with prompt, model, params, timestamps.
- Production-ready — timeouts, retries, progress streaming, step caching, moderation hooks.
- Composable — chain Runway outputs into downstream FFmpeg transforms or AV compositors.
- Durable storage — drop the
genblaze-s3sink in for B2 / AWS S3 / R2 / MinIO persistence.
Models
| Model | Notes |
|---|---|
gen4_turbo |
Latest Runway video model — fast, highest quality |
gen3a_turbo |
Previous generation — still supported |
Install
pip install genblaze-runway
Registers the runway provider via entry points; genblaze-core discovers it automatically.
Quickstart — Gen-4 Turbo text-to-video
pip install genblaze-core genblaze-runway
export RUNWAYML_API_SECRET="..."
from genblaze_core import Modality, Pipeline
from genblaze_runway import RunwayProvider
run, manifest = (
Pipeline("runway-demo")
.step(RunwayProvider(), model="gen4_turbo",
prompt="A timelapse of wildflowers blooming in a meadow, soft morning light, macro detail",
modality=Modality.VIDEO, duration=10)
.run(timeout=300)
)
print(run.steps[0].assets[0].url, manifest.canonical_hash)
assert manifest.verify()
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(…) — assets + manifest uploaded to B2
Backblaze B2 is the recommended default sink for large AI-generated video.
Credentials
| Env var | Where to get it |
|---|---|
RUNWAYML_API_SECRET |
https://dev.runwayml.com/ |
Documentation
- Main repo: https://github.com/backblaze-labs/genblaze
- Example:
runway_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-luma(Dream Machine) ·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_runway-0.2.1.tar.gz.
File metadata
- Download URL: genblaze_runway-0.2.1.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
309844d9b82d772df785f2b10349fa78e1b5bcb255aaf7954f1b4741f86db8ee
|
|
| MD5 |
374f35a3bb278a5c4e678dc8c4da1043
|
|
| BLAKE2b-256 |
082cfa47d4dff5eb078653e36e61f3bef168fdf478e43d61d3e330e1ad32539d
|
File details
Details for the file genblaze_runway-0.2.1-py3-none-any.whl.
File metadata
- Download URL: genblaze_runway-0.2.1-py3-none-any.whl
- Upload date:
- Size: 7.0 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 |
fc52b67be91e85d3563c4f1f689ee25d953134a9f7a640f79d72b38ae86616c2
|
|
| MD5 |
e6b167b519bce9d1f96994aa4bca68bb
|
|
| BLAKE2b-256 |
89ffd8a7ddc3661e67c0bfe103e65d6e945b9170ea71224d21afeb4a4557aae6
|