langchain/libs/partners/airbyte
2024-03-05 19:22:08 +00:00
..
langchain_airbyte text-splitters[minor], langchain[minor], community[patch], templates, docs: langchain-text-splitters 0.0.1 (#18346) 2024-02-29 18:33:21 -08:00
scripts airbyte[patch]: init pkg (#18236) 2024-02-27 19:37:53 -08:00
tests airbyte[patch]: init pkg (#18236) 2024-02-27 19:37:53 -08:00
.gitignore airbyte[patch]: init pkg (#18236) 2024-02-27 19:37:53 -08:00
LICENSE airbyte[patch]: init pkg (#18236) 2024-02-27 19:37:53 -08:00
Makefile airbyte[patch]: init pkg (#18236) 2024-02-27 19:37:53 -08:00
poetry.lock airbyte[patch]: release 0.1.1, python 3.9 compat (#18597) 2024-03-05 19:22:08 +00:00
pyproject.toml airbyte[patch]: release 0.1.1, python 3.9 compat (#18597) 2024-03-05 19:22:08 +00:00
README.md airbyte[patch]: init pkg (#18236) 2024-02-27 19:37:53 -08:00

langchain-airbyte

This package contains the LangChain integration with Airbyte

Installation

pip install -U langchain-airbyte

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.

Document Loaders

AirbyteLoader class exposes a single document loader for Airbyte sources.

from langchain_airbyte import AirbyteLoader

loader = AirbyteLoader(
    source="source-faker",
    stream="users",
    config={"count": 100},
)
docs = loader.load()