@agenit/cli 2.1.0 → 2.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 +30 -0
- package/cli.js +25290 -18786
- package/config/flow.toml +11 -2
- package/package.json +1 -1
package/config/flow.toml
CHANGED
|
@@ -4,8 +4,17 @@
|
|
|
4
4
|
# /opt/homebrew/bin on macOS, /usr/local/bin on Linux, %APPDATA%\npm on
|
|
5
5
|
# Windows). Set an absolute path only if you need to pin a specific install.
|
|
6
6
|
binary = "gemini"
|
|
7
|
-
# Model override —
|
|
8
|
-
|
|
7
|
+
# Model override — pinned to 2.5-pro to avoid 2.5-flash's RESOURCE_EXHAUSTED on the free OAuth pool.
|
|
8
|
+
model = "gemini-2.5-pro"
|
|
9
|
+
# Fallback model — used for one transparent retry when the primary model
|
|
10
|
+
# returns HTTP 429 / "No capacity available". A one-line warning is
|
|
11
|
+
# printed to stderr when this fires. Unset or equal-to-`model` disables.
|
|
12
|
+
fallback_model = "gemini-2.5-flash"
|
|
13
|
+
# Per-request wall-clock timeout in seconds. Caps gemini-cli's internal
|
|
14
|
+
# retry-on-429 hangs (which can otherwise run 3+ minutes silently). On
|
|
15
|
+
# timeout the spawned process is killed and the fallback retry path
|
|
16
|
+
# triggers. Default 90s. Set to 0 to disable.
|
|
17
|
+
request_timeout_secs = 90
|
|
9
18
|
# Working dir handed to the spawned Gemini-CLI as cwd. Resolved against the
|
|
10
19
|
# directory the user invoked `agenit` from (NOT the directory holding this
|
|
11
20
|
# file). Leave unset (or "." ) to follow the user's project — every
|
package/package.json
CHANGED