Skip to main content

Command Palette

Search for a command to run...

Why Gemini Forgets You: The Hidden Limits of Saved Info & Gems

Updated
20 min read
Why Gemini Forgets You: The Hidden Limits of Saved Info & Gems

TL;DR

  • Gemini uses "conservative by design" personalization—it has your data but uses it selectively, requiring explicit triggers

  • Saved Info has hidden limits (~10-75 active slots, ~1,500 characters each) with silent FIFO truncation

  • Gems don't inherit Saved Info—you must copy data manually into each Gem's instructions

  • Gemini 3.0 Pro has known context retention bugs after the December 4, 2025 update (Google acknowledged)

  • Google Keep is Gemini's only direct-write destination—use @Google Keep to capture conversation insights in real-time

  • Best workaround: Google Sheets + Gems for time-series data, Keep for quick capture, NotebookLM for research


Introduction

  • In Iron Man, J.A.R.V.I.S. doesn't just answer questions—it knows Tony Stark. [Link] In Her, Samantha develops genuine memories through relationship. [Link] These fictional AI companions share one capability no real AI possesses today: the ability to permanently write experiences into their own minds. Every production LLM is fundamentally read-only—neural network weights frozen at deployment. [Link]

  • Google Gemini sits atop the world's largest personal data repository—Gmail, Drive, Calendar, Photos—yet deliberately restrains itself from using it. This is not a bug. This is Google's philosophical choice in the AI memory wars of 2025. While ChatGPT aggressively memorizes everything and Claude offers transparent tool-based memory, Gemini takes a third path: "conservative by design" personalization that activates only when explicitly triggered.

  • This article dissects exactly how Gemini's personalization architecture works, explains why the "amnesia syndrome" you're experiencing is by design, and provides a systematic framework for managing your personalization data—including workarounds for architectural limitations stemming from the fundamental read-only nature of LLMs.


The Architecture of Gemini Memory: Not RAG, Something Simpler

  • Let's dispel the first misconception: Gemini does not use Retrieval-Augmented Generation (RAG) for personalization. According to reverse-engineering analysis by Shlok Khemani, Gemini employs a far simpler mechanism—compressed summary injection. [Link]

  • The system operates around a single document called user_context:

CategoryContents
1. Demographic InformationName, age, location, profession
2. Interests & PreferencesTopics of interest, tech stack, goals
3. RelationshipsImportant people in your life
4. Dated Events/Projects/PlansTime-tagged activity records
5. Recent ContextLast few conversation turns
  • Unlike true RAG systems that use vector databases, chunk embeddings, and query-based retrieval, Gemini simply injects this compressed summary into every conversation's context window. No semantic search. No relevance scoring. Just brute-force context injection.

  • "No vector database, no knowledge graph, no RAG. They just dump everything in every time," observes Khemani in his analysis of both ChatGPT and Gemini's memory systems. [Link]

  • Here is where Gemini's architectural advantage becomes relevant: among the major AI platforms, Gemini 3 Pro offers the largest context window by a significant margin—1 million tokens, equivalent to approximately 1,500 pages of text or 30,000 lines of code. [Link] By comparison, OpenAI's GPT-5.2 (released December 11, 2025) supports 400K tokens, [Link] and Anthropic's Claude Opus 4.5 offers 200K tokens (with up to 1M tokens available for enterprise deployments). [Link]

  • This gives Gemini 3 Pro a 2.5× advantage over GPT-5.2 and 5× over Claude Opus 4.5's standard window. The "brute-force context injection" approach has more room before hitting limits.

The Three-Layer Personalization Stack

  • Gemini's personalization operates across three independent layers, each with distinct behaviors:
LayerFeature NameFunctionPriority
Level 1Gemini Apps ActivityControls whether conversations are stored at allFoundation
Level 2Personal ContextAnalyzes past chats to build user profileSecondary
Level 3Saved InfoUser-defined explicit instructionsHighest
  • Personal Context (labeled "Your past chats with Gemini" in settings) allows Gemini to analyze your conversation history to extract patterns and preferences. [Link]

  • Saved Info (labeled "Things to remember" in settings) contains explicit instructions you've manually entered. This takes precedence over automatically-derived Personal Context.


