dograh/api/services/gender/constants.py
Abhishek Kumar 4f2a629340 Initial Commit 🚀 🚀
2025-09-09 14:37:32 +05:30

10 lines
275 B
Python

"""
Hyperparameters and configuration for gender prediction service.
"""
# Confidence threshold for using local model predictions
CONFIDENCE_THRESHOLD = 0.85
# Redis cache configuration
REDIS_CACHE_TTL = 86400 * 30 # 30 days in seconds
REDIS_KEY_PREFIX = "genderservice:"