Skip to main content

LlamaIndex integration for Hindsight - persistent memory for AI agents

Project description

hindsight-llamaindex

LlamaIndex integration for Hindsight — persistent long-term memory for AI agents.

Provides two complementary patterns:

  • Tools (HindsightToolSpec) — Agent-driven memory via LlamaIndex's BaseToolSpec. The agent decides when to retain/recall/reflect.
  • Memory (HindsightMemory) — Automatic memory via LlamaIndex's BaseMemory interface. Messages are stored on every turn and recalled as context.

Installation

pip install hindsight-llamaindex

Quick Start: Agent Tools

import asyncio
from hindsight_client import Hindsight
from hindsight_llamaindex import HindsightToolSpec
from llama_index.llms.openai import OpenAI
from llama_index.core.agent import ReActAgent

async def main():
    client = Hindsight(base_url="http://localhost:8888")

    spec = HindsightToolSpec(
        client=client,
        bank_id="user-123",
        mission="Track user preferences",
    )
    tools = spec.to_tool_list()

    agent = ReActAgent(tools=tools, llm=OpenAI(model="gpt-4o"))
    response = await agent.run("Remember that I prefer dark mode")
    print(response)

asyncio.run(main())

Quick Start: Automatic Memory

from hindsight_client import Hindsight
from hindsight_llamaindex import HindsightMemory

client = Hindsight(base_url="http://localhost:8888")
memory = HindsightMemory.from_client(
    client=client,
    bank_id="user-123",
    mission="Track user preferences",
)

agent = ReActAgent(tools=tools, llm=llm, memory=memory)

Configuration

from hindsight_llamaindex import configure

configure(
    hindsight_api_url="http://localhost:8888",
    api_key="your-api-key",
    budget="mid",
    tags=["source:llamaindex"],
    context="my-app",
    mission="Track user preferences",
)

Requirements

  • Python 3.10+
  • llama-index-core >= 0.11.0
  • hindsight-client >= 0.4.0

Documentation

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

hindsight_llamaindex-0.1.5.tar.gz (188.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hindsight_llamaindex-0.1.5-py3-none-any.whl (13.4 kB view details)

Uploaded Python 3

File details

Details for the file hindsight_llamaindex-0.1.5.tar.gz.

File metadata

  • Download URL: hindsight_llamaindex-0.1.5.tar.gz
  • Upload date:
  • Size: 188.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hindsight_llamaindex-0.1.5.tar.gz
Algorithm Hash digest
SHA256 ed088297141ecd1836dabd701f82c308643587d74c7cbf6f2e6eaf032eeefa32
MD5 e3c498c3380400daaa2241385a9dbd99
BLAKE2b-256 96b2a877d34ea2c38709edc9ae1694cba3840a1279241ff9daf4b12022924d64

See more details on using hashes here.

Provenance

The following attestation bundles were made for hindsight_llamaindex-0.1.5.tar.gz:

Publisher: release-integration.yml on vectorize-io/hindsight

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hindsight_llamaindex-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for hindsight_llamaindex-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 4de8487b43c79cdd83455d3fa350c490f2fc2c67bf7a97c347ec828f2951a863
MD5 c4ec8e7ae725e1794d16f9e2947fd4e6
BLAKE2b-256 dec7eec63e0ea03dea9dc64741667922b47c9b0fdd096d9303854e359ce3b38f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hindsight_llamaindex-0.1.5-py3-none-any.whl:

Publisher: release-integration.yml on vectorize-io/hindsight

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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