feat(image): complete reviewed generation delivery
Memind CI / Test, build, and release guards (pull_request) Successful in 2m47s

This commit is contained in:
john
2026-07-20 20:04:44 +08:00
parent fc3d27aae0
commit 4b15610aa8
42 changed files with 1764 additions and 97 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import crypto from 'node:crypto';
const SUPPORTED_IMAGE_TYPES = new Set(['image/png', 'image/jpeg', 'image/webp']);
const ACTIVE_STATUSES = new Set(['queued', 'submitted', 'running']);
const ACTIVE_STATUSES = new Set(['queued', 'submitted', 'running', 'validating']);
const DEFAULT_MAX_RESULT_BYTES = 20 * 1024 * 1024;
function positiveInteger(value, fallback) {