GeoAI-Backend / core /__init__.py
Rafs-an09002's picture
sync: backend from GitHub Actions
2b7062a verified
raw
history blame contribute delete
328 Bytes
"""
GeoAI Core Module
Advanced AI Engine for Geography Game
"""
# CRITICAL FIX: Removed ALL relative imports from __init__.py to prevent NameError/ImportError
# and cyclic dependency issues in Gunicorn/Render.
__all__ = [
'InferenceEngine',
'QuestionSelector',
'ProbabilityManager',
'ConfidenceCalculator'
]