Skip to content

Commit d81ccb8

Browse files
committed
feat: refresh gemini-cli sample with gemini-3.1-pro / 3-flash / 2.5-pro / 2.5-flash
Replaces the deprecated gemini-2.5-flash-lite. Tier mapping: - defaultModel / lightModel: gemini-2.5-flash - mediumModel: gemini-3-flash - heavyModel: gemini-3.1-pro
1 parent 24e1974 commit d81ccb8

4 files changed

Lines changed: 14 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.8.4] - 2026-05-03
4+
5+
### Improvements
6+
7+
- Refresh `gemini-cli` sample provider with the current Google model lineup: `gemini-3.1-pro`, `gemini-3-flash`, `gemini-2.5-pro`, `gemini-2.5-flash` (replaces the now-deprecated `gemini-2.5-flash-lite`). Tier mapping: `defaultModel`/`lightModel``gemini-2.5-flash`, `mediumModel``gemini-3-flash`, `heavyModel``gemini-3.1-pro`.
8+
39
## [0.8.3] - 2026-04-25
410

511
### Improvements

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "portos-ai-toolkit",
3-
"version": "0.8.3",
3+
"version": "0.8.4",
44
"description": "Shared AI provider, model, and prompt template patterns for PortOS-style applications",
55
"author": "Adam Eivy <adam@eivy.com> (https://atomantic.com)",
66
"license": "MIT",

src/defaults/providers.sample.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,11 @@
6060
"type": "cli",
6161
"command": "gemini",
6262
"args": [],
63-
"models": [],
64-
"defaultModel": null,
63+
"models": ["gemini-3.1-pro", "gemini-3-flash", "gemini-2.5-pro", "gemini-2.5-flash"],
64+
"defaultModel": "gemini-2.5-flash",
65+
"lightModel": "gemini-2.5-flash",
66+
"mediumModel": "gemini-3-flash",
67+
"heavyModel": "gemini-3.1-pro",
6568
"timeout": 300000,
6669
"enabled": true,
6770
"envVars": {},

0 commit comments

Comments
 (0)