Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 684 Bytes

File metadata and controls

28 lines (20 loc) · 684 Bytes

langchain-vectorize

This package contains the LangChain integrations for using Vectorize.

Installation and Setup

Installation of this package:

pip install langchain-vectorize

Integrations overview

Retriever

See the LangChain Retriever documentation for more information.

from langchain_vectorize import VectorizeRetriever

retriever = VectorizeRetriever(
    api_token="...",
    organization="...",
    pipeline_id="...",
)
retriever.invoke("query")

See an example notebook here.