The "Conservative by Design" Policy: Why Gemini Pretends Not to Know You

  • A revealed system prompt from June 2025 shows how Gemini's personalization guidelines actually work:
Guidelines on how to use the user information for personalization:
- Use Relevant User Information & Balance with Novelty
- Acknowledge Data Use Appropriately (only when it significantly shapes your response)
- Avoid Over-personalization... as a default rule, DO NOT use the user's name
- Prioritize & Weight Information Based on Intent/Confidence
  • This "balanced approach" policy means Gemini has your data but is instructed to use it selectively rather than aggressively—personalization activates only when "directly relevant to the user's current query." [Link]

  • The trigger conditions include phrases like:

    • "Based on my interests..."
    • "Considering my previous conversations..."
    • "Given what you know about me..."
  • Without these explicit triggers, Gemini often behaves as if it has no memory—not because the data is missing, but because the system prompt's "avoid over-personalization" guideline causes it to err on the side of caution.

The Selective Activation Model

  • How Gemini's personalization actually works:
StepProcessOutcome
Step 1Check if user data existsData present in context
Step 2Apply system prompt guidelines"Use only when directly relevant"
Step 3Evaluate relevance to current queryIs personalization genuinely helpful here?
Step 4aHigh relevance detectedPersonalization ACTIVATED (implicitly woven into response)
Step 4bLow relevance or ambiguousPersonalization SUPPRESSED (to avoid "creepy" over-personalization)
  • This explains the frustrating inconsistency users experience. The information you saved isn't gone—it's being filtered through a relevance gate that often errs on the side of caution. Explicit trigger phrases help signal to Gemini that personalization is genuinely wanted.

Competitive Context: Three Philosophies of AI Memory

  • Understanding Gemini's approach requires contrasting it with competitors:
CharacteristicChatGPTClaudeGemini
Default behaviorAlways ON (auto-personalization)Explicit tool calls onlyDefault OFF (trigger required)
Memory structure4 modules (complex)2 tools (transparent)1 document (simple)
Context window400K tokens200K (1M preview via Bedrock)1M tokens
Update cyclePeriodic batchReal-time searchPeriodic batch
User editingPartialFullFull
Auto-inference✓ (aggressive)△ (on request)✗ (almost never)
Project separation✓ (since 2025.08)✓ (built-in)✗ (workaround via Gems)
  • Simon Willison, the prominent developer and AI critic, contrasts the two leading approaches: "Claude's memory feature is implemented as visible tool calls, which means you can see exactly when and how it is accessing previous context... The OpenAI system is very different: rather than letting the model decide when to access memory via tools, OpenAI instead automatically includes details of previous conversations at the start of every conversation." [Link]

  • Gemini takes a third path not explicitly covered in Willison's analysis: a "conservative by design" approach that requires explicit user triggers or high relevance to activate personalization.

  • ChatGPT chose "magical experience" through aggressive auto-personalization. Claude chose "transparency" through explicit, visible tool calls. Gemini chose "privacy-first restraint" through selective activation and deliberate under-personalization.


The Saved Info Crisis: Silent Truncation and Hidden Limits

  • Beyond the "conservative by design" behavior, Saved Info has structural limitations that compound the "amnesia" problem.

The Slot Limit Controversy

  • Community testing reveals conflicting reports on Saved Info limits, suggesting Google may be A/B testing different configurations:
Reported byObserved SlotsNotes
User A~10 activeOldest items silently ignored [Link]
User B~75 slotsCopied from ChatGPT memories [Link]
  • "There's a hidden limit on active processing. Add too many, and the oldest instructions are quietly 'forgotten.' They're still on the settings page, but they're not loaded into active context," reports one Reddit user.

  • The discrepancy suggests the effective limit may depend on total token count rather than item count—each slot allows approximately 1,500 characters according to Lifehacker testing. [Link]

