Spaces:
Configuration error
Configuration error
File size: 532 Bytes
d6d292e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # MemoryBot Environment Configuration
# Copy to .env and fill in your values
# Security
SECRET_KEY=change-this-to-a-random-secret-key
ENCRYPTION_KEY=change-this-to-a-random-32-char-key
# Database (SQLite default, use PostgreSQL for production)
DATABASE_URL=sqlite:///./memorybot.db
# AI Configuration (OpenRouter or OpenAI)
OPENAI_API_KEY=your-api-key-here
OPENAI_BASE_URL=https://openrouter.ai/api/v1
EMBEDDING_MODEL=text-embedding-3-small
CHAT_MODEL=openai/gpt-4o-mini
# Upload Settings
UPLOAD_DIR=uploads
MAX_FILE_SIZE_MB=50
|