From 6a66d8e2cabbba8acb02960b94c83b960f526ab4 Mon Sep 17 00:00:00 2001 From: Leonid Ganeline Date: Mon, 17 Jun 2024 21:01:58 -0700 Subject: [PATCH] docs: `AWS` platform page update (#23063) Added a reference to the `GlueCatalogLoader` new document loader. --- docs/docs/integrations/platforms/aws.mdx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/docs/integrations/platforms/aws.mdx b/docs/docs/integrations/platforms/aws.mdx index 785819dfba7..6cb7f75d600 100644 --- a/docs/docs/integrations/platforms/aws.mdx +++ b/docs/docs/integrations/platforms/aws.mdx @@ -134,6 +134,20 @@ See a [usage example](/docs/integrations/document_loaders/athena). from langchain_community.document_loaders.athena import AthenaLoader ``` +### AWS Glue + +>The [AWS Glue Data Catalog](https://docs.aws.amazon.com/en_en/glue/latest/dg/catalog-and-crawler.html) is a centralized metadata +> repository that allows you to manage, access, and share metadata about +> your data stored in AWS. It acts as a metadata store for your data assets, +> enabling various AWS services and your applications to query and connect +> to the data they need efficiently. + +See a [usage example](/docs/integrations/document_loaders/glue_catalog). + +```python +from langchain_community.document_loaders.glue_catalog import GlueCatalogLoader +``` + ## Vector stores ### Amazon OpenSearch Service