跳到主要内容
Open In ColabOpen on GitHub

NucliaDB

您可以使用本地 NucliaDB 实例,或使用 Nuclia Cloud

当使用本地实例时,您需要一个 Nuclia Understanding API 密钥,以便您的文本被正确地向量化和索引。您可以通过在 https://nuclia.cloud 创建一个免费账户,然后 创建一个 NUA 密钥 来获取密钥。

%pip install --upgrade --quiet  langchain langchain-community nuclia

与 nuclia.cloud 一起使用

from langchain_community.vectorstores.nucliadb import NucliaDB

API_KEY = "YOUR_API_KEY"

ndb = NucliaDB(knowledge_box="YOUR_KB_ID", local=False, api_key=API_KEY)
API 参考:NucliaDB

与本地实例一起使用

注意:默认情况下 backend 设置为 https://127.0.0.1:8080

from langchain_community.vectorstores.nucliadb import NucliaDB

ndb = NucliaDB(knowledge_box="YOUR_KB_ID", local=True, backend="http://my-local-server")
API 参考:NucliaDB

向您的 Knowledge Box 添加和删除文本

ids = ndb.add_texts(["This is a new test", "This is a second test"])
ndb.delete(ids=ids)

在您的 Knowledge Box 中搜索

results = ndb.similarity_search("Who was inspired by Ada Lovelace?")
print(results[0].page_content)

此页是否对您有帮助?