gemcatch 0.1.0 → 0.1.1

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 CHANGED
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.1] - 2026-07-19
11
+
12
+ ### Fixed
13
+
14
+ - REST fallback (`GEMCATCH_FORCE_REST=1`, or when the SDK lacks Interactions)
15
+ no longer prepends the echoed prompt and the model's reasoning to the result.
16
+ A real Interactions response tags each step by type; only `model_output` is
17
+ the answer. The default SDK path was unaffected. Verified live against the API.
18
+
19
+ ### Changed
20
+
21
+ - Require Node.js 22+. The advertised "20+" was never accurate — `commander@15`
22
+ requires Node `>=22.12`, and Node 20 reached end-of-life. CI now covers 22 and 24.
23
+ - Clarified the free-tier wording in the README: `gemini-3.1-flash-lite` is free
24
+ within the free tier's daily quota, then billed at standard rates.
25
+
10
26
  ## [0.1.0] - 2026-07-17
11
27
 
12
28
  First release. Wraps the background execution capability added to the Gemini
package/README.md CHANGED
@@ -24,7 +24,7 @@ The EU AI Act's high-risk obligations phase in from August 2026, whereas...
24
24
 
25
25
  ## Setup
26
26
 
27
- Needs Node.js 20+ and a Gemini API key. **Getting a key needs no billing account and no card.** `gemini-3.1-flash-lite` runs free within the [free tier's](https://ai.google.dev/gemini-api/docs/pricing) daily quota; past that, paid rates apply.
27
+ Needs Node.js 22+ and a Gemini API key. **Getting a key needs no billing account and no card.** `gemini-3.1-flash-lite` runs free within the [free tier's](https://ai.google.dev/gemini-api/docs/pricing) daily quota; past that, paid rates apply.
28
28
 
29
29
  1. Get a key at **<https://aistudio.google.com/apikey>**
30
30
  2. Put it in your environment:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcatch",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Fire-and-forget CLI for Gemini's Interactions API background execution. Submit long-running research prompts, close your laptop, collect results later.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -16,7 +16,7 @@
16
16
  "CHANGELOG.md"
17
17
  ],
18
18
  "engines": {
19
- "node": ">=20"
19
+ "node": ">=22"
20
20
  },
21
21
  "scripts": {
22
22
  "test": "node test-offline.js",