An integration package connecting VeDB and LangChain
Project description
VeDB
This notebook covers how to get started with the VeDB.
Setup
To access VeDB you'll need to create a/an ByteDance account, get an API key, and install the langchain-vedb integration package.
%pip install -qU "langchain-vedb>=MINIMUM_VERSION"
Initialization
import EmbeddingTabs from "@theme/EmbeddingTabs";
extra_column = {"source": "VARCHAR(255)"} # Define the field information to be added to metadata
client_config = {"host": 'xxx.xxx.xxx.xxx', # e.g., '192.168.1.88'
"port": 12345,
"user": 'vector_user',
"password": '123456', # Leave empty if no password was set during authorization
"database": 'vectorStoreTest', # Use your actual database name
"table_name": 'langchain_vector_test', # Set an existing table name or initialize a new one
"charset": 'utf8mb4',
"metadata_columns": extra_column} # Additional metadata columns
vector_store = ByteDanceVectorStore(embeddings, client_config)
Manage vector store
Add items to vector store
from langchain_core.documents import Document
document_1 = Document(page_content="foo", metadata={"source": "https://example.com"})
document_2 = Document(page_content="bar", metadata={"source": "https://example.com"})
document_3 = Document(page_content="baz", metadata={"source": "https://example.com"})
documents = [document_1, document_2, document_3]
vector_store.add_documents(documents=documents, ids=["1", "2", "3"])
You can also use the from_text function to directly instantiate a vector store from a document.
docs = ["foo","bar","bar"]
metadatas = [{"source": "https://example.com"},{"source": "https://example.com"},{"source": "https://example.com"}]
vector_store = ByteDanceVectorStore.from_texts(texts=docs, embedding=embeddings, metadatas=metadatas, client_config=client_config)
Delete items from vector store
vector_store.delete(ids=["3"])
Update items in vector store
updated_document_1 = Document(
id = "1", page_content="qux", metadata={"source": "https://another-example.com"}
)
vector_store.update_document(document=updated_document_1)
Get documents by ids
You can directly get a specific document by its ID.
results = vector_store.get_by_ids(["1", "2", "3"])
for doc in results:
print(f"* {doc.id} {doc.page_content} [{doc.metadata}]")
Query vector store
Once your vector store has been created and the relevant documents have been added, you will most likely wish to query it during the running of your chain or agent.
Filtering Support
The vectorstore supports a set of filters that can be applied against the metadata fields of the documents.
| Operator | Meaning/Category |
|---|---|
$eq |
Equality (==) |
$ne |
Inequality (!=) |
$lt |
Less than (<) |
$lte |
Less than or equal (<=) |
$gt |
Greater than (>) |
$gte |
Greater than or equal (>=) |
$in |
Special Case (in) |
$nin |
Special Case (not in) |
$between |
Special Case (between) |
$exists |
Exists (IS [NOT] NULL) |
$and |
Logical (and) |
$or |
Logical (or) |
Query directly
A simple similarity search can be performed in the following way.
results = vector_store.similarity_search(
query="thud", k=1, filter={"source": "https://example.com"}
)
for doc in results:
print(f"* {doc.page_content} [{doc.metadata}]")
You can run the following to execute a similarity search and get the corresponding scores
results = vector_store.similarity_search_with_score(
query="thud", k=1, filter={"source": "https://example.com"}
)
for doc, score in results:
print(f"* [SIM={score:3f}] {doc.page_content} [{doc.metadata}]")
If you provide a dict with multiple fields, but no operators, the top level will be interpreted as a logical AND filter
results = vector_store.similarity_search_with_score(
query="thud",
k=10,
filter={"year": {"$in": [2004, 2022]}, "topic": {"$eq": "magic"}},
)
results = vector_store.similarity_search_with_score(
query="thud",
k=10,
filter={
"$and":[
{"year": {"$in": [2004, 2025]}},
{"topic": {"$eq": "magic"}},
]
},
)
Limitations
After adding documents, the system builds the ANN index asynchronously in the background. Therefore, you need to wait a short period between adding documents and performing similarity searches. You can use sleep to pause for a while. To prevent potential crashes, you can run the following between adding documents and performing a similarity search.
vector_store.close()
❗️Needs to be modified
API reference
For detailed documentation of all ByteDanceVectorStore features and configurations head to the API reference: https://api.python.langchain.com/en/latest/vectorstores/langchain_vedb_link.vectorstores.VeDB.html
Related
- Vector store conceptual guide
- Vector store how-to guides
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file langchain_vedb-0.1.3.tar.gz.
File metadata
- Download URL: langchain_vedb-0.1.3.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.9.6 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a86d3e5582446972d1ea2f368a9a774e9d55032614c1eaa12e32bebe95d33b66
|
|
| MD5 |
f9cb2af0d397c71a48d57d569953c16f
|
|
| BLAKE2b-256 |
407265b2cefb4d31ce6bba547588ebe47122e8afd96f9c289a30074967f2d1fd
|
File details
Details for the file langchain_vedb-0.1.3-py3-none-any.whl.
File metadata
- Download URL: langchain_vedb-0.1.3-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.9.6 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4229974f77b9fad61e6d1c599066f31be9677e886cd1139f6bd67b5325c18d30
|
|
| MD5 |
16189851a099a17a6b75ba514d0fcc0f
|
|
| BLAKE2b-256 |
35161e89b79e2769aa81dc30e915bff774eb845e33d717e39935c7c57da143f2
|