Skip to main content

Strands Agents

Persistent memory tools for Strands Agents SDK agents via Hindsight. Give your agents long-term memory with retain, recall, and reflect — using Strands' native @tool pattern.

Features

  • Native @tool Functions - Tools are plain Python functions, compatible with Agent(tools=[...])
  • Memory Instructions - Pre-recall memories for injection into agent system prompt
  • Three Memory Tools - Retain (store), Recall (search), Reflect (synthesize) — include any combination
  • Simple Configuration - Configure once globally, or pass a client directly

Installation

pip install hindsight-strands

Quick Start

from strands import Agent
from hindsight_strands import create_hindsight_tools

tools = create_hindsight_tools(
bank_id="user-123",
hindsight_api_url="http://localhost:8888",
)

agent = Agent(tools=tools)
agent("Remember that I prefer dark mode")
agent("What are my preferences?")

The agent now has three tools it can call:

  • hindsight_retain — Store information to long-term memory
  • hindsight_recall — Search long-term memory for relevant facts
  • hindsight_reflect — Synthesize a reasoned answer from memories

With Memory Instructions

Pre-recall relevant memories and inject them into the system prompt:

from hindsight_strands import create_hindsight_tools, memory_instructions

tools = create_hindsight_tools(
bank_id="user-123",
hindsight_api_url="http://localhost:8888",
)

memories = memory_instructions(
bank_id="user-123",
hindsight_api_url="http://localhost:8888",
)

agent = Agent(
tools=tools,
system_prompt=f"You are a helpful assistant.\n\n{memories}",
)

Selecting Tools

Include only the tools you need:

tools = create_hindsight_tools(
bank_id="user-123",
hindsight_api_url="http://localhost:8888",
enable_retain=True,
enable_recall=True,
enable_reflect=False, # Omit reflect
)

Global Configuration

Instead of passing connection details to every call, configure once:

from hindsight_strands import configure, create_hindsight_tools

configure(
hindsight_api_url="http://localhost:8888",
api_key="your-api-key", # Or set HINDSIGHT_API_KEY env var
budget="mid", # Recall budget: low/mid/high
max_tokens=4096, # Max tokens for recall results
tags=["env:prod"], # Tags for stored memories
recall_tags=["scope:global"], # Tags to filter recall
recall_tags_match="any", # Tag match mode: any/all/any_strict/all_strict
)

# Now create tools without passing connection details
tools = create_hindsight_tools(bank_id="user-123")

Configuration Reference

create_hindsight_tools()

ParameterDefaultDescription
bank_idrequiredHindsight memory bank ID
clientNonePre-configured Hindsight client
hindsight_api_urlNoneAPI URL (used if no client provided)
api_keyNoneAPI key (used if no client provided)
budget"mid"Recall/reflect budget level (low/mid/high)
max_tokens4096Maximum tokens for recall results
tagsNoneTags applied when storing memories
recall_tagsNoneTags to filter when searching
recall_tags_match"any"Tag matching mode
enable_retainTrueInclude the retain (store) tool
enable_recallTrueInclude the recall (search) tool
enable_reflectTrueInclude the reflect (synthesize) tool

memory_instructions()

ParameterDefaultDescription
bank_idrequiredHindsight memory bank ID
clientNonePre-configured Hindsight client
hindsight_api_urlNoneAPI URL (used if no client provided)
api_keyNoneAPI key (used if no client provided)
query"relevant context about the user"Recall query for memory injection
budget"low"Recall budget level
max_results5Maximum memories to inject
max_tokens4096Maximum tokens for recall results
prefix"Relevant memories:\n"Text prepended before memory list
tagsNoneTags to filter recall results
tags_match"any"Tag matching mode

configure()

ParameterDefaultDescription
hindsight_api_urlProduction APIHindsight API URL
api_keyHINDSIGHT_API_KEY envAPI key for authentication
budget"mid"Default recall budget level
max_tokens4096Default max tokens for recall
tagsNoneDefault tags for retain operations
recall_tagsNoneDefault tags to filter recall
recall_tags_match"any"Default tag matching mode
verboseFalseEnable verbose logging

Requirements

  • Python >= 3.10
  • strands-agents
  • hindsight-client >= 0.4.0
  • A running Hindsight API server