[PR #3396] docs: add Hindsight integration (tools, store, provider) #3451

Open
opened 2026-06-05 18:23:09 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/3396
Author: @DK09876
Created: 3/31/2026
Status: 🔄 Open

Base: mainHead: hindsight-integration-docs


📝 Commits (2)

  • 19be1d0 docs: add Hindsight integration pages (provider, tools, store)
  • cd2763e fix: remove spaced em dashes to pass Vale prose linting

📊 Changes

6 files changed (+516 additions, -0 deletions)

View changed files

📝 src/oss/python/integrations/providers/all_providers.mdx (+8 -0)
src/oss/python/integrations/providers/hindsight.mdx (+91 -0)
src/oss/python/integrations/stores/hindsight.mdx (+161 -0)
📝 src/oss/python/integrations/stores/index.mdx (+1 -0)
src/oss/python/integrations/tools/hindsight.mdx (+254 -0)
📝 src/oss/python/integrations/tools/index.mdx (+1 -0)

📄 Description

Summary

Adds documentation for the hindsight-langgraph package — an open-source (MIT) long-term memory engine integration for LangChain and LangGraph agents.

Hindsight gives agents the ability to store, recall, and synthesize memories across conversations using four parallel retrieval strategies (semantic, BM25, graph traversal, temporal).

Pages added

  • Provider page (providers/hindsight.mdx): Overview, local setup (Docker/pip), installation, and links to component pages
  • Tools page (tools/hindsight.mdx): create_hindsight_tools() — retain/recall/reflect tools for agent-driven memory, plus LangGraph nodes for automatic memory injection
  • Store page (stores/hindsight.mdx): HindsightStore — drop-in BaseStore replacement for InMemoryStore with semantic search

Index updates

  • Added Hindsight card to stores/index.mdx
  • Added Hindsight card to tools/index.mdx
  • Added Hindsight card to providers/all_providers.mdx

Package details

Test plan

  • Verify all three pages render correctly
  • Verify internal links resolve (/oss/integrations/tools/hindsight, /oss/integrations/stores/hindsight, /oss/integrations/providers/hindsight)
  • Verify cards appear in tools index, stores index, and all providers listing
  • Run make broken-links to check for broken links

🤖 Generated with Claude Code


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/3396 **Author:** [@DK09876](https://github.com/DK09876) **Created:** 3/31/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `hindsight-integration-docs` --- ### 📝 Commits (2) - [`19be1d0`](https://github.com/langchain-ai/docs/commit/19be1d03df2676e660c285bc8eeb75f41a4ebefa) docs: add Hindsight integration pages (provider, tools, store) - [`cd2763e`](https://github.com/langchain-ai/docs/commit/cd2763e7ee80ee03ea3d5a8fc93a69c65f5a0176) fix: remove spaced em dashes to pass Vale prose linting ### 📊 Changes **6 files changed** (+516 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `src/oss/python/integrations/providers/all_providers.mdx` (+8 -0) ➕ `src/oss/python/integrations/providers/hindsight.mdx` (+91 -0) ➕ `src/oss/python/integrations/stores/hindsight.mdx` (+161 -0) 📝 `src/oss/python/integrations/stores/index.mdx` (+1 -0) ➕ `src/oss/python/integrations/tools/hindsight.mdx` (+254 -0) 📝 `src/oss/python/integrations/tools/index.mdx` (+1 -0) </details> ### 📄 Description ## Summary Adds documentation for the [hindsight-langgraph](https://pypi.org/project/hindsight-langgraph/) package — an open-source (MIT) long-term memory engine integration for LangChain and LangGraph agents. [Hindsight](https://github.com/vectorize-io/hindsight) gives agents the ability to store, recall, and synthesize memories across conversations using four parallel retrieval strategies (semantic, BM25, graph traversal, temporal). ### Pages added - **Provider page** (`providers/hindsight.mdx`): Overview, local setup (Docker/pip), installation, and links to component pages - **Tools page** (`tools/hindsight.mdx`): `create_hindsight_tools()` — retain/recall/reflect tools for agent-driven memory, plus LangGraph nodes for automatic memory injection - **Store page** (`stores/hindsight.mdx`): `HindsightStore` — drop-in `BaseStore` replacement for `InMemoryStore` with semantic search ### Index updates - Added Hindsight card to `stores/index.mdx` - Added Hindsight card to `tools/index.mdx` - Added Hindsight card to `providers/all_providers.mdx` ### Package details - PyPI: [hindsight-langgraph](https://pypi.org/project/hindsight-langgraph/) - GitHub: [vectorize-io/hindsight](https://github.com/vectorize-io/hindsight) - License: MIT - Runs locally (Docker, pip, embedded) — no cloud account required ## Test plan - [ ] Verify all three pages render correctly - [ ] Verify internal links resolve (`/oss/integrations/tools/hindsight`, `/oss/integrations/stores/hindsight`, `/oss/integrations/providers/hindsight`) - [ ] Verify cards appear in tools index, stores index, and all providers listing - [ ] Run `make broken-links` to check for broken links 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-05 18:23:09 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#3451