"""Configuration for the Vector Memory Server.""" import os class Config: DATA_DIR = os.environ.get( "MEMORY_SERVER_DATA", "/home/admin/agent-dir/vector_memory" ) EMBEDDING_MODEL = os.environ.get( "MEMORY_SERVER_MODEL", "all-MiniLM-L6-v2" ) DEFAULT_TOP_N = int(os.environ.get("MEMORY_SERVER_TOP_N", "5")) HOST = os.environ.get("MEMORY_SERVER_HOST", "127.0.0.1") PORT = int(os.environ.get("MEMORY_SERVER_PORT", "8000"))