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
tests
.gitignore
LICENSE
Makefile
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

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()