Topic: Gemini Advanced export

Gemini Advanced Export — Does Google One Subscription Change What You Can Export?

Gemini Advanced is a subscription tier inside Google One that grants access to Google's most capable Gemini models — Gemini 2.0 Pro and Gemini 2.0 Ultra. It is not a separate application and not a separate storage system. If you've been using Gemini Advanced and want to export your conversation history, the path is identical to standard Gemini. What's different — and confusing — is the boundary between personal Gemini, Gemini Advanced, Google Workspace Gemini, and Gem configurations. This page covers all four.

TL;DR

Gemini Advanced subscribers use the same export path as all Gemini users: Google Takeout → Gemini Apps → export → HTML files. The Advanced subscription changes which models are available to you in the interface; it does not change how or where conversations are stored. Gem conversation history IS in the export. Gem configurations (system prompts) are NOT. If your organisation provides Gemini for Google Workspace, those conversations are NOT in your personal Takeout — that's a separate admin-level export.

What Gemini Advanced actually is

Gemini Advanced is a subscription tier available through Google One (currently priced at around $19.99/month, bundled with Google One AI Premium which also includes 2TB of Google Drive storage). The subscription grants access to:

Critically: all of these capabilities run in the same gemini.google.com interface, against the same account-level storage. There is no "Gemini Advanced history" separate from "Gemini history" — there is one conversation history per Google account, accessible via the same Takeout path regardless of which model tier was used in each conversation.

Export path for Gemini Advanced

The export process is identical for all Gemini users, including Advanced subscribers:

  1. Go to takeout.google.com while signed in to your Google account.
  2. Click "Deselect all" to clear the default full-account selection.
  3. Scroll to find "Gemini Apps" and check that item only.
  4. Click Next step → choose export frequency (once), file type (.zip), and delivery method (download link to email).
  5. Click "Create export". Google sends an email when the archive is ready — typically within 30 minutes for small accounts, up to 24 hours for accounts with several years of history.
  6. Download and unzip. Find your conversations in the Takeout/Gemini Apps/My Activity/Gemini/ directory.

What the archive contains

Each conversation appears as an HTML file named by conversation timestamp. The structure is the same as standard Gemini exports — there is no flag or field in the HTML that identifies whether a conversation used a standard or Advanced model. If you used Gemini 2.0 Ultra for a session, the HTML looks identical to a session conducted with Gemini 1.5 Flash. The Advanced tier affects the response quality; it doesn't add any metadata to the export.

What is NOT in the export

The same gaps that exist in standard Gemini exports apply to Advanced exports:

Gems: what exports and what doesn't

Gems are Gemini Advanced's equivalent of ChatGPT Custom GPTs — custom AI personas you configure with a name, system instructions, and a default model. The distinction between what exports and what doesn't is important for anyone who has invested in building Gems for technical work.

Gem conversation history — included

