feat(gemini): update Gemini model to 2.5 versions and add billing toggle in settings

This commit is contained in:
Alex Newman
2025-12-25 19:47:41 -05:00
parent 7827226ed6
commit 8364af1e48
6 changed files with 304 additions and 6 deletions
@@ -481,8 +481,9 @@ export function ContextSettingsModal({
</FormField>
<div className="toggle-group" style={{ marginTop: '8px' }}>
<ToggleSwitch
id="gemini-billing-enabled"
label="Billing Enabled"
tooltip="Enable if you have billing set up on Google Cloud. Skips rate limiting (1000+ RPM available)."
description="Enable if you have billing set up on Google Cloud. Skips rate limiting (1000+ RPM available)."
checked={formState.CLAUDE_MEM_GEMINI_BILLING_ENABLED === 'true'}
onChange={(checked) => updateSetting('CLAUDE_MEM_GEMINI_BILLING_ENABLED', checked ? 'true' : 'false')}
/>