@magyk/vincent 0.1.3 → 0.1.4
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.
- package/CHANGELOG.md +7 -0
- package/README.md +3 -1
- package/dist/vincent.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [0.1.4] — 2026-05-08
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- README: removed incorrect `export GEMINI_API_KEY` step — the app prompts for the key interactively on first run and saves it automatically
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
9
16
|
## [0.1.3] — 2026-05-08
|
|
10
17
|
|
|
11
18
|
### Changed
|
package/README.md
CHANGED
|
@@ -14,10 +14,12 @@ Requires Node.js ≥ 25.
|
|
|
14
14
|
## Quickstart
|
|
15
15
|
|
|
16
16
|
```
|
|
17
|
-
export GEMINI_API_KEY=your_key_here
|
|
18
17
|
vincent path/to/product-image.jpg
|
|
19
18
|
```
|
|
20
19
|
|
|
20
|
+
On first run, Vincent will prompt you to paste your Gemini API key and save it automatically.
|
|
21
|
+
Get one free at https://aistudio.google.com/apikey — one key covers LLM, image, and video generation.
|
|
22
|
+
|
|
21
23
|
## Options
|
|
22
24
|
|
|
23
25
|
```
|