FIFO Truncation

  • When you exceed these limits, First-In-First-Out (FIFO) truncation kicks in. Your oldest saved information gets silently dropped from the active context window—with no warning, no notification.
MetricObserved Value
Characters per slot~1,500
Active token limitEstimated 16K-32K tokens (varies by account)

The Timestamp Problem

  • Saved Info items have no date/time metadata. When you ask about "my current weight," Gemini cannot distinguish between:

    • Weight you entered on December 22nd: 75.2kg
    • Weight you entered on December 27th: 74.5kg
  • Without timestamps, Gemini may reference whichever entry it encounters first in the context—often the older one—creating the illusion that it "forgot" your most recent update.

Quick Fix: Keep Saved Info under 10 items with static preferences only. Migrate time-series data (weight, workouts, etc.) to Google Sheets + Gems.


The Gems Isolation Problem

  • Many users assume Gems (custom AI assistants) inherit Saved Info. They don't.

  • "I stored important information in Saved Info, but my custom Gem doesn't recognize it at all. Is this by design?" reports a confused user. [Link]

  • Gems are completely siloed from the main Gemini instance:

Personalization Data Flow

SourceTargetTransfer StatusNote
Saved InfoRegular Gemini ChatTransferredApplied by default
Saved InfoGems (Custom Assistants)NOT TransferredRequires separate setup
Saved InfoGemini LivePartialManual trigger required
  • If you want your Gem to know your preferences, you must manually copy Saved Info content into the Gem's instruction prompt.

  • Gems support up to 10 attached files, with the following specifications:

    • Maximum file size: 32MB per file
    • Supported formats: Google Docs, Sheets, PDF, TXT, code files
    • Google Docs/Sheets auto-sync: Updates to source files reflect automatically in your Gem [Link]

Quick Fix: Create a master Google Doc with your preferences and attach it to each Gem. Updates sync automatically.


Model-Specific Limitations: Flash vs Pro

  • Not all Gemini models support personalization equally.
ModelPersonal ContextSaved InfoConnected Apps
Gemini 3 Pro
Gemini 3 Flash
Gemini Live△ (manual trigger)
Gems
  • Personal Context—the feature that builds your profile from conversation history—only works on Pro/Thinking models. If you're using Flash and wondering why Gemini never seems to remember you, this is why.

  • Note: Some users report inconsistent behavior during the December transition period. [Link] This suggests ongoing A/B testing or staged rollouts.

Quick Fix: If personalization matters, use Gemini 3 Pro. For coding tasks where personalization is less critical, Flash remains a strong choice.


The Gemini 3.0 Pro Regression

  • Gemini 3 Pro launched on November 18, 2025, [Link] but the December 4, 2025 introduction of Deep Think mode [Link] coincided with significant context retention issues.

  • "Gemini 3 Pro's long context retention is completely broken. It doesn't handle long chats like 2.5 or earlier versions. After a few exchanges, you need to start a new chat," reports one frustrated user. [Link] Community reports suggest quality degradation typically begins around 4-6 prompts, with severe issues appearing after 10+ turns.

  • Reported symptoms include:

    • Severe performance degradation after 10+ turns
    • Claiming uploaded files are "not visible"
    • Literally repeating previous message content (attention mechanism failure suspected)
    • Complete loss of rules/context trained over months after the 3.0 upgrade
  • The issue is documented on Google's official AI Developers Forum: "Significant Context Retention Degradation After Dec 4 'Deep Think' Update" reports measurable decline in session-level instruction retention. [Link]

  • According to community reports, a Google representative acknowledged the issue in a Reddit thread, stating: "We're aware of this issue and working on a fix." [Reddit] (Note: This is a community-shared statement, not an official press release.)

Quick Fix: Start fresh chats after 4-6 exchanges until the bug is resolved. For critical work, consider temporary fallback to Gemini 2.5 Pro if available.


