@expiren/opencode-antigravity-auth 1.6.8 → 1.6.9

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/dist/index.js CHANGED
@@ -1762,6 +1762,15 @@ var OPENCODE_MODEL_DEFINITIONS = {
1762
1762
  max: { thinkingConfig: { thinkingBudget: 32768 } }
1763
1763
  }
1764
1764
  }),
1765
+ "antigravity-gemini-3.1-flash-image": defineModel("antigravity-gemini-3.1-flash-image", {
1766
+ name: "Gemini 3.1 Flash Image (Antigravity)",
1767
+ reasoning: false,
1768
+ limit: { context: 66e3, output: 33e3 },
1769
+ modalities: {
1770
+ input: ["text", "image"],
1771
+ output: ["text", "image"]
1772
+ }
1773
+ }),
1765
1774
  "antigravity-gpt-oss-120b": defineModel("antigravity-gpt-oss-120b", {
1766
1775
  name: "GPT-OSS 120B (Antigravity)",
1767
1776
  reasoning: false,
@@ -1807,6 +1816,15 @@ var OPENCODE_MODEL_DEFINITIONS = {
1807
1816
  limit: { context: 1048576, output: 65536 },
1808
1817
  modalities: DEFAULT_MODALITIES
1809
1818
  }),
1819
+ "gemini-3.1-flash-image-preview": defineModel("gemini-3.1-flash-image-preview", {
1820
+ name: "Gemini 3.1 Flash Image Preview (Gemini CLI)",
1821
+ reasoning: false,
1822
+ limit: { context: 66e3, output: 33e3 },
1823
+ modalities: {
1824
+ input: ["text", "image"],
1825
+ output: ["text", "image"]
1826
+ }
1827
+ }),
1810
1828
  "gemini-3.1-pro-preview-customtools": defineModel("gemini-3.1-pro-preview-customtools", {
1811
1829
  name: "Gemini 3.1 Pro Preview Custom Tools (Gemini CLI)",
1812
1830
  reasoning: true,
@@ -5802,8 +5820,9 @@ var MODEL_ALIASES = {
5802
5820
  "gemini-claude-sonnet-4-6-thinking-medium": "claude-sonnet-4-6-thinking",
5803
5821
  "gemini-claude-sonnet-4-6-thinking-high": "claude-sonnet-4-6-thinking",
5804
5822
  "gemini-claude-sonnet-4-6": "claude-sonnet-4-6-thinking"
5805
- // Image generation models - only gemini-3-pro-image is available via Antigravity API
5806
- // Note: gemini-2.5-flash-image (Nano Banana) is NOT supported by Antigravity - only Google AI API
5823
+ // Image generation models
5824
+ // gemini-3.1-flash-image (Nano Banana 2) - available via Antigravity API and Gemini CLI
5825
+ // gemini-2.5-flash-image (Nano Banana) - NOT supported by Antigravity, only Google AI API
5807
5826
  // Reference: Antigravity-Manager/src-tauri/src/proxy/common/model_mapping.rs
5808
5827
  };
5809
5828
  var TIER_REGEX = /-(minimal|low|medium|high)$/;