antigravity-usage 0.2.4 → 0.2.5
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/README.md +3 -2
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -170,9 +170,10 @@ Your Antigravity quota resets every ~5 hours, but if you don't use it, you lose
|
|
|
170
170
|
#### 🎯 Intelligent Model Selection
|
|
171
171
|
Zero configuration needed. Automatically wakes up:
|
|
172
172
|
- **`claude-sonnet-4-5`** → Triggers the entire Claude family
|
|
173
|
-
- **`gemini-3-flash`** → Triggers
|
|
173
|
+
- **`gemini-3-flash`** → Triggers Gemini flash quota group
|
|
174
|
+
- **`gemini-3-pro-low`** → Triggers Gemini pro quota group
|
|
174
175
|
|
|
175
|
-
|
|
176
|
+
All three models combined ensure comprehensive coverage and optimal quota utilization across all available AI models and quota groups.
|
|
176
177
|
|
|
177
178
|
#### ⚡️ Two Powerful Trigger Modes
|
|
178
179
|
|
package/dist/index.js
CHANGED
|
@@ -3144,7 +3144,7 @@ import Table4 from "cli-table3";
|
|
|
3144
3144
|
function getDefaultConfig() {
|
|
3145
3145
|
return {
|
|
3146
3146
|
enabled: false,
|
|
3147
|
-
selectedModels: ["claude-sonnet-4-5", "gemini-3-flash"],
|
|
3147
|
+
selectedModels: ["claude-sonnet-4-5", "gemini-3-flash", "gemini-3-pro-low"],
|
|
3148
3148
|
selectedAccounts: void 0,
|
|
3149
3149
|
customPrompt: void 0,
|
|
3150
3150
|
maxOutputTokens: 1,
|
|
@@ -3214,7 +3214,7 @@ function getOrCreateConfig() {
|
|
|
3214
3214
|
const existing = loadWakeupConfig();
|
|
3215
3215
|
if (existing) {
|
|
3216
3216
|
if (!existing.selectedModels || existing.selectedModels.length === 0) {
|
|
3217
|
-
existing.selectedModels = ["claude-sonnet-4-5", "gemini-3-flash"];
|
|
3217
|
+
existing.selectedModels = ["claude-sonnet-4-5", "gemini-3-flash", "gemini-3-pro-low"];
|
|
3218
3218
|
saveWakeupConfig(existing);
|
|
3219
3219
|
debug("wakeup-storage", "Migrated config to new default models");
|
|
3220
3220
|
}
|
|
@@ -3908,8 +3908,8 @@ async function configureWakeup() {
|
|
|
3908
3908
|
}]);
|
|
3909
3909
|
config.resetCooldownMinutes = resetCooldown;
|
|
3910
3910
|
}
|
|
3911
|
-
config.selectedModels = ["claude-sonnet-4-5", "gemini-3-flash"];
|
|
3912
|
-
console.log("\n \u{1F4E6} Models: claude-sonnet-4-5, gemini-3-flash");
|
|
3911
|
+
config.selectedModels = ["claude-sonnet-4-5", "gemini-3-flash", "gemini-3-pro-low"];
|
|
3912
|
+
console.log("\n \u{1F4E6} Models: claude-sonnet-4-5, gemini-3-flash, gemini-3-pro-low");
|
|
3913
3913
|
console.log(" (Triggers both Claude and Gemini families)");
|
|
3914
3914
|
if (accounts.length > 1) {
|
|
3915
3915
|
const { selectedAccounts } = await inquirer.prompt([{
|