The Solution Framework: Making Gemini Actually Remember

  • Given these architectural realities, here's a systematic approach to maximizing personalization effectiveness.

Important Note: Regional Restrictions

  • Personal Context and Personalization experimental features have limited availability in the European Economic Area (EEA), United Kingdom, and Switzerland due to GDPR and AI Act regulatory compliance concerns. [Link]

  • Update (August 2025): Google announced Personal Context would roll out to these regions in the "weeks ahead." [Link] However, as of December 2025, the rollout status remains unclear—European users continue to report the feature as either unavailable or inconsistently accessible.

  • "As a European, all AI personalization features are listed as 'coming soon' for over a year now," laments one Reddit user. [Reddit]

Strategy 1: The Trigger Phrase Protocol

  • Since Gemini operates on "conservative by design," you can help activate personalization by signaling explicit intent:

For Saved Info activation:

"Based on my saved information..."
"Considering my preferences you know about..."
"Using what I've told you to remember..."

For conversation history activation:

"Based on our previous conversations..."
"You know my background, so..."
"Given our chat history..."

For Gemini Live:

"Tell me word for word what I asked you to remember."
"Recite the information I saved with you."
  • This forces Gemini to load and reference your personalization data for the current session.

Strategy 2: The Data Type Matrix

  • Different data types require different storage strategies:
Data TypeRecommended SolutionReason
Time-series data (weight, workouts)Google Sheets + GemAuto-sync, sortable, structured
Static preferences (language, tone)Saved InfoLow change frequency
Research/learning materialsNotebookLM integration300 sources, true RAG
Project-specific contextIndividual GemsIsolated memory per project

Strategy 3: External Data Management (Sheets or JSON)

  • Saved Info cannot handle time-series data effectively due to its lack of timestamps. The solution is external structured data.

Option A: Google Sheets + Gems

Step 1: Create a structured Sheet

DateWeight (kg)Notes
2025-12-2275.2Holiday overeating
2025-12-2574.8Resumed exercise
2025-12-2774.53 days consecutive cardio

Step 2: Create a Gem with the Sheet attached

Navigate to: gemini.google.com → Gems → Create new Gem

Instructions to include:

You are my health management assistant.
Always check the attached Google Sheets for the latest weight data.
Prioritize the most recent entry based on the Date column.
Analyze trends by comparing today's date with historical data.

Step 3: Attach your Sheet as a reference file

  • Google officially announced that Gems auto-recognize updates to attached Google Docs or Sheets. [Link]

  • "When you update a Google Docs file, it automatically updates in your Gem. Most other AI tools either can't do this or don't do it well," notes one power user. [Personal Blog]

Option B: JSON Context Files for Power Users

  • For complex personalization needs, maintain a structured JSON context file with timestamped entries. Upload at the start of each new chat, or attach to a Gem for persistent access.

  • "Gemini has always struggled with this. Instead, I maintain my own context file and inject it into new chats. If you're working with chunkable information, a JSON context file is more effective," recommends one user. [Reddit]

Strategy 4: NotebookLM Integration (December 2025)

  • The most powerful personalization option as of December 2025 is NotebookLM integration—now directly accessible within the Gemini app.

December 2025 Updates:

  • December 13: Google announced NotebookLM integration for Gemini, allowing users to attach notebooks as conversation sources. [Link]

  • December 17: The integration rolled out via gemini.google.com → Plus menu → NotebookLM. [Link]

  • December 19: NotebookLM upgraded to Gemini 3 with 8x more context capacity and new "Data Tables" output format. [Link]

FeatureSaved InfoGems (10 files)NotebookLM Integration
Source limit~10-75 items10 filesUp to 300 sources
RAG method✗ Brute-force△ Limited✓ True RAG
External web sources✓ Websites, YouTube
Cross-source search✓ Meta-search
Data export✓ Data Tables, Docs
  • "NotebookLM is, in my opinion, the best research platform. Put hundreds of websites and documents in, and it uses RAG to sort and display the most logical information for your queries," reports one enthusiastic user. [Reddit]

