.env.example•1.79 kB
# =============================================================================
# LoreKeeper MCP Configuration
# =============================================================================
# All environment variables use the LOREKEEPER_ prefix.
# Copy this file to .env and customize as needed.
# =============================================================================
# Cache Configuration
# =============================================================================
# Path to Milvus Lite database file
# Supports ~ for home directory expansion
LOREKEEPER_MILVUS_DB_PATH=~/.lorekeeper/milvus.db
# =============================================================================
# Embedding Model Configuration
# =============================================================================
# Sentence-transformers model for generating embeddings
# Default: all-MiniLM-L6-v2 (384 dimensions, ~80MB download)
# The model is downloaded automatically on first use
#
# Alternative lightweight models:
# - paraphrase-MiniLM-L3-v2 (smaller, faster, less accurate)
# - all-mpnet-base-v2 (larger, slower, more accurate)
#
LOREKEEPER_EMBEDDING_MODEL=all-MiniLM-L6-v2
# =============================================================================
# Logging Configuration
# =============================================================================
# Log level: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOREKEEPER_LOG_LEVEL=INFO
# Debug mode - enables verbose logging and other debugging features
LOREKEEPER_DEBUG=false
# =============================================================================
# API Endpoints
# =============================================================================
# Base URL for the Open5e D&D 5e API
LOREKEEPER_OPEN5E_BASE_URL=https://api.open5e.com