# Cyber-LLM Environment Configuration Template # Copy this file to .env and fill in your actual values # Google Genkit Configuration GEMINI_API_KEY=your_gemini_api_key_here GENKIT_ENV=dev # Hugging Face Configuration HF_TOKEN=your_hugging_face_token_here # OpenAI Configuration (if used) OPENAI_API_KEY=your_openai_api_key_here # Azure Configuration (if used) AZURE_OPENAI_API_KEY=your_azure_openai_api_key_here AZURE_OPENAI_ENDPOINT=your_azure_endpoint_here # Database Configuration DATABASE_URL=postgresql://user:password@localhost:5432/cyber_llm # Security Configuration SECRET_KEY=your_secret_key_here JWT_SECRET=your_jwt_secret_here # Monitoring Configuration PROMETHEUS_PORT=9090 GRAFANA_PORT=3000 # Application Configuration PYTHONPATH=/home/o1/Desktop/cyber_llm/src DEBUG=false LOG_LEVEL=INFO # Development Configuration DEV_MODE=false TEST_MODE=false