From bce0684327ec743ef47eeaebc42ecbfeac6f1a43 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Thu, 29 Feb 2024 16:02:13 -0800 Subject: [PATCH] docs: airbyte deps note (#18243) --- docs/docs/integrations/document_loaders/airbyte.ipynb | 5 +++++ docs/docs/integrations/providers/airbyte.mdx | 9 +++++++++ 2 files changed, 14 insertions(+) diff --git a/docs/docs/integrations/document_loaders/airbyte.ipynb b/docs/docs/integrations/document_loaders/airbyte.ipynb index dd476099640..1c992782f19 100644 --- a/docs/docs/integrations/document_loaders/airbyte.ipynb +++ b/docs/docs/integrations/document_loaders/airbyte.ipynb @@ -37,6 +37,11 @@ "id": "3dd92c62", "metadata": {}, "source": [ + "Note: Currently, the `airbyte` library does not support Pydantic v2.\n", + "Please downgrade to Pydantic v1 to use this package.\n", + "\n", + "Note: This package also currently requires Python 3.10+.\n", + "\n", "## Loading Documents\n", "\n", "By default, the `AirbyteLoader` will load any structured data from a stream and output yaml-formatted documents." diff --git a/docs/docs/integrations/providers/airbyte.mdx b/docs/docs/integrations/providers/airbyte.mdx index 48adf080efe..95b4c239f19 100644 --- a/docs/docs/integrations/providers/airbyte.mdx +++ b/docs/docs/integrations/providers/airbyte.mdx @@ -13,6 +13,15 @@ This loader is built on top of [PyAirbyte](https://pypi.org/project/airbyte/) fo pip install -U langchain-airbyte ``` +:::note + +Currently, the `airbyte` library does not support Pydantic v2. +Please downgrade to Pydantic v1 to use this package. + +This package also currently requires Python 3.10+. + +::: + The integration package doesn't have any global environment variables that need to be set, but some integrations (e.g. `source-github`) may need credentials passed in.