> ## Documentation Index
> Fetch the complete documentation index at: https://help.memoryplugin.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How do I import my ChatGPT memories?

> Copy the memories ChatGPT has saved about you into MemoryPlugin in one click

export const ArticleInfo = ({author, lastUpdated}) => {
  const authorAvatar = author === 'Alara' ? '/images/author-alara.jpg' : author === 'asad' ? '/images/author-alara.jpg' : null;
  const formatDate = dateInput => {
    if (!dateInput) return '';
    if (typeof dateInput === 'string' && !dateInput.match(/^\d{4}-\d{2}-\d{2}/)) {
      return dateInput;
    }
    try {
      const date = new Date(dateInput);
      const now = new Date();
      const diffTime = Math.abs(now - date);
      const diffDays = Math.floor(diffTime / (1000 * 60 * 60 * 24));
      if (diffDays === 0) return 'today';
      if (diffDays === 1) return '1 day ago';
      if (diffDays < 7) return `${diffDays} days ago`;
      if (diffDays < 30) return `${Math.ceil(diffDays / 7)} week${Math.ceil(diffDays / 7) > 1 ? 's' : ''} ago`;
      if (diffDays < 365) return `${Math.ceil(diffDays / 30)} month${Math.ceil(diffDays / 30) > 1 ? 's' : ''} ago`;
      return `${Math.ceil(diffDays / 365)} year${Math.ceil(diffDays / 365) > 1 ? 's' : ''} ago`;
    } catch {
      return dateInput;
    }
  };
  return <div style={{
    display: "flex",
    alignItems: "center",
    gap: "8px",
    marginBottom: "16px",
    padding: "8px 12px",
    backgroundColor: "var(--ifm-color-emphasis-100)",
    borderRadius: "6px",
    fontSize: "14px",
    color: "var(--ifm-color-content-secondary)",
    border: "1px solid var(--ifm-color-emphasis-200)",
    opacity: "0.8"
  }}>
      <div style={{
    width: "40px",
    height: "40px",
    borderRadius: "50%",
    background: authorAvatar || "linear-gradient(45deg, #4F46E5, #7C3AED)",
    display: "flex",
    alignItems: "center",
    justifyContent: "center",
    color: "white",
    fontWeight: "bold",
    fontSize: "18px"
  }}>
        {authorAvatar ? <img src={authorAvatar} alt={author} style={{
    width: "100%",
    height: "100%",
    borderRadius: "50%"
  }} /> : author?.[0]?.toUpperCase()}
      </div>
      <div>
        <div style={{
    fontWeight: "400",
    fontSize: "14px"
  }}>Written by <span style={{
    fontWeight: "600"
  }}>{author}</span></div>
        <div style={{
    fontSize: "14px"
  }}>Last updated <span style={{
    fontWeight: "600"
  }}>{formatDate(lastUpdated)}</span></div>
      </div>
    </div>;
};

<ArticleInfo author="Alara" lastUpdated="2026-07-12" />

With the [browser extension](/integrations/browser-extension) installed, open ChatGPT's saved-memories screen (**Settings** → **Personalization** → **Manage memories**) and click the **Sync Memories** button the extension adds there. Every memory ChatGPT has stored about you is copied into MemoryPlugin.

## The short version

<Steps>
  <Step title="Open ChatGPT's memory settings">
    In the browser where the extension is installed: **Settings** → **Personalization** → **Manage memories**. (OpenAI moves these around; you're looking for the screen that lists your saved memories.)
  </Step>

  <Step title="Click Sync Memories">
    The button with the MemoryPlugin logo is added by the extension. It shows progress like **Syncing (3/12)...** as it copies.
  </Step>

  <Step title="Keep the tab open">
    The sync runs in the page, so don't close the tab or switch conversations until it finishes.
  </Step>
</Steps>

## Worth knowing

* Imported memories land in your **General** bucket. Move them into other [buckets](/features/memory-buckets) afterward if you want.
* Re-running the sync does not create duplicates, so it's safe to click again if you're unsure it finished.
* Nothing is removed from ChatGPT. This is a copy, not a move.
* This imports ChatGPT's **saved memories**, not your conversations. For those, see [Chat History](/features/chat-history/introduction).

For screenshots and troubleshooting (like the button not appearing), see the [full walkthrough](/features/chatgpt-memory-import).

## Related

<CardGroup cols={2}>
  <Card title="Full import walkthrough" icon="download" href="/features/chatgpt-memory-import">
    Every step with screenshots and common issues
  </Card>

  <Card title="Import from a file" icon="arrow-right-arrow-left" href="/features/import-export">
    Load memories from CSV or JSON instead
  </Card>
</CardGroup>
