[PR #3002] [MERGED] Introduce Valkey VectorStore for LangChain #3085

Closed
opened 2026-06-05 18:21:02 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/3002
Author: @Jonathan-Improving
Created: 3/9/2026
Status: Merged
Merged: 3/13/2026
Merged by: @mdrxy

Base: mainHead: feature/aws/valkey/vss


📝 Commits (9)

  • e274d6b Introduce Valkey VectorStore for LangChain
  • 25ea240 Merge branch 'main' into feature/aws/valkey/vss
  • f974947 Move ValkeyVectorStore examples to LangChain Docs
  • 1cd0edc Add ValkeyVectorStore to vectorstores integration documentation
  • af739b2 Update ValkeyVectorStore documentation with installation and usage details
  • e3a3e8d Merge branch 'main' into feature/aws/valkey/vss
  • 3c7c1b9 Apply suggestion from @mdrxy
  • fbf03ee Merge branch 'main' into feature/aws/valkey/vss
  • 8ff1e7e Merge branch 'main' into feature/aws/valkey/vss

📊 Changes

3 files changed (+212 additions, -0 deletions)

View changed files

📝 src/oss/python/integrations/providers/aws.mdx (+10 -0)
📝 src/oss/python/integrations/vectorstores/index.mdx (+24 -0)
src/oss/python/integrations/vectorstores/valkey.mdx (+178 -0)

📄 Description

Overview

Adds comprehensive documentation for the Valkey vector store integration in langchain-aws, including setup instructions, usage examples, and AWS service integration guidance.

Type of change

Type: New documentation page

Related issues/PRs

Checklist

  • I have read the contributing guidelines, including the language policy
  • I have tested my changes locally using docs dev
  • All code examples have been tested and work correctly
  • I have used root relative paths for internal links
  • I have updated navigation in src/docs.json if needed

Additional notes

This documentation covers:

  • Installation with langchain-aws[valkey]
  • Basic usage and connection URL formats
  • AWS ElastiCache for Valkey and MemoryDB for Valkey integration
  • Metadata filtering with ValkeyTag and ValkeyNum
  • Custom vector schema configuration (HNSW/FLAT algorithms)

The documentation follows the same structure as existing vector store docs (DocumentDB, MemoryDB) for consistency.

Note: This PR is contingent on langchain-ai/langchain-aws#889 being merged first.


🔄 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/3002 **Author:** [@Jonathan-Improving](https://github.com/Jonathan-Improving) **Created:** 3/9/2026 **Status:** ✅ Merged **Merged:** 3/13/2026 **Merged by:** [@mdrxy](https://github.com/mdrxy) **Base:** `main` ← **Head:** `feature/aws/valkey/vss` --- ### 📝 Commits (9) - [`e274d6b`](https://github.com/langchain-ai/docs/commit/e274d6baab178bd103ced570ab9f093391aa2083) Introduce Valkey VectorStore for LangChain - [`25ea240`](https://github.com/langchain-ai/docs/commit/25ea24088ca30c23fffe3a3af360cc24e74e286b) Merge branch 'main' into feature/aws/valkey/vss - [`f974947`](https://github.com/langchain-ai/docs/commit/f974947c914af6e7ded3e32e10aa78abafb166e6) Move ValkeyVectorStore examples to LangChain Docs - [`1cd0edc`](https://github.com/langchain-ai/docs/commit/1cd0edc6c56297580a07bf65659026e2daeb2de0) Add ValkeyVectorStore to vectorstores integration documentation - [`af739b2`](https://github.com/langchain-ai/docs/commit/af739b27aa3eea9abe6701d2186acf9d1c669b41) Update ValkeyVectorStore documentation with installation and usage details - [`e3a3e8d`](https://github.com/langchain-ai/docs/commit/e3a3e8d4c521fb5eaaba03561d688871bdc60f99) Merge branch 'main' into feature/aws/valkey/vss - [`3c7c1b9`](https://github.com/langchain-ai/docs/commit/3c7c1b992a23d99bf17ecf735a26e3ed108b4605) Apply suggestion from @mdrxy - [`fbf03ee`](https://github.com/langchain-ai/docs/commit/fbf03ee16187c0f8d6b7088b19dd2cbe833f90f4) Merge branch 'main' into feature/aws/valkey/vss - [`8ff1e7e`](https://github.com/langchain-ai/docs/commit/8ff1e7e0edd6e3fb740fdecb4d9a89dfad5fa3fe) Merge branch 'main' into feature/aws/valkey/vss ### 📊 Changes **3 files changed** (+212 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `src/oss/python/integrations/providers/aws.mdx` (+10 -0) 📝 `src/oss/python/integrations/vectorstores/index.mdx` (+24 -0) ➕ `src/oss/python/integrations/vectorstores/valkey.mdx` (+178 -0) </details> ### 📄 Description ## Overview Adds comprehensive documentation for the Valkey vector store integration in langchain-aws, including setup instructions, usage examples, and AWS service integration guidance. ## Type of change **Type:** New documentation page ## Related issues/PRs - GitHub issue: N/A - Feature PR: langchain-ai/langchain-aws#889 ## Checklist - [ ] I have read the [contributing guidelines](README.md), including the [language policy](https://docs.langchain.com/oss/python/contributing/overview#language-policy) - [ ] I have tested my changes locally using `docs dev` - [ ] All code examples have been tested and work correctly - [ ] I have used **root relative** paths for internal links - [ ] I have updated navigation in `src/docs.json` if needed ## Additional notes This documentation covers: - Installation with `langchain-aws[valkey]` - Basic usage and connection URL formats - AWS ElastiCache for Valkey and MemoryDB for Valkey integration - Metadata filtering with ValkeyTag and ValkeyNum - Custom vector schema configuration (HNSW/FLAT algorithms) The documentation follows the same structure as existing vector store docs (DocumentDB, MemoryDB) for consistency. **Note:** This PR is contingent on langchain-ai/langchain-aws#889 being merged first. --- <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:21:02 -04:00
yindo closed this issue 2026-06-05 18:21:02 -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#3085