# SACL MCP Server Configuration
# Required: OpenAI API Key for LLM operations
OPENAI_API_KEY=your_openai_api_key_here
# LLM Configuration
SACL_LLM_MODEL=gpt-4 # Options: gpt-4, gpt-4-turbo, gpt-3.5-turbo
SACL_EMBEDDING_MODEL=text-embedding-3-small # Options: text-embedding-3-small, text-embedding-3-large, text-embedding-ada-002
# SACL Framework Settings
SACL_BIAS_THRESHOLD=0.5 # 0.0 (permissive) to 1.0 (strict)
SACL_MAX_RESULTS=10 # Maximum search results to return
SACL_CACHE_ENABLED=true # Enable embedding cache for performance
# Neo4j Database Configuration
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=change_this_secure_password # Set your own secure password for Neo4j
# Optional: Logging Level
LOG_LEVEL=info