File size: 869 Bytes
23804b3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# 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
|