@estebanforge/pi-antigravity-bridge 1.2.5 → 1.2.6
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 +10 -0
- package/package.json +1 -1
- package/src/models.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.2.6] - 2026-08-28
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- **Offline fallback Flash bumped to Gemini 3.7.** `FALLBACK_MODELS`
|
|
10
|
+
(served only when `agy models` fails or is unauthenticated at load) now
|
|
11
|
+
offers `gemini-3.7-flash` instead of `gemini-3.6-flash`. Live discovery
|
|
12
|
+
always overrides the fallback, so this only affects the picker when agy
|
|
13
|
+
is missing or broken.
|
|
14
|
+
|
|
5
15
|
## [1.2.5] - 2026-08-24
|
|
6
16
|
|
|
7
17
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@estebanforge/pi-antigravity-bridge",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
4
4
|
"description": "Streaming Gemini provider for pi, built on the agy CLI. Registers antigravity/* models in pi's /model picker via SQLite polling + protobuf decode of agy's conversation DBs.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
package/src/models.ts
CHANGED
|
@@ -308,7 +308,7 @@ export function toPiModel(entry: AgyModelEntry): Model<Api> {
|
|
|
308
308
|
* can still select a model and get a clear runtime error instead of an empty
|
|
309
309
|
* list. Update these when agy ships new Gemini versions. */
|
|
310
310
|
export const FALLBACK_MODELS: AgyModelEntry[] = [
|
|
311
|
-
{ full: "gemini-3.
|
|
311
|
+
{ full: "gemini-3.7-flash", id: "gemini-3-7-flash", efforts: ["low", "medium", "high"] },
|
|
312
312
|
{ full: "gemini-3.1-pro", id: "gemini-3-1-pro", efforts: ["low", "high"] },
|
|
313
313
|
{ full: "claude-sonnet-4-6", id: "claude-sonnet-4-6" },
|
|
314
314
|
];
|