### API KEYS

# Gemini API Key (for prompt generation)
# Get your free key at: https://ai.google.dev/gemini-api/docs/api-key
GEMINI_API_KEY=your_gemini_key_here

# Gemini Model Name (text-output models only)
# Get free tier model information at: https://ai.google.dev/gemini-api/docs/rate-limits#free-tier
GEMINI_MODEL=gemini-2.5-flash

# OpenAI API Key (for DALL-E 3 image generation)
# Get your key at: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_key_here

# Hugging Face API Token (for Stable Diffusion XL)
# Get your token at: https://huggingface.co/settings/tokens
HUGGINGFACE_API_TOKEN=your_huggingface_token_here


### LOGGING CONFIGURATION

# GRPC Verbosity Level
# Controls the verbosity of gRPC (Google Remote Procedure Call) logging
# Options:
#   NONE    - No logging (recommended for production, least verbose)
#   ERROR   - Only errors
#   INFO    - Informational messages
#   DEBUG   - Detailed debug information (most verbose)
# Default: ERROR
GRPC_VERBOSITY=ERROR

# GLOG Minimum Log Level
# Controls Google Logging Library (glog) minimum severity level
# Numeric values:
#   0 - INFO (most verbose, shows all messages)
#   1 - WARNING (shows warnings and errors)
#   2 - ERROR (shows only errors and fatal)
#   3 - FATAL (least verbose, shows only fatal errors)
# Default: 2
GLOG_minloglevel=2