Strategy 5: Google Keep as Gemini's External Memory

  • While NotebookLM and Google Docs + Gems offer powerful long-term memory solutions, they share one limitation: Gemini cannot write to them directly during conversation. You must manually update Docs or add sources to NotebookLM. Google Keep fills this gap as the only Google Workspace app where Gemini can freely create, append, and delete content through natural conversation. [Link]

  • The integration works via the @Google Keep command:

ActionPrompt ExampleGemini Capability
Create Note"@Google Keep save this recipe"✓ Direct creation
Search Notes"@Google Keep what did I buy yesterday?"✓ Full-text search
Append Text"@Google Keep add today's summary to my January journal"✓ Append to existing note
Delete Note"@Google Keep delete the old shopping list"✓ Delete by title/content
Edit Note"@Google Keep update my weight entry"Not supported — requires delete + recreate
  • The critical limitation: Gemini cannot directly modify existing notes. Technical analysis confirms: "Gemini cannot directly edit notes, but it can delete them. Therefore, 'editing' a note involves deleting and recreating it." [Personal Blog] This creates a failure pattern where Gemini attempts in-place edits and fails silently.

The Workaround: Saved Information Directive

  • Adding a specific instruction to Saved Info forces Gemini to use the correct delete-then-create pattern:
When I use @Google Keep to save or update data:
1. Structure content for easy search and future updates
2. For updates: Create new note with modified content FIRST
3. Delete old note ONLY after successful creation
4. Never attempt in-place edits
  • Community reports suggest this directive significantly improves update success rates by preventing Gemini from attempting unsupported edit operations. [Reddit]

Practical Keep Workflows

  • Daily Journal Pattern: Use Append to maintain running logs without creating new notes daily:
"@Google Keep append today's key learnings to my 2026 January journal"
  • Scheduled Actions Integration: Gemini can automatically save summaries to Keep on a schedule (requires AI Pro/Ultra):
"Every Friday at 5 PM, summarize this week's conversations and save to Keep"
  • One power user reports: "I have Gemini spit out some summaries of some columnists, news outlets, and industry regulators I follow twice a day into Keep." [Reddit]

When to Use Keep vs Other Options

Use CaseRecommendedReason
Quick capture during conversationGoogle KeepOnly app Gemini can write to directly
Time-series data (weight, workouts)Google Sheets + GemBetter structure, sorting, formulas
Research knowledge baseNotebookLMTrue RAG, 300 sources
Complex project contextGems + DocsAuto-sync, rich formatting
  • Keep's strength is its role as a "capture layer"—the immediate destination for information you want preserved from a conversation. For accumulated knowledge requiring structure and analysis, periodic migration to Sheets, Docs, or NotebookLM remains advisable.

  • The combination transforms Keep from a simple sticky-note app into what one user describes as "an AI-powered personal assistant that actually remembers." [Link] The key insight: Keep provides the write path that other memory strategies lack, making it complementary rather than competitive with Gems, Sheets, or NotebookLM approaches.


The Immediate Action Checklist

  • Here's the priority-ordered action list for maximizing Gemini personalization:

Essential (Do These First)

PriorityActionPath
1Enable Gemini Apps Activity + set 36-month auto-deleteSettings → Activity
2Enable Personal Context (or disable for privacy)Settings → Personal context
3Keep Saved Info under 10 items, static preferences onlySettings → Saved info
4Use trigger phrases in every conversation"Based on my saved info..."
5Start fresh chats after 4-6 exchanges with Gemini 3 ProAvoid context degradation bug

Advanced (For Power Users)

PriorityActionPath
6Migrate time-series data to Google Sheetsdrive.google.com
7Create dedicated Gems for major use casesgemini.google.com/gems
8Attach Sheets to relevant GemsGem edit → Add files
9Remove dynamic data from Saved Infogemini.google.com/saved-info
10Set up NotebookLM integrationnotebooklm.google.com

