Skip to content

Commit 84c5048

Browse files
authored
fix(docs): correct package names in FeatureTables.js (#32377)
## **Description:** Updated incorrect package names in `FeatureTables.js` by replacing underscores with hyphens to reflect their actual names on PyPI. This aligns with the actual PyPI package names and prevents potential confusion or installation issues. The following package names were corrected: - `langchain_aws` ➝ `langchain-aws` - `langchain_community` ➝ `langchain-community` - `langchain_elasticsearch` ➝ `langchain-elasticsearch` - `langchain_google_community` ➝ `langchain-google-community` ## **Issue:** N/A ## **Dependencies:** None ## **Twitter handle:** N/A
1 parent d318c65 commit 84c5048

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/src/theme/FeatureTables.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -435,31 +435,31 @@ const FEATURE_TABLES = {
435435
selfHost: false,
436436
cloudOffering: true,
437437
apiLink: "https://python.langchain.com/api_reference/aws/retrievers/langchain_aws.retrievers.bedrock.AmazonKnowledgeBasesRetriever.html",
438-
package: "langchain_aws"
438+
package: "langchain-aws"
439439
},
440440
{
441441
name: "AzureAISearchRetriever",
442442
link: "azure_ai_search",
443443
selfHost: false,
444444
cloudOffering: true,
445445
apiLink: "https://python.langchain.com/api_reference/community/retrievers/langchain_community.retrievers.azure_ai_search.AzureAISearchRetriever.html",
446-
package: "langchain_community"
446+
package: "langchain-community"
447447
},
448448
{
449449
name: "ElasticsearchRetriever",
450450
link: "elasticsearch_retriever",
451451
selfHost: true,
452452
cloudOffering: true,
453453
apiLink: "https://python.langchain.com/api_reference/elasticsearch/retrievers/langchain_elasticsearch.retrievers.ElasticsearchRetriever.html",
454-
package: "langchain_elasticsearch"
454+
package: "langchain-elasticsearch"
455455
},
456456
{
457457
name: "VertexAISearchRetriever",
458458
link: "google_vertex_ai_search",
459459
selfHost: false,
460460
cloudOffering: true,
461461
apiLink: "https://python.langchain.com/api_reference/google_community/vertex_ai_search/langchain_google_community.vertex_ai_search.VertexAISearchRetriever.html",
462-
package: "langchain_google_community"
462+
package: "langchain-google-community"
463463
}
464464
],
465465
},
@@ -484,21 +484,21 @@ const FEATURE_TABLES = {
484484
link: "arxiv",
485485
source: (<>Scholarly articles on <a href="https://arxiv.org/">arxiv.org</a></>),
486486
apiLink: "https://python.langchain.com/api_reference/community/retrievers/langchain_community.retrievers.arxiv.ArxivRetriever.html",
487-
package: "langchain_community"
487+
package: "langchain-community"
488488
},
489489
{
490490
name: "TavilySearchAPIRetriever",
491491
link: "tavily",
492492
source: "Internet search",
493493
apiLink: "https://python.langchain.com/api_reference/community/retrievers/langchain_community.retrievers.tavily_search_api.TavilySearchAPIRetriever.html",
494-
package: "langchain_community"
494+
package: "langchain-community"
495495
},
496496
{
497497
name: "WikipediaRetriever",
498498
link: "wikipedia",
499499
source: (<><a href="https://www.wikipedia.org/">Wikipedia</a> articles</>),
500500
apiLink: "https://python.langchain.com/api_reference/community/retrievers/langchain_community.retrievers.wikipedia.WikipediaRetriever.html",
501-
package: "langchain_community"
501+
package: "langchain-community"
502502
}
503503
]
504504

0 commit comments

Comments
 (0)