check point

This commit is contained in:
vuongps38770
2025-12-25 18:06:29 +07:00
commit 31de8b0d84
34 changed files with 3209 additions and 0 deletions

44
src/__init__.py Normal file
View File

@@ -0,0 +1,44 @@
"""
src - Game Generator Core Package
"""
from src.core import GameCore
from src.game_registry import (
GameRegistry,
get_registry,
reload_games,
get_active_game_types,
get_active_type_ids,
get_game_by_id,
get_game,
id_to_type,
type_to_id
)
from src.llm_config import ModelConfig, get_llm, get_default_config, create_config
from src.validator import QuoteValidator, quick_validate
__all__ = [
# Core
"GameCore",
# Registry
"GameRegistry",
"get_registry",
"reload_games",
"get_active_game_types",
"get_active_type_ids",
"get_game_by_id",
"get_game",
"id_to_type",
"type_to_id",
# LLM Config
"ModelConfig",
"get_llm",
"get_default_config",
"create_config",
# Validator
"QuoteValidator",
"quick_validate",
]