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.3.tar.gz (172.5 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.3-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for hindsight_llamaindex-0.1.3.tar.gz
Algorithm Hash digest
SHA256 6aedbf0cedf7d5c69d6546ff4b521c2476d6446c7e52d77fa9471eaf26b7c4d9
MD5 a09e28e67a84dba6f88403def82f1fc3
BLAKE2b-256 7295d6ac7577db7ae52dfe3feb0efb8fd01c88d9b75e1539a310e472753c50b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hindsight_llamaindex-0.1.3.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.3-py3-none-any.whl.

File metadata

File hashes

Hashes for hindsight_llamaindex-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7ebaed204fbad718ed5cdc5fb5065736c461d1ad038bee0f8ac5ffefa4cac29e
MD5 3fa6cf8bca7eb15440a1178ff04b1931
BLAKE2b-256 800d4646e99362171c2767af2e717f21f9aa9a1fe598a513ab9a8e0d396ff55b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hindsight_llamaindex-0.1.3-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