Docs SOC2 and HIPAA update (#3075)

This commit is contained in:
Antaripa Saha
2025-07-01 13:51:53 +05:30
committed by GitHub
parent 6c69599db9
commit 75482fdb29
115 changed files with 126 additions and 111 deletions

View File

@@ -5,7 +5,7 @@ icon: "gear"
iconType: "solid"
---
<Snippet file="paper-release.mdx" />
<Snippet file="security-compliance.mdx" />
Mem0 provides two core operations for managing memories in AI applications: adding new memories and searching existing ones. This guide covers how these operations work and how to use them effectively in your application.

View File

@@ -5,6 +5,8 @@ icon: "plus"
iconType: "solid"
---
<Snippet file="security-compliance.mdx" />
## Overview
The `add` operation is how you store memory into Mem0. Whether you're working with a chatbot, a voice assistant, or a multi-agent system, this is the entry point to create long-term memory.

View File

@@ -5,6 +5,8 @@ icon: "trash"
iconType: "solid"
---
<Snippet file="security-compliance.mdx" />
## Overview
Memories can become outdated, irrelevant, or need to be removed for privacy or compliance reasons. Mem0 offers flexible ways to delete memory:

View File

@@ -5,6 +5,8 @@ icon: "magnifying-glass"
iconType: "solid"
---
<Snippet file="security-compliance.mdx" />
## Overview
The `search` operation allows you to retrieve relevant memories based on a natural language query and optional filters like user ID, agent ID, categories, and more. This is the foundation of giving your agents memory-aware behavior.

View File

@@ -5,6 +5,8 @@ icon: "pencil"
iconType: "solid"
---
<Snippet file="security-compliance.mdx" />
## Overview
User preferences, interests, and behaviors often evolve over time. The `update` operation lets you revise a stored memory, whether it's updating facts and memories, rephrasing a message, or enriching metadata.

View File

@@ -5,7 +5,7 @@ icon: "memory"
iconType: "solid"
---
<Snippet file="paper-release.mdx" />
<Snippet file="security-compliance.mdx" />
To build useful AI applications, we need to understand how different memory systems work together. This guide explores the fundamental types of memory in AI systems and shows how Mem0 implements these concepts.