The Troubleshooting Flowchart

  • When Gemini fails to recognize your saved information:
StepCheckConditionSolution
Step 1Which model are you using?FlashUpgrade to Pro (Flash doesn't support Personal Context)
ProProceed to Step 2
Step 2How many messages in this conversation?5+Start new chat (Gemini 3 Pro context degradation bug)
4 or fewerProceed to Step 3
Step 3Did you use an explicit trigger?NoAdd "Based on my Saved Info..."
YesSuspected bug, retry in new chat

Conclusion: Living with the Brilliant Amnesiac

  • Here is what the marketing never tells you: no matter how sophisticated Gemini, ChatGPT, or Claude becomes, none of them can actually become J.A.R.V.I.S. or Samantha—not with today's architecture. The fictional AI companions we dream of share one capability that current LLMs fundamentally lack: the ability to write new experiences directly into their own neural weights in real-time. [Link] Every "memory" feature is an external workaround—a sticky note attached to a brilliant mind that cannot form new long-term memories on its own.

  • Google's conservative approach to Gemini personalization makes more sense through this lens. If all memory is ultimately a fragile theatrical trick—context windows that overflow, summaries that lose nuance, FIFO truncation that silently drops old information—then perhaps restraint is wisdom. Each major platform has learned this lesson differently: OpenAI suffered a catastrophic memory wipe in February 2025, [Link] while Claude's transparent tool-based memory still reduces to "essentially a context file that gets iterated on over time." [Reddit]

  • Yet the trajectory points toward genuine progress. Google's December 2025 integration of NotebookLM into Gemini—with true RAG across 300 sources—represents a more honest architecture: instead of pretending the AI remembers you, it explicitly retrieves from a knowledge base you control. [Link] More fundamentally, Google Research's work on Titans (December 2024) and MIRAS (April 2025) aims to give AI genuine long-term memory within the architecture itself—the ability to update memory in real-time during inference without retraining. [Link] [Link]

  • Until that architectural breakthrough arrives, working with AI means accepting the partial amnesia. Your brilliant friend needs their notebook. They need you to say "based on what I told you to remember" to trigger the right notes. They need fresh conversations for important work because their attention degrades after a few exchanges. Master these constraints, and the collaboration can feel almost magical. Forget them, and you'll spend your time frustrated by an AI that seems to deliberately ignore everything you've shared.

  • The gap between science fiction and reality may narrow—but for now, the technology is genuinely impressive, just not in the way the movies promised.


References

  • Official Sources
    • https://support.google.com/gemini/answer/15637730 (Personal Context documentation)
    • https://support.google.com/gemini/answer/15230597 (Google Keep integration with Gemini)
    • https://workspaceupdates.googleblog.com/2024/11/upload-google-docs-and-other-file-types-to-gems.html (Gems file upload)
    • https://blog.google/products/gemini/gemini-personalization/ (Personalization announcement)
    • https://blog.google/products/gemini/gemini-drop-december-2025/ (December 2025 updates)
    • https://blog.google/products/gemini/scheduled-actions-gemini-app/ (Scheduled Actions feature)
    • https://research.google/blog/titans-miras-helping-ai-have-long-term-memory/ (Titans + MIRAS long-term memory research)
    • https://aws.amazon.com/bedrock/anthropic/ (Claude context window on AWS Bedrock)
  • Developer Forums
    • https://discuss.ai.google.dev/t/regression-report-significant-context-retention-degradation-after-dec-4-deep-think-update/111219 (official bug report)
  • Academic & Research
    • https://dl.acm.org/doi/10.1145/3735633 (Continual Learning of Large Language Models: A Comprehensive Survey, ACM Computing Surveys 2025)
    • https://en.wikipedia.org/wiki/J.A.R.V.I.S. (J.A.R.V.I.S. reference)
    • https://en.wikipedia.org/wiki/Her_(2013_film) (Her film reference)
  • Technical Analysis (Personal Blogs)
    • https://www.shloked.com/writing/gemini-memory (reverse engineering analysis)
    • https://www.shloked.com/writing/chatgpt-memory-bitter-lesson (comparative analysis)
    • https://simonwillison.net/2025/Sep/12/claude-memory/ (Claude vs ChatGPT memory comparison)
    • https://lifehacker.com/tech/saved-info-google-gemini (Saved Info character limits)
    • https://www.letta.com/blog/stateful-agents (stateful agents and LLM architecture)
    • https://grencez.dev/2025/google-keep-indent-llm-quickref-20251202/ (Google Keep + Gemini technical analysis)
  • Community Discussions (Reddit)
    • https://www.reddit.com/r/GoogleGeminiAI/comments/1lbmg9s/ (slot limit testing)
    • https://www.reddit.com/r/GeminiAI/comments/1pdxddr/ (workaround strategies)
    • https://www.reddit.com/r/GeminiAI/comments/1plornw/ (NotebookLM integration)
    • https://www.reddit.com/r/Bard/comments/1phi66l/ (Gemini 3.0 regression)
    • https://www.reddit.com/r/GeminiAI/comments/1pn2th2/ (context retention issues)
    • https://www.reddit.com/r/GoogleGeminiAI/comments/1nt6yoe/ (Gems isolation)
    • https://www.reddit.com/r/GeminiAI/comments/1mpgocw/ (European restrictions)
    • https://www.reddit.com/r/LLMDevs/comments/1l3rt10/ (system prompt analysis)
    • https://www.reddit.com/r/GeminiAI/comments/1piw8v2/ (Personal Context inconsistency)
    • https://www.reddit.com/r/ClaudeAI/comments/1orsxxi/ (Claude memory feature analysis)
    • https://www.reddit.com/r/GoogleKeep/comments/1jzwhad/ (Google Keep + Gemini integration experiences)
    • https://www.reddit.com/r/GeminiAI/comments/1lrzr25/ (Scheduled Actions with Keep)
  • News & Tech Media
    • https://9to5google.com/2025/08/13/gemini-personal-context/ (Personal Context EEA rollout announcement)
    • https://9to5google.com/2025/12/17/gemini-app-notebooklm/ (NotebookLM integration)
    • https://9to5google.com/2025/12/19/notebooklm-gemini-3-data-tables/ (NotebookLM Gemini 3 upgrade)
    • https://9to5google.com/2025/12/24/google-ai-pro-ultra-features/ (AI Pro/Ultra features)
    • https://venturebeat.com/ai/openais-gpt-5-2-is-here-what-enterprises-need-to-know (GPT-5.2 release)
    • https://llm-stats.com/blog/research/gemini-3-pro-launch (Gemini 3 Pro release November 18, 2025)
    • https://www.androidcentral.com/apps-software/googles-gemini-now-integrates-seamlessly-with-notebooklm-for-improved-project-management (NotebookLM announcement)
    • https://analyticsindiamag.com/ai-news-updates/google-launches-gemini-3-deep-think-mode-for-ultra-subscribers/ (Deep Think mode December 4, 2025)
    • https://the-decoder.com/google-outlines-miras-and-titans-a-possible-path-toward-continuously-learning-ai/ (Titans + MIRAS analysis)
    • https://www.allaboutai.com/ai-news/why-openai-wont-talk-about-chatgpt-silent-memory-crisis/ (ChatGPT February 2025 memory crisis)
    • https://www.xda-developers.com/pairing-google-keep-and-gemini/ (Google Keep + Gemini pairing guide)
    • https://www.androidpolice.com/started-using-gemini-to-create-notes-in-google-keep/ (Gemini + Keep workflow)

More from this blog

T

Taehyeong Lee | Software Engineer

58 posts

I am Software Engineer with 15 years of experience, working at Gentle Monster. I specialize in developing high-load, large-scale processing APIs using Kotlin and Spring Boot. I live in Seoul, Korea.

Why Gemini Forgets You: The Hidden Limits of Saved Info & Gems