@su-record/vibe 2.5.19 → 2.5.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -52,7 +52,9 @@ function getGeminiApiKey() {
52
52
  }
53
53
 
54
54
  async function generateImageWithGemini(prompt, apiKey) {
55
- const url = `https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash-exp:generateContent?key=${apiKey}`;
55
+ // Nano Banana (Gemini 2.5 Flash Image) - fast image generation for icons/logos
56
+ // For professional assets, use gemini-3-pro-image-preview (Nano Banana Pro)
57
+ const url = `https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash-image:generateContent?key=${apiKey}`;
56
58
 
57
59
  const requestBody = {
58
60
  contents: [{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "2.5.19",
3
+ "version": "2.5.21",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework with 35+ integrated tools",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",