Skip to content

Latest commit

 

History

History

langchain

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

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.