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.2.tar.gz (171.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.2-py3-none-any.whl (11.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: hindsight_llamaindex-0.1.2.tar.gz
  • Upload date:
  • Size: 171.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.2.tar.gz
Algorithm Hash digest
SHA256 50353d9da2ef3b07cca943ebef159c49c797910efb76cdd679ca4429093de58b
MD5 09d8d399279b628ab848a940cf986b84
BLAKE2b-256 de04d6c18227b839ba414b19512ec6d217bc2eb9378d619a1ac2416e5d886cd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for hindsight_llamaindex-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a41984c3f17fb7d8b6481635ef55456a13d3c497d22955e64c9d305bf8b2acc2
MD5 b419997b57603a6caac45dd36a463abd
BLAKE2b-256 6b2d118d753fd6681c633c5552ec023f64b0edab510e40ffc4ebf987d1008669

See more details on using hashes here.

Provenance

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