> ## 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 keep MemoryPlugin out of a chat?

> Have a conversation without memories, recall, or sync touching it

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" />

By default, MemoryPlugin only joins a chat when you invite it. If you never activate the chat, no memories go in. Here is how to stay in control of each piece.

## Keep memories out

* **Don't activate the chat.** No inject click, no memories. This is the default.
* **Using auto-inject?** Every new chat shows an **Auto-injecting memories** prompt with a 5-second countdown. Click **Cancel** and that conversation stays memory-free.

## Keep chat history recall out

With **Chat History Recall** on, the AI can pull context from your past chats. Two ways to stop it:

* **For one message:** include `#nohistory` anywhere in the message.
* **Per chat:** when the **Add chat history context?** prompt appears before sending, choose **Skip this chat**.

## Keep a conversation out of sync

* **Before it happens:** auto-sync is off by default and per platform. Leave a platform's toggle off in Settings under **Background Sync**, and sync manually with **Choose chats...** to hand-pick what goes in.
* **After it's synced:** exclude the conversation from the [Chat History dashboard](/features/chat-history/dashboard#excluding-chats). Excluding deletes the chat's content and vectors and stops it from ever being re-imported; a placeholder with the title remains so you can undo later.

<Note>
  **Exclude** stops a chat from coming back on future syncs and uploads. **Delete** just removes it now, and it can return the next time that conversation syncs.
</Note>

## Related

<CardGroup cols={2}>
  <Card title="Chat History dashboard" icon="table-columns" href="/features/chat-history/dashboard">
    Exclusions, deletion, and managing synced chats
  </Card>

  <Card title="Browser Extension" icon="browser" href="/integrations/browser-extension">
    All the settings in one place
  </Card>
</CardGroup>
