NucliaDB
You can use a local NucliaDB instance or use Nuclia Cloud.
When using a local instance, you need a Nuclia Understanding API key, so your texts are properly vectorized and indexed. You can get a key by creating a free account at https://nuclia.cloud, and then create a NUA key.
%pip install --upgrade --quiet langchain langchain-community nuclia
Usage with 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 Reference:NucliaDB
Usage with a local instanceโ
Note: By default backend
is set to http://localhost:8080
.
from langchain_community.vectorstores.nucliadb import NucliaDB
ndb = NucliaDB(knowledge_box="YOUR_KB_ID", local=True, backend="http://my-local-server")
API Reference:NucliaDB
Add and delete texts to your Knowledge Boxโ
ids = ndb.add_texts(["This is a new test", "This is a second test"])
ndb.delete(ids=ids)
Search in your Knowledge Boxโ
results = ndb.similarity_search("Who was inspired by Ada Lovelace?")
print(results[0].page_content)
Relatedโ
- Vector store conceptual guide
- Vector store how-to guides