All conversations you had with a Gem appear in the Google Takeout export as standard HTML conversation files. The conversations include the turns (your prompts and the Gem's responses) in the same format as regular Gemini conversations. There is no field in the HTML that identifies which Gem was used — conversations with a Gem and conversations with standard Gemini look identical in the export.

Gem configurations — not included

The Gem's system instructions (the "Instructions" field in Gem settings), the Gem's name, and any model parameter overrides are NOT in the Takeout export. This is the same gap as ChatGPT Custom GPTs: the configuration that makes the Gem useful is not portable via the data export.

The practical risk: if you delete a Gem, the system instructions are permanently deleted. The conversation history with that Gem remains in Takeout. To protect Gem configurations:

  1. Open each Gem's settings (click the Gem → edit icon).
  2. Copy the Instructions field to a text file or your knowledge base.
  3. Store alongside the Gem's name and purpose in a location you control (Notion, a private Git repo, etc.).

Unlike ChatGPT Custom GPTs, Gems cannot be exported via API — there is no programmatic way to retrieve Gem configurations at scale. Manual copy is the only option.

Google-provided Gems — not modifiable, not exportable

Google provides several built-in Gems (e.g., "Coding partner", "Learning coach", "Resume builder"). These cannot be edited or exported — they have no user-editable configuration. Conversations with Google-provided Gems are in your Takeout export, same as user-created Gems.

Gemini Advanced vs Gemini for Google Workspace — the account boundary

This is the most common source of confusion for engineers who use Google products at work and at home. There are three distinct Google Gemini products with separate storage:

Product Who gets it Conversations stored Export path
Gemini (standard) Any Google account (free) Google's servers, personal account Google Takeout, personal account
Gemini Advanced Google One AI Premium subscribers Google's servers, same personal account store as standard Google Takeout, personal account — same path as standard
Gemini for Google Workspace Organisations on Workspace Business or Enterprise plan with Gemini add-on Google's servers, organisation's Workspace data store Google Vault (admin) or Workspace admin console — NOT in personal Takeout

If you use the same Google account for personal Gemini and Workspace Gemini, your personal Takeout export contains only the personal Gemini conversations — not the Workspace ones. This is a hard account boundary, not a filter: the Workspace conversations physically do not exist in the personal Takeout store. The Gemini Workspace export guide covers the admin console path for Workspace data.

How to tell which product a session used

In the gemini.google.com interface, sessions show the model name below the Gemini header (e.g., "Gemini 2.0 Ultra"). Sessions conducted through Gmail's "Ask Gemini" sidebar or Docs' "Help me write" do not appear in gemini.google.com history at all — those are Workspace Gemini integration surfaces with their own storage scope. Personal Takeout captures only gemini.google.com conversations.

Data retention and GDPR for Gemini Advanced

Retention settings

Gemini Advanced uses the same data retention settings as standard Gemini. The defaults: conversation history is stored for 18 months from the date of each conversation, after which it is automatically deleted. You can change this (shorter or off entirely) at myaccount.google.com → Data & privacy → Web & App Activity → Gemini Apps Activity. Setting activity to "off" stops new conversations from being saved and deletes all stored Gemini conversation history — which also prevents those conversations from appearing in future Takeout exports.

GDPR data subject access requests

GDPR rights for Gemini Advanced are the same as for standard Gemini — Google is the data controller for personal Google accounts, and the rights of access, portability, and erasure apply. Google Takeout is the standard GDPR portability response path. For erasure requests: deleting individual conversations via the Gemini interface or clearing all activity via My Activity both trigger deletion from Google's stores within the standard 30-180 day backend deletion window.

AI training opt-out

By default, Google may use Gemini conversations to improve its products and train models. This applies to both standard Gemini and Gemini Advanced — the Advanced subscription does not include an automatic opt-out from training use. To opt out: myaccount.google.com → Data & privacy → Web & App Activity → Gemini Apps Activity → turn off "Include training data". Google Workspace accounts under an enterprise plan may have this opt-out applied at the organisation level by the admin.

Parsing the Gemini Advanced export for decision extraction

The HTML format of Gemini Advanced exports is identical to standard Gemini exports. The same HTML-to-JSON conversion approach applies. A minimal Python script to extract turns from Gemini HTML files:

from bs4 import BeautifulSoup
import json, sys, pathlib

def parse_gemini_html(html_path):
    soup = BeautifulSoup(pathlib.Path(html_path).read_text(encoding='utf-8'), 'html.parser')
    turns = []
    for container in soup.find_all(['div', 'p'], class_=lambda c: c and ('user' in c or 'model' in c)):
        role = 'user' if 'user' in (container.get('class') or []) else 'model'
        text = container.get_text(separator='\n', strip=True)
        if text:
            turns.append({'role': role, 'text': text})
    return turns

if __name__ == '__main__':
    for path in sys.argv[1:]:
        turns = parse_gemini_html(path)
        print(json.dumps({'file': path, 'turns': turns}, indent=2))

Note: Google's Gemini HTML structure uses class names that vary by export vintage. If the above script produces empty output, inspect the raw HTML with a browser dev tools to identify the current class names used for user and model turns, and update the class filter accordingly. The content structure (alternating user/model turns in <div> blocks) is stable even when specific class names change.

Session boundary reconstruction

Gemini exports individual conversation turns as HTML files without a session-grouping field. To reconstruct session boundaries, sort files by the timestamp in the filename and group consecutive turns with gaps of less than 2 hours as belonging to the same session. This approach has false positives (two separate sessions close in time) and false negatives (a long deliberation session with a multi-hour break), but is accurate enough for decision-extraction purposes where session boundaries are a secondary concern behind turn-level content.

Why Advanced-tier sessions are worth prioritising for extraction

Engineers who pay for Gemini Advanced typically reserve it for complex reasoning tasks — architecture deliberations, trade-off analyses, constraint surfacing — because that's where the model quality difference justifies the cost. This means the subset of Gemini conversations most likely to contain architectural decisions is disproportionately concentrated in Advanced-tier sessions. If you're triaging which Gemini sessions to process with the WhyChose extractor, sessions that used Gemini 2.0 Pro or Ultra (identifiable from the model name mentioned in the HTML if Google includes it, or by session length and complexity) are the highest-priority candidates.

What changed in 2025–2026 for Gemini Advanced users

Several changes in the past year affect what Advanced subscribers can export:

Further Reading

Decision-rich sessions are worth more than their raw text

Gemini Advanced subscribers use the most capable models for complex architectural reasoning — which means those conversation exports contain some of the highest-quality decision material available across any AI platform. The WhyChose extractor processes Gemini exports (via the HTML-to-JSON conversion step described above) and surfaces the sessions where architectural alternatives were evaluated and rejected. The reasoning that was worth paying for is worth preserving.

Run the open-source extractor   Get hosted access