Replicate provider adapter for genblaze
Project description
genblaze-replicate
Replicate provider adapter for genblaze — run any Replicate-hosted image, video, or audio model through a unified AI pipeline with SHA-256 provenance.
genblaze-replicate wraps Replicate's hosted model catalog (FLUX, SDXL, Stable Diffusion, video models, music models — anything on Replicate) as a genblaze provider. Compose Replicate calls into multi-step pipelines, persist outputs to Backblaze B2 or any S3-compatible store, and emit a tamper-evident provenance manifest for every run.
Why genblaze-replicate
- Any Replicate model, one API — Pass the
owner/modelslug; genblaze handles submission, polling, asset download, and manifest capture. - Provenance by default — SHA-256 hash of every output, canonical manifest with prompt + params + timestamps.
- Composable — Chain Replicate outputs into downstream steps (image → video, upscale, transcode).
- Production-ready — Timeouts, retries, moderation hooks, step caching, OpenTelemetry tracing.
- Durable storage — Drop the
genblaze-s3sink in for B2/S3/R2/MinIO persistence of assets + manifests.
Models
Supports any model hosted on Replicate — including:
- Image —
black-forest-labs/flux-schnell,black-forest-labs/flux-dev,stability-ai/sdxl,stability-ai/stable-diffusion-3 - Video — text-to-video and image-to-video models on Replicate
- Audio — music and speech models on Replicate
Use the full owner/model slug from https://replicate.com/explore.
Install
pip install genblaze-replicate
Registers the replicate provider via entry points; genblaze-core discovers it automatically.
Quickstart — FLUX Schnell (text-to-image)
pip install genblaze-core genblaze-replicate
export REPLICATE_API_TOKEN="r8_..."
from genblaze_core import Modality, Pipeline
from genblaze_replicate import ReplicateProvider
run, manifest = (
Pipeline("flux-demo")
.step(
ReplicateProvider(),
model="black-forest-labs/flux-schnell",
prompt="a photorealistic golden retriever puppy in a field of wildflowers, "
"golden hour, shallow depth of field",
modality=Modality.IMAGE,
num_outputs=1,
aspect_ratio="1:1",
)
.run()
)
print(run.steps[0].assets[0].url)
print(manifest.canonical_hash)
assert manifest.verify()
Quickstart — persist to Backblaze B2
pip install genblaze-core genblaze-replicate genblaze-s3
export REPLICATE_API_TOKEN="r8_..."
export B2_KEY_ID="..." B2_APP_KEY="..."
from genblaze_core import KeyStrategy, ObjectStorageSink, Pipeline
from genblaze_replicate import ReplicateProvider
from genblaze_s3 import S3StorageBackend
storage = ObjectStorageSink(
S3StorageBackend.for_backblaze("my-bucket"),
key_strategy=KeyStrategy.CONTENT_ADDRESSABLE,
)
result = (
Pipeline("flux-b2")
.step(ReplicateProvider(), model="black-forest-labs/flux-schnell",
prompt="cyberpunk tokyo street at night, neon reflections on wet pavement")
.run(sink=storage, timeout=120)
)
print(result.run.steps[0].assets[0].url) # durable B2 URL
Credentials
| Env var | Where to get it |
|---|---|
REPLICATE_API_TOKEN |
https://replicate.com/account/api-tokens |
Documentation
- Main repo: https://github.com/backblaze-labs/genblaze
- Runnable example:
replicate_flux_pipeline.py
Related packages
genblaze-core— the pipeline SDKgenblaze-s3— durable storage on Backblaze B2 and other S3-compatible backends
License
MIT
Project details
Release history Release notifications | RSS feed
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_replicate-0.2.2.tar.gz.
File metadata
- Download URL: genblaze_replicate-0.2.2.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f41871ec1348ef34dd611bd3072e6d695775952187572638aa069c528101289
|
|
| MD5 |
73829939a070ab3eada9bf8d4f254b40
|
|
| BLAKE2b-256 |
b1a8eca88c27e869cc8b18d0131ec6650a3726a40a6d5e4a191d41c89f4bd4d5
|
File details
Details for the file genblaze_replicate-0.2.2-py3-none-any.whl.
File metadata
- Download URL: genblaze_replicate-0.2.2-py3-none-any.whl
- Upload date:
- Size: 6.8 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 |
b1907a46f5561731ae1d791aa32a911d9e430adb92ecfbdc5860e8d6ce1afe4c
|
|
| MD5 |
21c96ed1fcb8475bbd9aa684fe90a30d
|
|
| BLAKE2b-256 |
1b727926d9a2bba110aedace468878a70134f40f47b798b6c662c681cee0efb7
|