Spaces:
Sleeping
Sleeping
# PostgreSQL Configuration | |
DB_CONNECTION_MODE=aiven | |
AIVEN_DB_URL=postgresql://username:password@host:port/dbname?sslmode=require | |
# MongoDB Configuration | |
MONGODB_URL=mongodb+srv://username:[email protected]/?retryWrites=true&w=majority | |
DB_NAME=Telegram | |
COLLECTION_NAME=session_chat | |
# Pinecone configuration | |
PINECONE_API_KEY=your-pinecone-api-key | |
PINECONE_INDEX_NAME=your-pinecone-index-name | |
PINECONE_ENVIRONMENT=gcp-starter | |
# Google Gemini API key | |
GOOGLE_API_KEY=your-google-api-key | |
# WebSocket configuration | |
WEBSOCKET_SERVER=localhost | |
WEBSOCKET_PORT=7860 | |
WEBSOCKET_PATH=/notify | |
# Application settings | |
ENVIRONMENT=production | |
DEBUG=false | |
PORT=7860 | |
# Cache Configuration | |
CACHE_TTL_SECONDS=300 | |
CACHE_CLEANUP_INTERVAL=60 | |
CACHE_MAX_SIZE=1000 | |
HISTORY_QUEUE_SIZE=10 | |
HISTORY_CACHE_TTL=3600 |