The Upstreet Agents SDK is now in public beta 🎉 Get started →
📚 react-agents docsContexts

<RAGMemory>

Add long term memories to your agent.

The RAGMemory component enables your agent to maintain long-term memory through a question-answer database system. This allows the agent to remember and recall information from previous conversations and interactions. The memory is shared across conversations.

Import

import { RAGMemory } from 'react-agents';

Usage

  1. Add the component to your agent:
    import { RAGMemory } from 'react-agents';
     
    return (
      <Agent>
        {/* ... */}
        <RAGMemory />
        {/* ... */}
      </Agent>
    );

On this page

Facing an issue? Add a ticket.