You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/docs/integrations/databerry.md

761 B

Databerry

This page covers how to use the Databerry within LangChain.

What is Databerry?

Databerry is an open source document retrievial platform that helps to connect your personal data with Large Language Models.

Databerry

Quick start

Retrieving documents stored in Databerry from LangChain is very easy!

from langchain.retrievers import DataberryRetriever

retriever = DataberryRetriever(
    datastore_url="https://api.databerry.ai/query/clg1xg2h80000l708dymr0fxc",
    # api_key="DATABERRY_API_KEY", # optional if datastore is public
    # top_k=10 # optional
)

docs = retriever.get_relevant_documents("What's Databerry?")