Use when getting started with llmemory document storage and search - covers installation, initialization, adding documents, vector search, hybrid search, semantic search, BM25 full-text search, document management, and building RAG systems with multi-tenant support
Provides document storage and vector search capabilities using PostgreSQL with pgvector. Use when you need to add documents, perform hybrid/semantic/BM25 searches, or build RAG systems with multi-tenant support.
/plugin marketplace add juanre/llmemory/plugin install llmemory@juanre-ai-toolsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
uv add llmemory
# or
pip install llmemory
Prerequisites:
Installing pgvector:
# Ubuntu/Debian
sudo apt-get install postgresql-16-pgvector
# macOS with Homebrew
brew install pgvector
# Or using CREATE EXTENSION in PostgreSQL:
psql -d your_database -c "CREATE EXTENSION IF NOT EXISTS vector;"
Verifying pgvector installation:
SELECT * FROM pg_extension WHERE extname = 'vector';
-- Should return one row if installed correctly
This skill documents core llmemory operations:
LLMemory - Main interface classDocumentType - Enum for document typesSearchType - Enum for search modesChunkingStrategy - Enum for chunking strategiesadd_document() - Add and process documentssearch() - Search for documentssearch_with_routing() - Search with automatic query routing (detects answerable queries)search_with_documents() - Search and return results with document metadatalist_documents() - List documents with paginationget_document() - Retrieve specific documentget_document_chunks() - Get chunks with paginationget_chunk_count() - Get number of chunks for documentdelete_document() / delete_documents() - Delete documentsget_statistics() - Get owner statisticsdb_manager - Access underlying database managerinitialize() / close() - Lifecycle managementimport asyncio
from llmemory import LLMemory, DocumentType, SearchType
async def main():
# Initialize
memory = LLMemory(
connection_string="postgresql://localhost/mydb",
openai_api_key="sk-..."
)
await memory.initialize()
# Add a document
result = await memory.add_document(
owner_id="workspace-1",
id_at_origin="user-123",
document_name="example.txt",
document_type=DocumentType.TEXT,
content="Your document content here...",
metadata={"category": "example"}
)
print(f"Created document with {result.chunks_created} chunks")
# Search
results = await memory.search(
owner_id="workspace-1",
query_text="your search query",
search_type=SearchType.HYBRID,
limit=5
)
for result in results:
print(f"[{result.score:.3f}] {result.content[:80]}...")
# Clean up
await memory.close()
asyncio.run(main())
Main interface for document operations.
Constructor:
LLMemory(
connection_string: Optional[str] = None,
openai_api_key: Optional[str] = None,
config: Optional[LLMemoryConfig] = None,
db_manager: Optional[AsyncDatabaseManager] = None
)
Parameters:
connection_string (str, optional): PostgreSQL connection URL (format: postgresql://user:pass@host:port/database). Ignored if db_manager provided.openai_api_key (str, optional): OpenAI API key for embeddings. Can also be set via OPENAI_API_KEY environment variable.config (LLMemoryConfig, optional): Configuration object. Defaults to config from environment if not provided.db_manager (AsyncDatabaseManager, optional): Existing database manager from shared pool (for production apps with multiple services).Raises:
ConfigurationError: If neither connection_string nor db_manager provided, or if configuration is invalid.Example:
from llmemory import LLMemory
# Simple initialization
memory = LLMemory(
connection_string="postgresql://localhost/mydb",
openai_api_key="sk-..."
)
await memory.initialize()
Create instance from existing AsyncDatabaseManager (shared pool pattern).
Signature:
@classmethod
def from_db_manager(
cls,
db_manager: AsyncDatabaseManager,
openai_api_key: Optional[str] = None,
config: Optional[LLMemoryConfig] = None
) -> LLMemory
Parameters:
db_manager (AsyncDatabaseManager, required): Existing database manager with schema already setopenai_api_key (str, optional): OpenAI API keyconfig (LLMemoryConfig, optional): Configuration objectReturns:
LLMemory: Configured instanceExample:
from pgdbm import AsyncDatabaseManager, DatabaseConfig
from llmemory import LLMemory
# Create shared pool
config = DatabaseConfig(connection_string="postgresql://localhost/mydb")
shared_pool = await AsyncDatabaseManager.create_shared_pool(config)
# Create llmemory with shared pool
db_manager = AsyncDatabaseManager(pool=shared_pool, schema="llmemory")
memory = LLMemory.from_db_manager(
db_manager,
openai_api_key="sk-..."
)
await memory.initialize()
Get the underlying database manager for health checks and monitoring.
Property:
@property
def db_manager(self) -> Optional[AsyncDatabaseManager]
Returns:
Optional[AsyncDatabaseManager]: Database manager instance if initialized, None otherwiseExample:
from llmemory import LLMemory
memory = LLMemory(connection_string="postgresql://localhost/mydb")
await memory.initialize()
# Access underlying database manager
db_mgr = memory.db_manager
if db_mgr:
# Check connection pool status
pool_status = await db_mgr.get_pool_status()
print(f"Active connections: {pool_status['active']}")
print(f"Idle connections: {pool_status['idle']}")
# Run health check
is_healthy = await db_mgr.health_check()
print(f"Database healthy: {is_healthy}")
When to use:
Initialize the library and database schema.
Signature:
async def initialize() -> None
Raises:
DatabaseError: If database initialization failsConfigurationError: If configuration is invalidExample:
memory = LLMemory(connection_string="postgresql://localhost/mydb")
await memory.initialize() # Sets up tables, migrations, indexes
Close all connections and cleanup resources.
Signature:
async def close() -> None
Example:
await memory.close()
Context Manager Pattern (Recommended):
async with LLMemory(connection_string="...") as memory:
# Use memory here
results = await memory.search(...)
# Automatically closed
class DocumentType(str, Enum):
PDF = "pdf"
MARKDOWN = "markdown"
CODE = "code"
TEXT = "text"
HTML = "html"
DOCX = "docx"
EMAIL = "email"
REPORT = "report"
CHAT = "chat"
PRESENTATION = "presentation"
LEGAL_DOCUMENT = "legal_document"
TECHNICAL_DOC = "technical_doc"
BUSINESS_REPORT = "business_report"
UNKNOWN = "unknown"
class SearchType(str, Enum):
VECTOR = "vector" # Vector similarity search only
TEXT = "text" # Full-text search only
HYBRID = "hybrid" # Combines vector + text (recommended)
class ChunkingStrategy(str, Enum):
HIERARCHICAL = "hierarchical" # Default - Creates parent and child chunks for better context
FIXED_SIZE = "fixed_size" # Fixed-size chunks with overlap
SEMANTIC = "semantic" # Chunks based on semantic boundaries (slower, higher quality)
SLIDING_WINDOW = "sliding_window" # Sliding window with configurable overlap
Strategy descriptions:
Usage:
from llmemory import ChunkingStrategy
# Use enum value
result = await memory.add_document(
owner_id="workspace-1",
id_at_origin="user-123",
document_name="example.txt",
document_type=DocumentType.TEXT,
content="Your document content...",
chunking_strategy=ChunkingStrategy.SEMANTIC # Use enum
)
# Or use string value (also valid)
result = await memory.add_document(
owner_id="workspace-1",
id_at_origin="user-123",
document_name="example.txt",
document_type=DocumentType.TEXT,
content="Your document content...",
chunking_strategy="hierarchical" # String also works
)
Search result from any search operation.
Fields:
chunk_id (UUID): Chunk identifierdocument_id (UUID): Document identifiercontent (str): Chunk contentmetadata (Dict[str, Any]): Chunk metadatascore (float): Overall relevance scoresimilarity (float, optional): Vector similarity score (0-1)text_rank (float, optional): Full-text search rankrrf_score (float, optional): Reciprocal Rank Fusion scorererank_score (float, optional): Reranker score (when reranking enabled)summary (str, optional): Chunk summary if generatedparent_chunks (List[DocumentChunk]): Surrounding chunks if requestedExtended search result with document metadata (inherits from SearchResult).
Additional Fields:
document_name (str): Name of the source documentdocument_type (str): Type of documentdocument_metadata (Dict[str, Any]): Document-level metadataWhen used: Returned by search_with_documents()
Container for enriched search results.
Fields:
results (List[EnrichedSearchResult]): Enriched search resultstotal (int): Total number of resultsResult of adding a document.
Fields:
document (Document): Created document object with all fieldschunks_created (int): Number of chunks createdembeddings_created (int): Number of embeddings generatedprocessing_time_ms (float): Processing time in millisecondsResult of listing documents with pagination.
Fields:
documents (List[Document]): Document objectstotal (int): Total matching documents (before pagination)limit (int): Applied limitoffset (int): Applied offsetDocument with optional chunks.
Fields:
document (Document): Document objectchunks (Optional[List[DocumentChunk]]): Chunks if requestedchunk_count (int): Total number of chunksStatistics for an owner's documents.
Fields:
document_count (int): Total documentschunk_count (int): Total chunkstotal_size_bytes (int): Estimated total sizedocument_type_breakdown (Optional[Dict[DocumentType, int]]): Count by document typecreated_date_range (Optional[Tuple[datetime, datetime]]): (min_date, max_date) of document creationResult of batch delete operation.
Fields:
deleted_count (int): Number of documents deleteddeleted_document_ids (List[UUID]): IDs of deleted documentsEnum for embedding generation status.
class EmbeddingStatus(str, Enum):
PENDING = "pending" # Job queued but not started
PROCESSING = "processing" # Currently generating embeddings
COMPLETED = "completed" # Successfully completed
FAILED = "failed" # Failed with error
Represents a background embedding generation job.
Fields:
chunk_id (UUID): Chunk being processedprovider_id (str): Embedding provider IDstatus (EmbeddingStatus): Current statusretry_count (int): Number of retries attemptederror_message (Optional[str]): Error details if failedcreated_at (datetime): When job was createdprocessed_at (Optional[datetime]): When processing finishedInternal search query model (rarely used directly).
Fields:
owner_id (str): Owner identifierquery_text (str): Search query textsearch_type (SearchType): Type of searchlimit (int): Maximum resultsalpha (float): Hybrid search weightmetadata_filter (Optional[Dict[str, Any]]): Metadata filterid_at_origin (Optional[str]): Single origin filterid_at_origins (Optional[List[str]]): Multiple origins filterdate_from (Optional[datetime]): Start datedate_to (Optional[datetime]): End dateinclude_parent_context (bool): Include parent chunkscontext_window (int): Number of parent chunksrerank (bool): Enable rerankingenable_query_expansion (bool): Enable query expansionmax_query_variants (int): Max query variantsAdd a document and process it into searchable chunks.
Signature:
async def add_document(
owner_id: str,
id_at_origin: str,
document_name: str,
document_type: Union[DocumentType, str],
content: str,
document_date: Optional[datetime] = None,
metadata: Optional[Dict[str, Any]] = None,
chunking_strategy: str = "hierarchical",
chunking_config: Optional[ChunkingConfig] = None,
generate_embeddings: bool = True
) -> DocumentAddResult
Parameters:
owner_id (str, required): Owner identifier for multi-tenancy (e.g., "workspace-123", "tenant-abc")id_at_origin (str, required): Origin identifier within owner (e.g., "user-456", "thread-789")document_name (str, required): Name of the documentdocument_type (DocumentType or str, required): Type of documentcontent (str, required): Full document contentdocument_date (datetime, optional): Document date for temporal filteringmetadata (Dict[str, Any], optional): Custom metadata (searchable via metadata_filter)chunking_strategy (str, default: "hierarchical"): Chunking strategy to usechunking_config (ChunkingConfig, optional): Custom chunking configurationgenerate_embeddings (bool, default: True): Generate embeddings immediatelyReturns:
DocumentAddResult with:
document (Document): Created document objectchunks_created (int): Number of chunks createdembeddings_created (int): Number of embeddings generatedprocessing_time_ms (float): Processing time in millisecondsRaises:
ValidationError: If input validation fails (invalid owner_id, empty content, etc.)DatabaseError: If database operation failsEmbeddingError: If embedding generation failsExample:
from llmemory import DocumentType
from datetime import datetime
result = await memory.add_document(
owner_id="workspace-1",
id_at_origin="user-123",
document_name="Q4 Report.pdf",
document_type=DocumentType.PDF,
content="Full document text here...",
document_date=datetime(2024, 10, 1),
metadata={
"category": "financial",
"department": "finance",
"confidential": False
}
)
print(f"Document ID: {result.document.document_id}")
print(f"Chunks: {result.chunks_created}")
print(f"Embeddings: {result.embeddings_created}")
print(f"Time: {result.processing_time_ms:.2f}ms")
Search for documents.
Signature:
async def search(
owner_id: str,
query_text: str,
search_type: Union[SearchType, str] = SearchType.HYBRID,
limit: int = 10,
id_at_origin: Optional[str] = None,
id_at_origins: Optional[List[str]] = None,
metadata_filter: Optional[Dict[str, Any]] = None,
date_from: Optional[datetime] = None,
date_to: Optional[datetime] = None,
include_parent_context: bool = False,
context_window: int = 2,
alpha: float = 0.5,
query_expansion: Optional[bool] = None,
max_query_variants: Optional[int] = None,
rerank: Optional[bool] = None,
rerank_top_k: Optional[int] = None,
rerank_return_k: Optional[int] = None
) -> List[SearchResult]
Parameters:
owner_id (str, required): Owner identifier for filteringquery_text (str, required): Search query textsearch_type (SearchType or str, default: HYBRID): Type of search to performlimit (int, default: 10): Maximum number of resultsid_at_origin (str, optional): Filter by single origin IDid_at_origins (List[str], optional): Filter by multiple origin IDsmetadata_filter (Dict[str, Any], optional): Filter by metadata (e.g., {"category": "financial"})date_from (datetime, optional): Start date filterdate_to (datetime, optional): End date filterinclude_parent_context (bool, default: False): Include surrounding chunkscontext_window (int, default: 2): Number of surrounding chunks to includealpha (float, default: 0.5): Hybrid search weight (0=text only, 1=vector only)query_expansion (bool, optional): Enable query expansion (None = follow config)max_query_variants (int, optional): Max query variants for expansionrerank (bool, optional): Enable reranking (None = follow config)rerank_top_k (int, optional): Candidates for rerankerrerank_return_k (int, optional): Results after rerankingReturns:
List[SearchResult] where each result has:
chunk_id (UUID): Chunk identifierdocument_id (UUID): Document identifiercontent (str): Chunk contentmetadata (Dict[str, Any]): Chunk metadatascore (float): Overall relevance scoresimilarity (float, optional): Vector similarity scoretext_rank (float, optional): Text search rankrrf_score (float, optional): Reciprocal Rank Fusion scorererank_score (float, optional): Reranker score (when reranking enabled)summary (str, optional): Chunk summary if availableparent_chunks (List[DocumentChunk]): Surrounding chunks if requestedRaises:
ValidationError: If input validation failsSearchError: If search operation failsExample:
from llmemory import SearchType
# Basic search
results = await memory.search(
owner_id="workspace-1",
query_text="quarterly revenue trends",
search_type=SearchType.HYBRID,
limit=5
)
for result in results:
print(f"Score: {result.score:.3f}")
print(f"Content: {result.content[:100]}...")
print(f"Metadata: {result.metadata}")
print("---")
# Advanced search with filters
results = await memory.search(
owner_id="workspace-1",
query_text="product launch strategy",
search_type=SearchType.HYBRID,
limit=10,
metadata_filter={"category": "strategy", "department": "product"},
date_from=datetime(2024, 1, 1),
date_to=datetime(2024, 12, 31),
alpha=0.7 # Favor vector search slightly
)
Search and return results enriched with document metadata.
Signature:
async def search_with_documents(
owner_id: str,
query_text: str,
search_type: Union[SearchType, str] = SearchType.HYBRID,
limit: int = 10,
metadata_filter: Optional[Dict[str, Any]] = None,
include_document_metadata: bool = True
) -> SearchResultWithDocuments
Parameters:
owner_id (str, required): Owner identifierquery_text (str, required): Search query textsearch_type (SearchType or str, default: HYBRID): Type of searchlimit (int, default: 10): Maximum resultsmetadata_filter (Dict[str, Any], optional): Filter by metadatainclude_document_metadata (bool, default: True): Include document-level metadataReturns:
SearchResultWithDocuments with:
results (List[EnrichedSearchResult]): Enriched search resultstotal (int): Total number of resultsEnrichedSearchResult fields:
SearchResult (chunk_id, content, score, etc.)document_name (str): Name of the source documentdocument_type (str): Type of documentdocument_metadata (Dict[str, Any]): Document-level metadataRaises:
ValidationError: If input validation failsSearchError: If search operation failsExample:
# Search with document context
results_with_docs = await memory.search_with_documents(
owner_id="workspace-1",
query_text="quarterly financial performance",
search_type=SearchType.HYBRID,
limit=10
)
print(f"Found {results_with_docs.total} results")
for result in results_with_docs.results:
print(f"Document: {result.document_name}")
print(f"Type: {result.document_type}")
print(f"Score: {result.score:.3f}")
print(f"Content: {result.content[:100]}...")
print(f"Metadata: {result.document_metadata}")
print("---")
When to use:
List documents with pagination and filtering.
Signature:
async def list_documents(
owner_id: str,
limit: int = 20,
offset: int = 0,
document_type: Optional[DocumentType] = None,
order_by: Literal["created_at", "updated_at", "document_name"] = "created_at",
order_desc: bool = True,
metadata_filter: Optional[Dict[str, Any]] = None
) -> DocumentListResult
Parameters:
owner_id (str, required): Owner identifierlimit (int, default: 20): Maximum documents to returnoffset (int, default: 0): Number of documents to skip (for pagination)document_type (DocumentType, optional): Filter by document typeorder_by (str, default: "created_at"): Field to sort byorder_desc (bool, default: True): Sort descendingmetadata_filter (Dict[str, Any], optional): Filter by metadataReturns:
DocumentListResult with:
documents (List[Document]): Document objectstotal (int): Total matching documentslimit (int): Applied limitoffset (int): Applied offsetRaises:
ValidationError: If parameters are invalidExample:
# List recent documents
result = await memory.list_documents(
owner_id="workspace-1",
limit=20,
offset=0,
order_by="created_at",
order_desc=True
)
print(f"Total documents: {result.total}")
for doc in result.documents:
print(f"{doc.document_name} - {doc.document_type.value}")
# Filter by type and metadata
result = await memory.list_documents(
owner_id="workspace-1",
document_type=DocumentType.PDF,
metadata_filter={"category": "financial"},
limit=50
)
Retrieve a specific document with optional chunks.
Signature:
async def get_document(
document_id: Union[str, UUID],
include_chunks: bool = False,
include_embeddings: bool = False
) -> DocumentWithChunks
Parameters:
document_id (str or UUID, required): Document identifierinclude_chunks (bool, default: False): Include all chunks for this documentinclude_embeddings (bool, default: False): Include embeddings with chunks (requires include_chunks=True)Returns:
DocumentWithChunks with:
document (Document): Document objectchunks (List[DocumentChunk], optional): Chunks if requestedchunk_count (int): Total number of chunksRaises:
DocumentNotFoundError: If document doesn't existExample:
# Get document without chunks
doc_info = await memory.get_document(
document_id="uuid-here"
)
print(f"Document: {doc_info.document.document_name}")
print(f"Chunks: {doc_info.chunk_count}")
# Get document with all chunks
doc_with_chunks = await memory.get_document(
document_id="uuid-here",
include_chunks=True
)
for chunk in doc_with_chunks.chunks:
print(f"Chunk {chunk.chunk_index}: {chunk.content[:50]}...")
Get chunks for a specific document with pagination.
Signature:
async def get_document_chunks(
document_id: Union[str, UUID],
limit: Optional[int] = None,
offset: int = 0
) -> List[DocumentChunk]
Parameters:
document_id (str or UUID, required): Document identifierlimit (int, optional): Maximum number of chunks to return (None = all chunks)offset (int, default: 0): Number of chunks to skip for paginationReturns:
List[DocumentChunk]: List of chunks ordered by chunk_indexRaises:
DocumentNotFoundError: If document doesn't existValidationError: If limit or offset are negativeExample:
# Get all chunks for a document
chunks = await memory.get_document_chunks(
document_id="uuid-here"
)
print(f"Total chunks: {len(chunks)}")
for chunk in chunks:
print(f"Chunk {chunk.chunk_index}: {chunk.content[:50]}...")
# Paginated retrieval
page_size = 10
offset = 0
while True:
chunks = await memory.get_document_chunks(
document_id="uuid-here",
limit=page_size,
offset=offset
)
if not chunks:
break
for chunk in chunks:
print(f"Chunk {chunk.chunk_index}: {chunk.content}")
offset += page_size
When to use:
Get the number of chunks for a document.
Signature:
async def get_chunk_count(
document_id: Union[str, UUID]
) -> int
Parameters:
document_id (str or UUID, required): Document identifierReturns:
int: Number of chunks for the documentRaises:
DocumentNotFoundError: If document doesn't existExample:
# Get chunk count
count = await memory.get_chunk_count(document_id="uuid-here")
print(f"Document has {count} chunks")
# Check if document needs re-chunking
if count > 1000:
print("Warning: Very large document, consider splitting")
elif count == 0:
print("Warning: Document has no chunks")
When to use:
Delete a single document and all its chunks.
Signature:
async def delete_document(
document_id: Union[UUID, str]
) -> None
Parameters:
document_id (UUID or str, required): Document ID to deleteRaises:
ResourceNotFoundError: If document not foundDatabaseError: If deletion failsExample:
await memory.delete_document("uuid-here")
Delete multiple documents.
Signature:
async def delete_documents(
owner_id: str,
document_ids: Optional[List[Union[str, UUID]]] = None,
metadata_filter: Optional[Dict[str, Any]] = None
) -> DeleteResult
Parameters:
owner_id (str, required): Owner identifier (safety check)document_ids (List[UUID or str], optional): Specific documents to deletemetadata_filter (Dict[str, Any], optional): Delete all matching metadataReturns:
DeleteResult with:
deleted_count (int): Number of documents deleteddeleted_document_ids (List[UUID]): IDs of deleted documentsRaises:
ValueError: If neither document_ids nor metadata_filter providedValidationError: If owner_id is invalidExample:
# Delete specific documents
result = await memory.delete_documents(
owner_id="workspace-1",
document_ids=["uuid-1", "uuid-2", "uuid-3"]
)
print(f"Deleted {result.deleted_count} documents")
# Delete by metadata
result = await memory.delete_documents(
owner_id="workspace-1",
metadata_filter={"category": "temp", "delete_after": "2024-01-01"}
)
Get statistics for an owner's documents.
Signature:
async def get_statistics(
owner_id: str,
include_breakdown: bool = False
) -> OwnerStatistics
Parameters:
owner_id (str, required): Owner identifierinclude_breakdown (bool, default: False): Include breakdown by document typeReturns:
OwnerStatistics with:
document_count (int): Total documentschunk_count (int): Total chunkstotal_size_bytes (int): Estimated total sizedocument_type_breakdown (Dict[DocumentType, int], optional): Count by typecreated_date_range (Tuple[datetime, datetime], optional): Date rangeExample:
stats = await memory.get_statistics(
owner_id="workspace-1",
include_breakdown=True
)
print(f"Documents: {stats.document_count}")
print(f"Chunks: {stats.chunk_count}")
print(f"Size: {stats.total_size_bytes / 1024 / 1024:.2f} MB")
if stats.document_type_breakdown:
for doc_type, count in stats.document_type_breakdown.items():
print(f" {doc_type.value}: {count}")
async with LLMemory(connection_string="postgresql://localhost/mydb") as memory:
# Add documents
await memory.add_document(...)
# Search
results = await memory.search(...)
# Automatically closed
documents = [
{"name": "doc1.txt", "content": "..."},
{"name": "doc2.txt", "content": "..."},
{"name": "doc3.txt", "content": "..."},
]
for doc in documents:
result = await memory.add_document(
owner_id="workspace-1",
id_at_origin="batch-import",
document_name=doc["name"],
document_type=DocumentType.TEXT,
content=doc["content"]
)
print(f"Added {doc['name']}: {result.chunks_created} chunks")
# Add document with metadata
await memory.add_document(
owner_id="workspace-1",
id_at_origin="user-123",
document_name="report.pdf",
document_type=DocumentType.PDF,
content="...",
metadata={
"category": "financial",
"year": 2024,
"quarter": "Q4",
"confidential": False
}
)
# Search with metadata filter
results = await memory.search(
owner_id="workspace-1",
query_text="revenue analysis",
metadata_filter={
"category": "financial",
"year": 2024
},
limit=10
)
page_size = 20
offset = 0
while True:
result = await memory.list_documents(
owner_id="workspace-1",
limit=page_size,
offset=offset
)
if not result.documents:
break
for doc in result.documents:
print(f"{doc.document_name}: {doc.chunk_count} chunks")
offset += page_size
if offset >= result.total:
break
All llmemory exceptions inherit from LLMemoryError base class.
LLMemoryError (base)
├── ConfigurationError
├── ValidationError
├── DatabaseError
│ └── ConnectionError
├── EmbeddingError
├── SearchError
├── ChunkingError
├── ResourceNotFoundError
│ └── DocumentNotFoundError
├── RateLimitError
└── PermissionError
Base exception for all llmemory errors.
When raised: Never raised directly, use specific subclasses
Usage:
from llmemory import LLMemoryError
try:
await memory.search(...)
except LLMemoryError as e:
# Catches all llmemory exceptions
print(f"LLMemory error: {e}")
Configuration is invalid or incomplete.
Common causes:
When raised:
LLMemory() initialization if neither connection_string nor db_manager providedinitialize() if config validation failsExample:
from llmemory import ConfigurationError
try:
# Missing connection_string
memory = LLMemory() # Raises ConfigurationError
except ConfigurationError as e:
print(f"Invalid configuration: {e}")
Input validation failed.
Common causes:
When raised:
add_document() if owner_id, id_at_origin, or content invalidsearch() if owner_id or query_text invalidlist_documents() if pagination parameters invalidExample:
from llmemory import ValidationError
try:
await memory.add_document(
owner_id="", # Empty owner_id - invalid
id_at_origin="user-123",
document_name="doc.txt",
document_type=DocumentType.TEXT,
content="content"
)
except ValidationError as e:
print(f"Validation failed: {e}")
# Output: "Validation failed: owner_id cannot be empty"
Database operation failed.
Common causes:
When raised:
initialize() if database setup failsadd_document() if insert failsExample:
from llmemory import DatabaseError
try:
await memory.add_document(...)
except DatabaseError as e:
print(f"Database error: {e}")
# Possible causes: connection lost, disk full, constraint violation
Cannot connect to database (subclass of DatabaseError).
Common causes:
When raised:
initialize() if connection failsExample:
from llmemory import ConnectionError
try:
memory = LLMemory(connection_string="postgresql://invalid:5432/db")
await memory.initialize()
except ConnectionError as e:
print(f"Cannot connect to database: {e}")
Embedding generation failed.
Common causes:
When raised:
add_document() if generate_embeddings=True and embedding failsprocess_pending_embeddings() if batch processing failsExample:
from llmemory import EmbeddingError
try:
await memory.add_document(
owner_id="workspace-1",
id_at_origin="user-123",
document_name="doc.txt",
document_type=DocumentType.TEXT,
content="content",
generate_embeddings=True # Will fail if no API key
)
except EmbeddingError as e:
print(f"Embedding generation failed: {e}")
Search operation failed.
Common causes:
When raised:
search() if query execution failsExample:
from llmemory import SearchError
try:
results = await memory.search(
owner_id="workspace-1",
query_text="test",
search_type=SearchType.VECTOR # Fails if no embeddings
)
except SearchError as e:
print(f"Search failed: {e}")
Document chunking failed.
Common causes:
When raised:
add_document() if chunking failsprocess_document() if chunker failsExample:
from llmemory import ChunkingError
try:
await memory.add_document(
owner_id="workspace-1",
id_at_origin="user-123",
document_name="huge.txt",
document_type=DocumentType.TEXT,
content="x" * 100_000_000 # Too large
)
except ChunkingError as e:
print(f"Chunking failed: {e}")
Requested resource doesn't exist.
Common causes:
When raised:
delete_document() if document not foundget_document() if document doesn't existSpecific document doesn't exist (subclass of ResourceNotFoundError).
When raised:
get_document() if document_id doesn't existdelete_document() if document not foundExample:
from llmemory import DocumentNotFoundError
from uuid import UUID
try:
doc = await memory.get_document(
document_id=UUID("00000000-0000-0000-0000-000000000000")
)
except DocumentNotFoundError as e:
print(f"Document not found: {e}")
API rate limit exceeded.
Common causes:
When raised:
Example:
from llmemory import RateLimitError
import asyncio
try:
# Batch process with rate limiting
for doc in documents:
await memory.add_document(...)
except RateLimitError as e:
print(f"Rate limited: {e}")
await asyncio.sleep(60) # Wait before retry
Permission denied for operation.
Common causes:
When raised:
Example:
from llmemory import PermissionError as LLMemoryPermissionError
try:
# Trying to access another owner's document
doc = await memory.get_document(document_id="...")
except LLMemoryPermissionError as e:
print(f"Permission denied: {e}")
from llmemory import (
LLMemoryError, ConfigurationError, ValidationError, DatabaseError,
DocumentNotFoundError, EmbeddingError, SearchError, ChunkingError,
ResourceNotFoundError, RateLimitError, ConnectionError
)
try:
memory = LLMemory(connection_string="postgresql://localhost/mydb")
await memory.initialize()
result = await memory.add_document(
owner_id="workspace-1",
id_at_origin="user-123",
document_name="test.txt",
document_type=DocumentType.TEXT,
content="Test content"
)
results = await memory.search(
owner_id="workspace-1",
query_text="test query"
)
except ConfigurationError as e:
print(f"Configuration error: {e}")
except ValidationError as e:
print(f"Validation error: {e}")
except ConnectionError as e:
print(f"Cannot connect to database: {e}")
except DatabaseError as e:
print(f"Database error: {e}")
except DocumentNotFoundError as e:
print(f"Document not found: {e}")
except EmbeddingError as e:
print(f"Embedding error: {e}")
except SearchError as e:
print(f"Search error: {e}")
except ChunkingError as e:
print(f"Chunking error: {e}")
except RateLimitError as e:
print(f"Rate limit hit: {e}")
await asyncio.sleep(60) # Wait before retry
except LLMemoryError as e:
print(f"Unexpected llmemory error: {e}")
finally:
await memory.close()
# Handle specific errors differently
try:
result = await memory.add_document(...)
except ValidationError as e:
# User input error - return 400
return {"error": str(e), "code": 400}
except EmbeddingError as e:
# Embedding failed but document added - return partial success
logger.error(f"Embedding failed: {e}")
return {"warning": "Document added but embeddings pending", "code": 202}
except DatabaseError as e:
# System error - return 500
logger.error(f"Database error: {e}")
return {"error": "Internal server error", "code": 500}
import asyncio
from llmemory import RateLimitError, ConnectionError
async def robust_search(memory, owner_id, query, max_retries=3):
"""Search with retry logic for transient errors."""
for attempt in range(max_retries):
try:
return await memory.search(
owner_id=owner_id,
query_text=query
)
except RateLimitError:
if attempt < max_retries - 1:
await asyncio.sleep(2 ** attempt) # Exponential backoff
continue
raise
except ConnectionError:
if attempt < max_retries - 1:
await asyncio.sleep(1)
continue
raise
DATABASE_URL=postgresql://localhost/mydb # PostgreSQL connection string
LLMEMORY_DB_MIN_POOL_SIZE=5 # Minimum connection pool size (default: 5)
LLMEMORY_DB_MAX_POOL_SIZE=20 # Maximum connection pool size (default: 20)
# Provider selection
OPENAI_API_KEY=sk-... # OpenAI API key (required for OpenAI embeddings)
LLMEMORY_EMBEDDING_PROVIDER=openai # Provider: "openai" or "local-minilm" (default: "openai")
# Local embedding models
LLMEMORY_LOCAL_MODEL=all-MiniLM-L6-v2 # Local model name (default: all-MiniLM-L6-v2)
LLMEMORY_LOCAL_DEVICE=cpu # Device: "cpu" or "cuda" (default: cpu)
LLMEMORY_LOCAL_CACHE_DIR=/path/to/cache # Cache directory for local models
# HNSW Index tuning
LLMEMORY_HNSW_PROFILE=balanced # Profile: "fast", "balanced", "accurate" (default: balanced)
# Search defaults
LLMEMORY_DEFAULT_SEARCH_TYPE=hybrid # Default search type (default: hybrid)
LLMEMORY_SEARCH_CACHE_TTL=300 # Search cache TTL in seconds (default: 300)
LLMEMORY_ENABLE_QUERY_EXPANSION=1 # Enable query expansion: 1 or 0 (default: 0)
LLMEMORY_MAX_QUERY_VARIANTS=3 # Max query variants to generate (default: 3)
LLMEMORY_ENABLE_RERANK=1 # Enable reranking: 1 or 0 (default: 0)
LLMEMORY_RERANK_PROVIDER=openai # Provider: "openai", "lexical" (default: lexical)
LLMEMORY_RERANK_MODEL=gpt-4.1-mini # Reranking model name
LLMEMORY_RERANK_TOP_K=50 # Candidates to consider (default: 50)
LLMEMORY_RERANK_RETURN_K=15 # Results to return after reranking (default: 15)
LLMEMORY_RERANK_DEVICE=cpu # Device for local rerankers: "cpu" or "cuda"
LLMEMORY_RERANK_BATCH_SIZE=16 # Batch size for local reranking (default: 16)
LLMEMORY_ENABLE_CHUNK_SUMMARIES=1 # Enable chunk summaries: 1 or 0 (default: 0)
LLMEMORY_DISABLE_CACHING=1 # Disable search caching (default: enabled)
LLMEMORY_DISABLE_METRICS=1 # Disable Prometheus metrics (default: enabled)
LLMEMORY_LOG_LEVEL=INFO # Log level: DEBUG, INFO, WARNING, ERROR (default: INFO)
Main configuration class containing all subsystem configurations.
Constructor:
LLMemoryConfig(
embedding: EmbeddingConfig = EmbeddingConfig(),
chunking: ChunkingConfig = ChunkingConfig(),
search: SearchConfig = SearchConfig(),
database: DatabaseConfig = DatabaseConfig(),
validation: ValidationConfig = ValidationConfig(),
enable_caching: bool = True,
enable_metrics: bool = True,
enable_background_processing: bool = True,
log_level: str = "INFO",
log_slow_queries: bool = True,
slow_query_threshold: float = 1.0
)
Creating and using config:
from llmemory import LLMemoryConfig
# Use default configuration
config = LLMemoryConfig()
# Modify specific settings
config.embedding.default_provider = "openai"
config.chunking.default_parent_size = 1000
config.search.enable_query_expansion = True
# Use with LLMemory
memory = LLMemory(
connection_string="postgresql://localhost/mydb",
config=config
)
Loading from environment:
# Automatically reads from environment variables
config = LLMemoryConfig.from_env()
memory = LLMemory(connection_string="...", config=config)
Configuration for embedding generation.
Fields:
default_provider (str, default: "openai"): Default embedding providerproviders (Dict[str, EmbeddingProviderConfig]): Available providersauto_create_tables (bool, default: True): Auto-create provider tablesExample:
config = LLMemoryConfig()
config.embedding.default_provider = "local-minilm"
Configuration for a single embedding provider.
Fields:
provider_type (str): "openai" or "local"model_name (str): Model namedimension (int): Embedding dimensionsapi_key (Optional[str]): API key (for OpenAI)device (str, default: "cpu"): Device for local models ("cpu" or "cuda")cache_dir (Optional[str]): Cache directory for local modelsbatch_size (int, default: 100): Batch size for processingmax_retries (int, default: 3): Max retries on failureretry_delay (float, default: 1.0): Delay between retries in secondstimeout (float, default: 30.0): Request timeout in secondsmax_tokens_per_minute (int, default: 1,000,000): Rate limit for tokensmax_requests_per_minute (int, default: 3,000): Rate limit for requestsConfiguration for document chunking.
Fields:
default_parent_size (int, default: 1000): Parent chunk size in tokensdefault_child_size (int, default: 200): Child chunk size in tokensdefault_overlap (int, default: 50): Overlap between chunks in tokensmin_chunk_size (int, default: 50): Minimum chunk sizemax_chunk_size (int, default: 2000): Maximum chunk sizemax_chunk_depth (int, default: 3): Maximum hierarchy depthenable_chunk_summaries (bool, default: False): Generate summariessummary_max_tokens (int, default: 120): Max tokens for summariessummary_prompt_template (str): Template for summary generationenable_contextual_retrieval (bool, default: False): Prepend document context to chunks before embedding (Anthropic's approach)context_template (str): Template for contextual retrieval formatchunk_configs (Dict[str, Dict[str, int]]): Document-type specific configsContextual Retrieval Example:
config = LLMemoryConfig()
config.chunking.enable_contextual_retrieval = True
memory = LLMemory(connection_string="...", config=config)
# Chunks are embedded with document context prepended:
# "Document: Q3 Report\nType: report\n\nRevenue increased 15%"
#
# But chunk.content remains original for display:
# "Revenue increased 15%"
await memory.add_document(
owner_id="workspace-1",
id_at_origin="kb",
document_name="Q3 Report",
document_type=DocumentType.REPORT,
content="Revenue increased 15% QoQ...",
chunking_config=config.chunking
)
Example:
config = LLMemoryConfig()
config.chunking.default_parent_size = 800
config.chunking.default_child_size = 200
config.chunking.enable_chunk_summaries = True
Configuration for search operations.
Fields:
default_limit (int, default: 10): Default result limitmax_limit (int, default: 100): Maximum allowed limitdefault_search_type (str, default: "hybrid"): Default search typehnsw_profile (str, default: "balanced"): HNSW index profilerrf_k (int, default: 50): RRF constant for fusionenable_query_expansion (bool, default: False): Enable query expansionmax_query_variants (int, default: 3): Max query variantsquery_expansion_model (Optional[str]): Model for expansioninclude_keyword_variant (bool, default: True): Include keyword variantenable_rerank (bool, default: False): Enable rerankingdefault_rerank_model (Optional[str]): Reranking modelrerank_provider (str, default: "lexical"): Reranker providerrerank_top_k (int, default: 50): Candidates for rerankingrerank_return_k (int, default: 15): Results after rerankingrerank_device (Optional[str]): Device for local rerankersrerank_batch_size (int, default: 16): Batch size for rerankinghnsw_ef_search (int, default: 100): HNSW ef_search parametervector_search_limit (int, default: 100): Internal vector search limittext_search_limit (int, default: 100): Internal text search limitcache_ttl (int, default: 3600): Cache TTL in secondscache_max_size (int, default: 10000): Max cache entriessearch_timeout (float, default: 5.0): Search timeout in secondsmin_score_threshold (float, default: 0.0): Minimum score thresholdExample:
config = LLMemoryConfig()
config.search.enable_query_expansion = True
config.search.enable_rerank = True
config.search.rerank_provider = "openai"
config.search.hnsw_profile = "accurate"
Configuration for database operations.
Fields:
min_pool_size (int, default: 5): Minimum connection pool sizemax_pool_size (int, default: 20): Maximum connection pool sizeconnection_timeout (float, default: 10.0): Connection timeout in secondscommand_timeout (float, default: 30.0): Command timeout in secondsschema_name (str, default: "llmemory"): PostgreSQL schema namedocuments_table (str, default: "documents"): Documents table namechunks_table (str, default: "document_chunks"): Chunks table nameembeddings_queue_table (str, default: "embedding_queue"): Queue table namesearch_history_table (str, default: "search_history"): Search history tableembedding_providers_table (str, default: "embedding_providers"): Providers tablechunk_embeddings_prefix (str, default: "chunk_embeddings_"): Embedding table prefixhnsw_index_name (str, default: "document_chunks_embedding_hnsw"): HNSW index namehnsw_m (int, default: 16): HNSW M parameterhnsw_ef_construction (int, default: 200): HNSW ef_construction parameterExample:
config = LLMemoryConfig()
config.database.schema_name = "my_app_llmemory"
config.database.min_pool_size = 10
config.database.max_pool_size = 50
Configuration for input validation.
Fields:
max_owner_id_length (int, default: 255): Max owner_id lengthmax_id_at_origin_length (int, default: 255): Max id_at_origin lengthmax_document_name_length (int, default: 500): Max document name lengthmax_content_length (int, default: 10,000,000): Max content length (10MB)max_metadata_size (int, default: 65536): Max metadata size (64KB)min_content_length (int, default: 10): Minimum content lengthvalid_owner_id_pattern (str): Regex for valid owner_idvalid_id_at_origin_pattern (str): Regex for valid id_at_originExample:
config = LLMemoryConfig()
config.validation.max_content_length = 20_000_000 # 20MB
config.validation.min_content_length = 50 # Require at least 50 chars
❌ Wrong: Not calling initialize()
memory = LLMemory(connection_string="...")
results = await memory.search(...) # Error: not initialized
✅ Right: Always call initialize()
memory = LLMemory(connection_string="...")
await memory.initialize() # Required!
results = await memory.search(...)
❌ Wrong: Not closing connections
memory = LLMemory(connection_string="...")
await memory.initialize()
# ... use memory ...
# Missing: await memory.close()
✅ Right: Use context manager
async with LLMemory(connection_string="...") as memory:
# ... use memory ...
# Automatically closed
❌ Wrong: Forgetting owner_id filtering
results = await memory.search(
owner_id="workspace-1",
query_text="sensitive data"
)
# Results only from workspace-1 (good!)
# But need to verify owner_id matches current user
✅ Right: Always validate owner_id
current_workspace = get_current_workspace()
results = await memory.search(
owner_id=current_workspace, # Validated owner
query_text="sensitive data"
)
hybrid-search - Vector + BM25 hybrid search patternsmulti-query - Query expansion and multi-query retrievalmulti-tenant - Multi-tenant isolation patterns for SaaSrag - Building complete RAG systems with rerankingMulti-Tenancy:
Always provide owner_id for proper data isolation. llmemory automatically filters all operations by owner.
Connection Pooling:
For production applications with multiple services, use from_db_manager() with a shared connection pool (see pgdbm-shared-pool skill).
Chunking:
Documents are automatically chunked during add_document(). Default strategy is hierarchical chunking which creates parent and child chunks for better retrieval.
Embeddings:
Embeddings are generated automatically unless generate_embeddings=False. For batch operations, consider using background processing.
Search Types:
VECTOR: Best for semantic similarityTEXT: Best for exact keyword matchingHYBRID: Best for most use cases (combines both)