docs: add HippoDid persistent character memory integration#3453
Open
snowmanjy wants to merge 14 commits intolangchain-ai:mainfrom
Open
docs: add HippoDid persistent character memory integration#3453snowmanjy wants to merge 14 commits intolangchain-ai:mainfrom
snowmanjy wants to merge 14 commits intolangchain-ai:mainfrom
Conversation
Contributor
❌ Import check failedThis PR contains imports from Detailed issuesWhy this is a problemThe
How to fixReplace the imports as suggested above. For example:
🤖 Automated checkThis check is based on the latest analysis of |
Add integration docs for langchain-hippodid package (PyPI: v0.1.0). - Provider page at oss/integrations/providers/hippodid.mdx - Chat message history page at oss/python/integrations/chat_message_histories/hippodid.mdx - Add langchain-hippodid to packages.yml registry - Add HippoDid card to all_providers.mdx index HippoDidChatMessageHistory implements BaseChatMessageHistory with persistent cloud-backed character memory, semantic search, and context assembly. HippoDidMemory provides RunnableWithMessageHistory compatibility. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Update code examples to use `from langchain.messages` instead of `from langchain_core.messages` per CI import check requirements. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The partner_pkg_table.py build script checks for provider pages in src/oss/python/integrations/providers/, not src/oss/integrations/providers/. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…rt in langchain) langchain_core.prompts and langchain_core.runnables.history are the canonical import paths — langchain does not re-export these modules. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
40398e1 to
7e69509
Compare
Author
|
Adding the standard PR checklist that was missing from the original description: Checklist
Notes:
|
Keep upstream's updated oracledb download count while preserving the new langchain-hippodid entry from this branch. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
….com/SameThoughts/docs into docs/add-hippodid-memory-integration
Author
|
Mason Daugherty (@mdrxy) Can you please take a look? Thanks! |
Keep updated oracle download count from upstream (64000) while preserving the langchain-hippodid entry from this branch. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
….com/SameThoughts/docs into docs/add-hippodid-memory-integration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds documentation for the langchain-hippodid integration — persistent, structured character memory for LangChain agents.
This is a docs-only PR. No code changes to langchain-core or langchain-community. The
langchain-hippodidpackage is already published on PyPI (v0.1.0).What is HippoDid?
HippoDid provides character-scoped cloud memory for AI agents. Each user/customer gets their own character with categorized, searchable memory that persists across sessions and frameworks.
pip install langchain-hippodid(PyPI)pip install hippodid(PyPI)Classes provided
HippoDidChatMessageHistory— extendsBaseChatMessageHistory, stores messages in HippoDid cloudHippoDidMemory— convenience wrapper withget_history()factory forRunnableWithMessageHistoryChanges
src/oss/integrations/providers/hippodid.mdx— Provider overview page with installation, capabilities, and linkssrc/oss/python/integrations/chat_message_histories/hippodid.mdx— Component page with usage examples:external_id)RunnableWithMessageHistory(LCEL) integrationpackages.yml— Addedlangchain-hippodidto package registrysrc/oss/python/integrations/providers/all_providers.mdx— Added HippoDid card in alphabetical orderAI disclosure
This PR was authored with assistance from Claude Code (AI agent).