codex-memory 0.1.26

An advanced hierarchical memory system for AI agents with MCP integration
Documentation
# Agentic Memory System Configuration

# Database Configuration
DATABASE_URL=postgresql://username:password@localhost:5432/database_name
# Alternative: Use individual components
# DB_HOST=localhost
# DB_USER=username
# DB_PASSWORD=password
# DB_NAME=database_name
# DB_PORT=5432

# Embedding Configuration
EMBEDDING_PROVIDER=ollama
EMBEDDING_MODEL=nomic-embed-text
EMBEDDING_BASE_URL=http://localhost:11434
EMBEDDING_TIMEOUT_SECONDS=60

# Optional: OpenAI API Key (only if using OpenAI provider)
# OPENAI_API_KEY=sk-your-api-key-here

# Server Configuration
HTTP_PORT=8080
MCP_PORT=8081
LOG_LEVEL=info

# Auto-migrate database on startup
AUTO_MIGRATE=true
MIGRATION_DIR=./migration/migrations

# Memory Tier Configuration
WORKING_TIER_LIMIT=1000
WARM_TIER_LIMIT=10000
WORKING_TO_WARM_DAYS=7
WARM_TO_COLD_DAYS=30
IMPORTANCE_THRESHOLD=0.7

# Operational Configuration
MAX_DB_CONNECTIONS=10
REQUEST_TIMEOUT_SECONDS=30
ENABLE_METRICS=true