mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-10 21:35:08 +00:00
fix(docs): update package names, class links and package links across kv_store_feat_table.py (#32353)
## **Description:** Refactored multiple entries in `kv_store_feat_table.py` to ensure that all vector store metadata is accurate, consistent, and aligned with LangChain's latest documentation structure and PyPI naming standards. **Key improvements across all updated entries:** - Updated `class` links to point to their respective **docs-based integration pages** (e.g., `/docs/integrations/stores/...`) instead of raw API reference URLs. - Corrected `package` display names to use **hyphenated PyPI-compliant names** (e.g., `langchain-astradb` instead of `langchain_astradb`). - Updated `package` links to point to the **specific class-level API references** (e.g., `/api_reference/.../storage/...ClassName.html`) for precision. These improvements enhance: - Navigation experience for users - Alignment with PyPI and docs naming conventions - Clarity across LangChain’s integrations documentation ## **Issue:** N/A ## **Dependencies:** None ## **Twitter handle:** N/A
This commit is contained in:
parent
a25e196fe9
commit
df4eed0cea
@ -30,49 +30,50 @@ The following table shows information on all available key-value stores.
|
||||
|
||||
KV_STORE_FEAT_TABLE = {
|
||||
"AstraDBByteStore": {
|
||||
"class": "[AstraDBByteStore](https://python.langchain.com/api_reference/astradb/storage/langchain_astradb.storage.AstraDBByteStore.html)",
|
||||
"class": "[AstraDBByteStore](https://python.langchain.com/docs/integrations/stores/astradb/)",
|
||||
"local": False,
|
||||
"package": "[langchain_astradb](https://python.langchain.com/api_reference/astradb/)",
|
||||
"package": "[langchain-astradb](https://python.langchain.com/api_reference/astradb/storage/langchain_astradb.storage.AstraDBByteStore.html)",
|
||||
"downloads": "",
|
||||
},
|
||||
"CassandraByteStore": {
|
||||
"class": "[CassandraByteStore](https://python.langchain.com/api_reference/community/storage/langchain_community.storage.cassandra.CassandraByteStore.html)",
|
||||
"class": "[CassandraByteStore](https://python.langchain.com/docs/integrations/stores/cassandra/)",
|
||||
"local": False,
|
||||
"package": "[langchain_community](https://python.langchain.com/api_reference/community/)",
|
||||
"package": "[langchain-community](https://python.langchain.com/api_reference/community/storage/langchain_community.storage.cassandra.CassandraByteStore.html)",
|
||||
"downloads": "",
|
||||
},
|
||||
"ElasticsearchEmbeddingsCache": {
|
||||
"class": "[ElasticsearchEmbeddingsCache](https://python.langchain.com/api_reference/elasticsearch/cache/langchain_elasticsearch.cache.ElasticsearchEmbeddingsCache.html)",
|
||||
"class": "[ElasticsearchEmbeddingsCache](https://python.langchain.com/docs/integrations/stores/elasticsearch/)",
|
||||
"local": True,
|
||||
"package": "[langchain_elasticsearch](https://python.langchain.com/api_reference/elasticsearch/)",
|
||||
"package": "[langchain-elasticsearch](https://python.langchain.com/api_reference/elasticsearch/cache/langchain_elasticsearch.cache.ElasticsearchEmbeddingsCache.html)",
|
||||
"downloads": "",
|
||||
},
|
||||
"LocalFileStore": {
|
||||
"class": "[LocalFileStore](https://python.langchain.com/api_reference/storage/langchain.storage.file_system.LocalFileStore.html)",
|
||||
"class": "[LocalFileStore](https://python.langchain.com/docs/integrations/stores/file_system/)",
|
||||
"local": True,
|
||||
"package": "[langchain](https://python.langchain.com/api_reference/langchain/)",
|
||||
"package": "[langchain](https://python.langchain.com/api_reference/langchain/storage/langchain.storage.file_system.LocalFileStore.html)",
|
||||
"downloads": "",
|
||||
},
|
||||
"InMemoryByteStore": {
|
||||
"class": "[InMemoryByteStore](https://python.langchain.com/api_reference/core/stores/langchain_core.stores.InMemoryByteStore.html)",
|
||||
"class": "[InMemoryByteStore](https://python.langchain.com/docs/integrations/stores/in_memory/)",
|
||||
"local": True,
|
||||
"package": "[langchain_core](https://python.langchain.com/api_reference/core/)",
|
||||
"package": "[langchain-core](https://python.langchain.com/api_reference/core/stores/langchain_core.stores.InMemoryByteStore.html)",
|
||||
"downloads": "",
|
||||
},
|
||||
"RedisStore": {
|
||||
"class": "[RedisStore](https://python.langchain.com/api_reference/community/storage/langchain_community.storage.redis.RedisStore.html)",
|
||||
"class": "[RedisStore](https://python.langchain.com/docs/integrations/stores/redis/)",
|
||||
"local": True,
|
||||
"package": "[langchain_community](https://python.langchain.com/api_reference/community/)",
|
||||
"package": "[langchain-community](https://python.langchain.com/api_reference/community/storage/langchain_community.storage.redis.RedisStore.html)",
|
||||
"downloads": "",
|
||||
},
|
||||
"UpstashRedisByteStore": {
|
||||
"class": "[UpstashRedisByteStore](https://python.langchain.com/api_reference/community/storage/langchain_community.storage.upstash_redis.UpstashRedisByteStore.html)",
|
||||
"class": "[UpstashRedisByteStore](https://python.langchain.com/docs/integrations/stores/upstash_redis/)",
|
||||
"local": False,
|
||||
"package": "[langchain_community](https://python.langchain.com/api_reference/community/)",
|
||||
"package": "[langchain-community](https://python.langchain.com/api_reference/community/storage/langchain_community.storage.upstash_redis.UpstashRedisByteStore.html)",
|
||||
"downloads": "",
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
DEPRECATED = []
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user