chore: initialize sandbox and overwrite remote content
Some checks failed
Pre-commit / run (ubuntu-latest) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_en (ubuntu-latest, 3.10) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_zh (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.12) (push) Has been cancelled
Some checks failed
Pre-commit / run (ubuntu-latest) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_en (ubuntu-latest, 3.10) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_zh (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.12) (push) Has been cancelled
This commit is contained in:
211
examples/functionality/vector_store/mongodb/README.md
Normal file
211
examples/functionality/vector_store/mongodb/README.md
Normal file
@@ -0,0 +1,211 @@
|
||||
# MongoDB Vector Store
|
||||
|
||||
This example demonstrates how to use **MongoDBStore** for vector storage and semantic search in AgentScope using MongoDB's Vector Search capabilities.
|
||||
It includes comprehensive test scenarios covering CRUD operations, metadata filtering, document chunking, and distance metrics.
|
||||
|
||||
### Quick Start
|
||||
|
||||
Install agentscope first, and then the MongoDB dependency:
|
||||
|
||||
```bash
|
||||
pip install pymongo
|
||||
```
|
||||
|
||||
**Important:** Before running the example, you need to set the `MONGODB_HOST`
|
||||
environment variable with your MongoDB connection string:
|
||||
|
||||
```bash
|
||||
# For local MongoDB
|
||||
export MONGODB_HOST="mongodb://localhost:27017/?directConnection=true"
|
||||
|
||||
# For MongoDB Atlas (replace with your connection string)
|
||||
# export MONGODB_HOST=${YOUR_MONGODB_HOST}
|
||||
```
|
||||
|
||||
Run the example script, which showcases adding, searching, and deleting in MongoDB vector store:
|
||||
|
||||
```bash
|
||||
python main.py
|
||||
```
|
||||
|
||||
> **Note:** The script connects to MongoDB Atlas or local MongoDB instance. Make sure you have a valid MongoDB connection string.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Confirm your MongoDB instance supports Vector Search functionality
|
||||
- Valid MongoDB connection string (local or Atlas)
|
||||
|
||||
## Usage
|
||||
|
||||
### Initialize Store
|
||||
|
||||
```python
|
||||
from agentscope.rag import MongoDBStore
|
||||
|
||||
# For MongoDB Atlas
|
||||
store = MongoDBStore(
|
||||
host="mongodb+srv://username:password@cluster.mongodb.net/",
|
||||
db_name="test_db",
|
||||
collection_name="test_collection",
|
||||
dimensions=768, # Match your embedding model
|
||||
distance="cosine", # cosine, euclidean, or dotProduct
|
||||
)
|
||||
|
||||
# For local MongoDB
|
||||
store = MongoDBStore(
|
||||
host="mongodb://localhost:27017/?directConnection=true",
|
||||
db_name="test_db",
|
||||
collection_name="test_collection",
|
||||
dimensions=768,
|
||||
distance="cosine",
|
||||
)
|
||||
|
||||
# To enable filtering in search, specify filter_fields:
|
||||
store = MongoDBStore(
|
||||
host="mongodb://localhost:27017/?directConnection=true",
|
||||
db_name="test_db",
|
||||
collection_name="test_collection",
|
||||
dimensions=768,
|
||||
distance="cosine",
|
||||
filter_fields=["payload.doc_id", "payload.chunk_id"], # Fields for filtering
|
||||
)
|
||||
|
||||
# No manual initialization needed - everything is automatic!
|
||||
# Database, collection, and vector search index are created automatically
|
||||
# when you first call add() or search()
|
||||
```
|
||||
|
||||
### Add Documents
|
||||
|
||||
```python
|
||||
from agentscope.rag import Document, DocMetadata
|
||||
from agentscope.message import TextBlock
|
||||
|
||||
doc = Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(type="text", text="Your document text"),
|
||||
doc_id="doc_1",
|
||||
chunk_id=0,
|
||||
total_chunks=1,
|
||||
),
|
||||
embedding=[0.1, 0.2, ...], # Your embedding vector
|
||||
)
|
||||
|
||||
await store.add([doc])
|
||||
```
|
||||
|
||||
### Search
|
||||
|
||||
```python
|
||||
results = await store.search(
|
||||
query_embedding=[0.15, 0.25, ...],
|
||||
limit=5,
|
||||
score_threshold=0.9, # Optional
|
||||
filter={"payload.doc_id": {"$in": ["doc_1", "doc_2"]}}, # Optional filter
|
||||
)
|
||||
# Note:
|
||||
# - To use filter, the field must be declared in filter_fields when creating store
|
||||
# - MongoDB $vectorSearch filter supports: $gt, $gte, $lt, $lte,
|
||||
# $eq, $ne, $in, $nin, $exists, $not (NOT $regex)
|
||||
```
|
||||
|
||||
### Delete
|
||||
|
||||
```python
|
||||
# Delete by document IDs (no initialization needed)
|
||||
await store.delete(ids=["doc_1", "doc_2"])
|
||||
|
||||
# Delete entire collection (use with caution)
|
||||
await store.delete_collection()
|
||||
|
||||
# Delete entire database (use with caution)
|
||||
await store.delete_database()
|
||||
```
|
||||
|
||||
## Distance Metrics
|
||||
|
||||
| Metric | Description | Best For |
|
||||
|--------|-------------|----------|
|
||||
| **cosine** | Cosine similarity | Text embeddings (recommended) |
|
||||
| **euclidean** | Euclidean distance | Spatial data |
|
||||
| **dotProduct** | Inner Product | Recommendation systems |
|
||||
|
||||
## Advanced Usage
|
||||
|
||||
### Access Underlying Client
|
||||
|
||||
```python
|
||||
client = store.get_client()
|
||||
# Use MongoDB client for advanced operations
|
||||
stats = await client[store.db_name].command("collStats", store.collection_name)
|
||||
```
|
||||
|
||||
### Document Metadata
|
||||
|
||||
- `content`: Text content (TextBlock)
|
||||
- `doc_id`: Unique document identifier
|
||||
- `chunk_id`: Chunk position (0-indexed)
|
||||
- `total_chunks`: Total chunks in document
|
||||
|
||||
### Vector Search Index
|
||||
|
||||
MongoDBStore automatically creates vector search indexes with the following configuration:
|
||||
|
||||
```python
|
||||
{
|
||||
"fields": [
|
||||
{
|
||||
"type": "vector",
|
||||
"path": "vector",
|
||||
"similarity": "cosine", # or euclidean, dotProduct
|
||||
"numDimensions": 768
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
## Connection Examples
|
||||
|
||||
### MongoDB Atlas
|
||||
|
||||
```python
|
||||
store = MongoDBStore(
|
||||
host="<YOUR_MONGO_ATLAS_CONNECTION_STRING>",
|
||||
db_name="production_db",
|
||||
collection_name="documents",
|
||||
dimensions=1536,
|
||||
distance="cosine",
|
||||
)
|
||||
```
|
||||
|
||||
### Local MongoDB
|
||||
|
||||
#### Without Authentication
|
||||
|
||||
```python
|
||||
store = MongoDBStore(
|
||||
host="mongodb://localhost:27017?directConnection=true",
|
||||
db_name="local_db",
|
||||
collection_name="test_collection",
|
||||
dimensions=768,
|
||||
distance="cosine",
|
||||
)
|
||||
```
|
||||
|
||||
#### With Authentication
|
||||
|
||||
```python
|
||||
store = MongoDBStore(
|
||||
host="mongodb://user:pass@localhost:27017/?directConnection=true",
|
||||
db_name="test_db",
|
||||
collection_name="test_collection",
|
||||
dimensions=768,
|
||||
distance="cosine",
|
||||
)
|
||||
```
|
||||
|
||||
## References
|
||||
|
||||
- [MongoDB Vector Search Documentation](https://www.mongodb.com/docs/atlas/atlas-search/vector-search/)
|
||||
- [MongoDB Atlas Documentation](https://www.mongodb.com/docs/atlas/)
|
||||
- [AgentScope RAG Tutorial](https://doc.agentscope.io/tutorial/task_rag.html)
|
||||
351
examples/functionality/vector_store/mongodb/main.py
Normal file
351
examples/functionality/vector_store/mongodb/main.py
Normal file
@@ -0,0 +1,351 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""Example of using MongoDBStore in AgentScope RAG system."""
|
||||
import asyncio
|
||||
import os
|
||||
|
||||
from agentscope.rag import (
|
||||
MongoDBStore,
|
||||
Document,
|
||||
DocMetadata,
|
||||
)
|
||||
from agentscope.message import TextBlock
|
||||
|
||||
|
||||
async def example_basic_operations() -> None:
|
||||
"""The example of basic CRUD operations with MongoDBStore."""
|
||||
print("\n" + "=" * 60)
|
||||
print("Test 1: Basic CRUD Operations")
|
||||
print("=" * 60)
|
||||
|
||||
# Initialize MongoDBStore with MongoDB connection
|
||||
store = MongoDBStore(
|
||||
host=os.getenv("MONGODB_HOST"),
|
||||
db_name="test_db",
|
||||
collection_name="test_collection",
|
||||
dimensions=4, # Small dimension for testing
|
||||
distance="cosine",
|
||||
)
|
||||
|
||||
print("✓ MongoDBStore initialized")
|
||||
|
||||
# Create test documents with embeddings
|
||||
test_docs = [
|
||||
Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(
|
||||
text="Artificial Intelligence is the future",
|
||||
),
|
||||
doc_id="doc_1",
|
||||
chunk_id=0,
|
||||
total_chunks=1,
|
||||
),
|
||||
embedding=[0.1, 0.2, 0.3, 0.4],
|
||||
),
|
||||
Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(text="Machine Learning is a subset of AI"),
|
||||
doc_id="doc_2",
|
||||
chunk_id=0,
|
||||
total_chunks=1,
|
||||
),
|
||||
embedding=[0.2, 0.3, 0.4, 0.5],
|
||||
),
|
||||
Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(text="Deep Learning uses neural networks"),
|
||||
doc_id="doc_3",
|
||||
chunk_id=0,
|
||||
total_chunks=1,
|
||||
),
|
||||
embedding=[0.3, 0.4, 0.5, 0.6],
|
||||
),
|
||||
]
|
||||
|
||||
# Test add operation (automatically creates database, collection,
|
||||
# and index)
|
||||
await store.add(test_docs)
|
||||
print(f"✓ Added {len(test_docs)} documents to the store")
|
||||
|
||||
# Test search operation (automatically waits for index to be ready)
|
||||
query_embedding = [0.15, 0.25, 0.35, 0.45]
|
||||
results = await store.search(
|
||||
query_embedding=query_embedding,
|
||||
limit=2,
|
||||
)
|
||||
|
||||
print(f"\n✓ Search completed, found {len(results)} results:")
|
||||
for i, result in enumerate(results, 1):
|
||||
print(f" {i}. Score: {result.score:.4f}")
|
||||
print(f" Content: {result.metadata.content}")
|
||||
print(f" Doc ID: {result.metadata.doc_id}")
|
||||
|
||||
# Test search with score threshold (also waits for index if needed)
|
||||
results_filtered = await store.search(
|
||||
query_embedding=query_embedding,
|
||||
limit=5,
|
||||
score_threshold=0.3,
|
||||
)
|
||||
print(f"\n✓ Search with threshold (>0.3): {len(results_filtered)} results")
|
||||
|
||||
# Test delete operation (no initialization needed)
|
||||
# Note: MongoDBStore uses ids parameter for deletion
|
||||
await store.delete(ids=["doc_2", "doc_3", "doc_1"])
|
||||
print("\n✓ Deleted documents with specified doc_ids")
|
||||
|
||||
# Verify deletion (search will wait for index if needed)
|
||||
results_after_delete = await store.search(
|
||||
query_embedding=query_embedding,
|
||||
limit=5,
|
||||
)
|
||||
print(f"✓ After deletion: {len(results_after_delete)} documents remain")
|
||||
|
||||
# Get client for advanced operations
|
||||
client = store.get_client()
|
||||
print(f"\n✓ Got MongoDB Client: {type(client).__name__}")
|
||||
|
||||
await store.close()
|
||||
|
||||
|
||||
async def example_filter_search() -> None:
|
||||
"""The example of search with metadata filtering."""
|
||||
print("\n" + "=" * 60)
|
||||
print("Test 2: Search with Metadata Filtering")
|
||||
print("=" * 60)
|
||||
|
||||
# To use filter in search, specify filter_fields when creating the store.
|
||||
# These fields will be indexed for filtering in $vectorSearch.
|
||||
store = MongoDBStore(
|
||||
host=os.getenv("MONGODB_HOST"),
|
||||
db_name="filter_test_db",
|
||||
collection_name="filter_collection",
|
||||
dimensions=4,
|
||||
distance="cosine",
|
||||
filter_fields=["payload.doc_id"], # Enable filtering on doc_id
|
||||
)
|
||||
|
||||
# Create documents with different categories
|
||||
docs = [
|
||||
Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(text="Python is a programming language"),
|
||||
doc_id="prog_1",
|
||||
chunk_id=0,
|
||||
total_chunks=1,
|
||||
),
|
||||
embedding=[0.1, 0.2, 0.3, 0.4],
|
||||
),
|
||||
Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(
|
||||
text="Java is used for enterprise applications",
|
||||
),
|
||||
doc_id="prog_2",
|
||||
chunk_id=0,
|
||||
total_chunks=1,
|
||||
),
|
||||
embedding=[0.2, 0.3, 0.4, 0.5],
|
||||
),
|
||||
Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(text="Neural networks are used in AI"),
|
||||
doc_id="ai_1",
|
||||
chunk_id=0,
|
||||
total_chunks=1,
|
||||
),
|
||||
embedding=[0.3, 0.4, 0.5, 0.6],
|
||||
),
|
||||
Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(text="Deep learning requires GPUs"),
|
||||
doc_id="ai_2",
|
||||
chunk_id=0,
|
||||
total_chunks=1,
|
||||
),
|
||||
embedding=[0.4, 0.5, 0.6, 0.7],
|
||||
),
|
||||
]
|
||||
|
||||
# Add documents (automatically creates database, collection, and index)
|
||||
await store.add(docs)
|
||||
print(f"✓ Added {len(docs)} documents with different doc_id prefixes")
|
||||
|
||||
# Search without filter (automatically waits for index if needed)
|
||||
query_embedding = [0.25, 0.35, 0.45, 0.55]
|
||||
all_results = await store.search(
|
||||
query_embedding=query_embedding,
|
||||
limit=4,
|
||||
)
|
||||
print(f"\n✓ Search without filter: {len(all_results)} results")
|
||||
for i, result in enumerate(all_results, 1):
|
||||
doc_id = result.metadata.doc_id
|
||||
score = result.score
|
||||
print(f" {i}. Doc ID: {doc_id}, Score: {score:.4f}")
|
||||
|
||||
# Search with filter for programming docs
|
||||
# Note: doc_id is stored in payload.doc_id in MongoDB documents
|
||||
# MongoDB $vectorSearch filter supports: $gt, $gte, $lt, $lte, $eq, $ne,
|
||||
# $in, $nin, $exists, $not (NOT $regex)
|
||||
prog_results = await store.search(
|
||||
query_embedding=query_embedding,
|
||||
limit=4,
|
||||
filter={"payload.doc_id": {"$in": ["prog_1", "prog_2"]}},
|
||||
)
|
||||
print(f"\n✓ Search with filter (prog docs): {len(prog_results)} results")
|
||||
for i, result in enumerate(prog_results, 1):
|
||||
doc_id = result.metadata.doc_id
|
||||
score = result.score
|
||||
print(f" {i}. Doc ID: {doc_id}, Score: {score:.4f}")
|
||||
|
||||
# Search with filter for AI docs
|
||||
ai_results = await store.search(
|
||||
query_embedding=query_embedding,
|
||||
limit=4,
|
||||
filter={"payload.doc_id": {"$in": ["ai_1", "ai_2"]}},
|
||||
)
|
||||
print(f"\n✓ Search with filter (ai docs): {len(ai_results)} results")
|
||||
for i, result in enumerate(ai_results, 1):
|
||||
doc_id = result.metadata.doc_id
|
||||
score = result.score
|
||||
print(f" {i}. Doc ID: {doc_id}, Score: {score:.4f}")
|
||||
|
||||
await store.close()
|
||||
|
||||
|
||||
async def example_multiple_chunks() -> None:
|
||||
"""The example of documents with multiple chunks."""
|
||||
print("\n" + "=" * 60)
|
||||
print("Test 3: Documents with Multiple Chunks")
|
||||
print("=" * 60)
|
||||
|
||||
store = MongoDBStore(
|
||||
host=os.getenv("MONGODB_HOST"),
|
||||
db_name="chunks_test_db",
|
||||
collection_name="chunks_collection",
|
||||
dimensions=4,
|
||||
distance="cosine",
|
||||
)
|
||||
|
||||
# Create a document split into multiple chunks
|
||||
chunks = [
|
||||
Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(text="Chapter 1: Introduction to AI"),
|
||||
doc_id="book_1",
|
||||
chunk_id=0,
|
||||
total_chunks=3,
|
||||
),
|
||||
embedding=[0.1, 0.2, 0.3, 0.4],
|
||||
),
|
||||
Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(text="Chapter 2: Machine Learning Basics"),
|
||||
doc_id="book_1",
|
||||
chunk_id=1,
|
||||
total_chunks=3,
|
||||
),
|
||||
embedding=[0.2, 0.3, 0.4, 0.5],
|
||||
),
|
||||
Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(text="Chapter 3: Deep Learning Advanced"),
|
||||
doc_id="book_1",
|
||||
chunk_id=2,
|
||||
total_chunks=3,
|
||||
),
|
||||
embedding=[0.3, 0.4, 0.5, 0.6],
|
||||
),
|
||||
]
|
||||
|
||||
# Add chunks (automatically creates database, collection, and index)
|
||||
await store.add(chunks)
|
||||
print(f"✓ Added document with {len(chunks)} chunks")
|
||||
|
||||
# Search and verify chunk information (automatically waits for index if
|
||||
# needed)
|
||||
query_embedding = [0.2, 0.3, 0.4, 0.5]
|
||||
results = await store.search(
|
||||
query_embedding=query_embedding,
|
||||
limit=3,
|
||||
)
|
||||
|
||||
print("\n✓ Search results for multi-chunk document:")
|
||||
for i, result in enumerate(results, 1):
|
||||
chunk_info = (
|
||||
f"{result.metadata.chunk_id}/{result.metadata.total_chunks}"
|
||||
)
|
||||
print(f" {i}. Chunk {chunk_info}")
|
||||
print(f" Content: {result.metadata.content}")
|
||||
print(f" Score: {result.score:.4f}")
|
||||
|
||||
await store.close()
|
||||
|
||||
|
||||
async def example_distance_metrics() -> None:
|
||||
"""The example of different distance metrics."""
|
||||
print("\n" + "=" * 60)
|
||||
print("Test 4: Different Distance Metrics")
|
||||
print("=" * 60)
|
||||
|
||||
# Test with different metrics
|
||||
metrics = ["cosine", "euclidean", "dotProduct"]
|
||||
|
||||
for metric in metrics:
|
||||
print(f"\n--- Testing {metric} metric ---")
|
||||
store = MongoDBStore(
|
||||
host=os.getenv("MONGODB_HOST"),
|
||||
db_name=f"{metric}_test_db",
|
||||
collection_name=f"{metric}_collection",
|
||||
dimensions=4,
|
||||
distance=metric,
|
||||
)
|
||||
|
||||
docs = [
|
||||
Document(
|
||||
metadata=DocMetadata(
|
||||
content=TextBlock(text=f"Test doc for {metric}"),
|
||||
doc_id=f"doc_{metric}_1",
|
||||
chunk_id=0,
|
||||
total_chunks=1,
|
||||
),
|
||||
embedding=[0.1, 0.2, 0.3, 0.4],
|
||||
),
|
||||
]
|
||||
|
||||
# Add and search (automatically creates database/collection/index
|
||||
# and waits for index)
|
||||
await store.add(docs)
|
||||
results = await store.search(
|
||||
query_embedding=[0.1, 0.2, 0.3, 0.4],
|
||||
limit=1,
|
||||
)
|
||||
|
||||
print(f"✓ {metric} metric: Score = {results[0].score:.4f}")
|
||||
|
||||
await store.close()
|
||||
|
||||
|
||||
async def main() -> None:
|
||||
"""Run all example."""
|
||||
print("\n" + "=" * 60)
|
||||
print("MongoDBStore Comprehensive Test Suite")
|
||||
print("=" * 60)
|
||||
|
||||
try:
|
||||
# await example_basic_operations()
|
||||
# await example_filter_search()
|
||||
# await example_multiple_chunks()
|
||||
await example_distance_metrics()
|
||||
|
||||
print("\n" + "=" * 60)
|
||||
print("✓ All tests completed successfully!")
|
||||
print("=" * 60)
|
||||
|
||||
except Exception as e:
|
||||
print(f"\n✗ Test failed with error: {e}")
|
||||
import traceback
|
||||
|
||||
traceback.print_exc()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
||||
Reference in New Issue
Block a user