From 851497abbd9e0004b2bd09231758897b312a2118 Mon Sep 17 00:00:00 2001 From: justnodejs Date: Tue, 24 Feb 2026 20:26:47 +0800 Subject: [PATCH] refactor(baoyu-image-gen): update replicate default model to nano-banana-pro --- skills/baoyu-image-gen/scripts/providers/replicate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/baoyu-image-gen/scripts/providers/replicate.ts b/skills/baoyu-image-gen/scripts/providers/replicate.ts index ca58917..46772de 100644 --- a/skills/baoyu-image-gen/scripts/providers/replicate.ts +++ b/skills/baoyu-image-gen/scripts/providers/replicate.ts @@ -2,7 +2,7 @@ import path from "node:path"; import { readFile } from "node:fs/promises"; import type { CliArgs } from "../types"; -const DEFAULT_MODEL = "google/nano-banana"; +const DEFAULT_MODEL = "google/nano-banana-pro"; const SYNC_WAIT_SECONDS = 60; const POLL_INTERVAL_MS = 2000; const MAX_POLL_MS = 300_000;