docs: airbyte deps note (#18243)

This commit is contained in:
Erick Friis 2024-02-29 16:02:13 -08:00 committed by GitHub
parent 7bbff98dc7
commit bce0684327
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View File

@ -37,6 +37,11 @@
"id": "3dd92c62", "id": "3dd92c62",
"metadata": {}, "metadata": {},
"source": [ "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", "## Loading Documents\n",
"\n", "\n",
"By default, the `AirbyteLoader` will load any structured data from a stream and output yaml-formatted documents." "By default, the `AirbyteLoader` will load any structured data from a stream and output yaml-formatted documents."

View File

@ -13,6 +13,15 @@ This loader is built on top of [PyAirbyte](https://pypi.org/project/airbyte/) fo
pip install -U langchain-airbyte 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 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. set, but some integrations (e.g. `source-github`) may need credentials passed in.