ProofForge turns a campaign brief into evaluated media variants with a verifiable provenance record. Every output is SHA-256 bound to a canonical Genblaze manifest; live deployments persist assets and manifests to Backblaze B2.
Creative teams need to know which model, prompt, parameters, and evaluation produced an asset. ProofForge makes that chain inspectable instead of leaving provenance in screenshots and chat history.
- Working campaign brief and variant gallery.
- Deterministic local media engine for zero-cost development and judging fallback.
- Genblaze
Run,Step, and canonicalManifestgeneration. - SHA-256 verification for every output asset.
- Quality score and accessibility alt text per variant.
- Responsive FastAPI application with no frontend build step.
- Production security headers and a credential-safe readiness endpoint.
- Credential-driven B2 mode that persists locally generated assets and canonical Genblaze manifests without requiring a paid inference provider.
python -m venv .venv
.\.venv\Scripts\python -m pip install -e ".[dev]"
.\.venv\Scripts\python -m uvicorn app.main:app --reloadOpen http://127.0.0.1:8000.
The repository includes a production Dockerfile and a free-tier Render Blueprint. The
service binds to $PORT, exposes /api/health, and stores disposable demo runs under
/tmp/proofforge. Live credentials must be configured as secret environment variables,
never committed to the repository.
- The API validates a structured campaign brief.
- The generation engine creates multiple media variants.
- An evaluator scores each output and marks weak variants for review.
- Genblaze records provider, model, prompt, parameters, asset hash, and lineage.
- Development mode writes locally; live mode uses an
ObjectStorageSinkbacked byS3StorageBackend.for_backblaze().
Copy .env.example to .env and provide scoped credentials only in the deployment environment. Never commit keys. GMI Cloud is optional; the provider adapter is installed with pip install -e ".[gmicloud]".
- Functional local app
- Meaningful Genblaze provenance
- Integrity verification
- GMI Cloud generation adapter with model fallback
- B2 durable object storage adapter
- Hosted judge URL
- Public repository
- Three-minute demo video
- Devpost submission