Skip to main content

Memory library for Haystack NLP agents.

Project description

Haystack Memory

Memory for haystack Agents. The library implements a working memory that stores the agent's conversation memory and a sensory memory that stores the agent's short-term sensory memory. The working memory can be utilized in-memory or through Redis, with the Redis implementation featuring a sliding window. On the other hand, the sensory memory is an in-memory implementation that mimics a human's brief sensory memory, lasting only for the duration of one interaction..

Installation

  • Python pip: pip install --upgrade haystack-memory . This method will attempt to install the dependencies (farm-haystack>=1.15.0, redis)
  • Python pip (skip dependency installation): Use pip install --upgrade haystack-memory --no-deps
  • Using git: pip install git+https://github.com/rolandtannous/haystack-memory.git@main#egg=haystack-memory

Usage

To use memory in your agent, you need three components:

  • MemoryRecallNode: This node is added to the agent as a tool. It will allow the agent to remember the conversation and make query-memory associations.
  • MemoryUtils: This class should be used to save the queries and the final agent answers to the conversation memory.
  • chat: This is a method of the MemoryUtils class. It is used to chat with the agent. It will save the query and the answer to the memory. It also returns the full result for further usage.
from haystack.agents import Agent, Tool
from haystack.nodes import PromptNode
from haystack_memory.prompt_templates import memory_template
from haystack_memory.memory import MemoryRecallNode
from haystack_memory.utils import MemoryUtils

# Initialize the memory and the memory tool so the agent can retrieve the memory
working_memory = []
sensory_memory = []
memory_node = MemoryRecallNode(memory=working_memory)
memory_tool = Tool(name="Memory",
                   pipeline_or_node=memory_node,
                   description="Your memory. Always access this tool first to remember what you have learned.")

prompt_node = PromptNode(model_name_or_path="text-davinci-003", 
                         api_key="<YOUR_OPENAI_KEY>", 
                         max_length=1024,
                         stop_words=["Observation:"])
memory_agent = Agent(prompt_node=prompt_node, prompt_template=memory_template)
memory_agent.add_tool(memory_tool)

# Initialize the utils to save the query and the answers to the memory
memory_utils = MemoryUtils(working_memory=working_memory,sensory_memory=sensory_memory, agent=memory_agent)
result = memory_utils.chat("<Your Question>")
print(working_memory)

Redis

The working memory can also be stored in a redis database which makes it possible to use different memories at the same time to be used with multiple agents. Additionally, it supports a sliding window to only utilize the last k messages.

from haystack.agents import Agent, Tool
from haystack.nodes import PromptNode
from haystack_memory.memory import RedisMemoryRecallNode
from haystack_memory.prompt_templates import memory_template
from haystack_memory.utils import RedisUtils

sensory_memory = []
# Initialize the memory and the memory tool so the agent can retrieve the memory
redis_memory_node = RedisMemoryRecallNode(memory_id="working_memory",
                                          host="localhost",
                                          port=6379,
                                          db=0)
memory_tool = Tool(name="Memory",
                   pipeline_or_node=redis_memory_node,
                   description="Your memory. Always access this tool first to remember what you have learned.")
prompt_node = PromptNode(model_name_or_path="text-davinci-003",
                         api_key="<YOUR_OPENAI_KEY>",
                         max_length=1024,
                         stop_words=["Observation:"])
memory_agent = Agent(prompt_node=prompt_node, prompt_template=memory_template)
# Initialize the utils to save the query and the answers to the memory
redis_utils = RedisUtils(agent=memory_agent,
                         sensory_memory=sensory_memory,
                         memory_id="working_memory",
                         host="localhost",
                         port=6379,
                         db=0)
result = redis_utils.chat("<Your Question>")

Examples

Examples can be found in the examples/ folder. They contain usage examples for both in-memory and Redis memory types. To open the examples in colab, click on the following links:

  • Basic Memory: Open In Colab
  • Redis Memory: Open In Colab

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

haystack_memory-0.7.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

haystack_memory-0.7-py3-none-any.whl (6.4 kB view details)

Uploaded Python 3

File details

Details for the file haystack_memory-0.7.tar.gz.

File metadata

  • Download URL: haystack_memory-0.7.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for haystack_memory-0.7.tar.gz
Algorithm Hash digest
SHA256 aee759aece813ddf1d3c54fa5c24712580d4c5a98e229dff3a68e04c2f8cc986
MD5 f0649b5db344a4441479bc8d86cc583c
BLAKE2b-256 0c0383187245bcaf95ace1c3545b2245c2d8d0e3ae725bea1b170656aba60758

See more details on using hashes here.

File details

Details for the file haystack_memory-0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for haystack_memory-0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 f301afcc0c40b16e4413243892f23c322a1c8111c56edf3b433129f78e55a923
MD5 bff644213745150e77576130e50b23f3
BLAKE2b-256 9da7c24115006078514bf0489cba995145446c5b0df5f44dc349d1142a677ccd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page