Forkei's picture
Upload folder using huggingface_hub
52a4f3c verified
raw
history blame contribute delete
308 Bytes
"""
Chess game logic and analysis module.
Provides complete chess functionality for the Metropolis Chess Club.
"""
from chess_engine.game import ChessGame
from chess_engine.analysis import PositionAnalysis
from chess_engine.ai import choose_move
__all__ = ["ChessGame", "PositionAnalysis", "choose_move"]