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

# Welcome to Hystersis

> Persistent memory infrastructure for AI agents. Memory that adapts. Intelligence that compounds.

# Hystersis

**Give your AI agents persistent memory that compounds over time.**

Hystersis is an open-source memory infrastructure for AI agents. It provides semantic search, knowledge graphs, and procedural memory that grows with every interaction.

<img src="https://mintcdn.com/hystersis-510bad77/wB-1lV8z0CzteIqk/images/architecture.svg?fit=max&auto=format&n=wB-1lV8z0CzteIqk&q=85&s=240eee916be2e7bec09fc7b7c01de333" alt="Hystersis Architecture" style={{width: '100%', maxWidth: '800px', margin: '20px 0'}} width="800" height="400" data-path="images/architecture.svg" />

## Why Hystersis?

* **Memory That Adapts** - Agents learn from past interactions
* **Knowledge Graphs** - Understand relationships between entities
* **Semantic Search** - Find information using natural language
* **Multi-Agent Support** - Shared memory across agent teams
* **85% Compression** - Efficient storage without losing context

## Quick Start

```python theme={null}
from hystersis import Hystersis

client = Hystersis("https://api.hystersis.com", api_key="your-key")

# Create a memory
memory = client.create_memory(
    content="User loves machine learning",
    user_id="user-123"
)

# Search semantically
results = client.search("deep learning AI")
```

## Features

| Feature               | Description                       |
| --------------------- | --------------------------------- |
| Conversational Memory | Session-based message history     |
| Semantic Search       | Vector-based similarity search    |
| Knowledge Graph       | Entities with typed relationships |
| Procedural Memory     | Extract and reuse skills          |
| Multi-Agent Pool      | Real-time shared memory           |

## Status

Current status: **Operational**

[![Better Stack](https://uptime.betterstack.io/badge/uptime/svg/123456)](https://status.hystersis.com)

## License

MIT License - See [GitHub](https://github.com/Himan-D/agent-memory) for details.
