gitextract_b3_afje9/ ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── alembic/ │ ├── README │ ├── env.py │ └── script.py.mako ├── alembic.ini ├── api/ │ ├── __init__.py │ ├── ai.py │ ├── auth.py │ ├── games.py │ ├── llm.py │ ├── llm_service.py │ ├── llm_service_utils.py │ ├── routers/ │ │ └── ai_engine.py │ ├── tasks.py │ ├── test_llm.py │ └── users.py ├── core/ │ ├── __init__.py │ ├── ai_engine/ │ │ ├── __init__.py │ │ ├── ai_processing.py │ │ ├── ai_utilities.py │ │ ├── base.py │ │ ├── cognitive.py │ │ ├── cognitive_functions.py │ │ ├── collective.py │ │ ├── collective_intelligence.py │ │ ├── llm_utils.py │ │ ├── prediction.py │ │ ├── quantum.py │ │ ├── utils.py │ │ └── xai.py │ ├── auth.py │ ├── auth_utils.py │ ├── celery_app.py │ ├── database.py │ ├── llm_processing.py │ ├── llm_utilities.py │ ├── logging.py │ └── tasks.py ├── crud/ │ ├── __init__.py │ ├── ai_model.py │ ├── cognitive_profile.py │ ├── game_definition.py │ ├── game_instance.py │ └── user.py ├── docs/ │ ├── ai_engine.md │ ├── ai_engine_integration_guide.md │ ├── ai_engine_processing.md │ ├── ai_engine_utils.md │ ├── api_overview.md │ ├── api_reference.md │ ├── game_management.md │ ├── llm_api_documentation.md │ ├── llm_integration_guide.md │ ├── llm_service.md │ ├── roadmap.md │ ├── usage_guide.md │ ├── user_management_guide.md │ └── user_profile_management.md ├── llm_service/ │ ├── README.md │ ├── __init__.py │ ├── architecture.md │ ├── configuration.md │ ├── crud.py │ ├── faq.md │ ├── models.py │ ├── schemas.py │ ├── service.py │ ├── test_ai_engine_service.py │ ├── test_llm_service.py │ ├── test_llm_service_integration.py │ ├── test_service.py │ └── usage_examples.md ├── main.py ├── models/ │ ├── __init__.py │ ├── ai_model.py │ ├── cognitive_profile.py │ ├── game_definition.py │ ├── game_instance.py │ └── user.py ├── pyproject.toml ├── schemas/ │ ├── __init__.py │ ├── ai_engine.py │ ├── ai_model.py │ ├── cognitive_profile.py │ ├── game_definition.py │ ├── game_instance.py │ ├── llm_request.py │ ├── llm_response.py │ ├── task.py │ ├── user.py │ └── user_profile.py └── tests/ ├── integration/ │ ├── test_ai_engine.py │ ├── test_ai_engine_integration.py │ ├── test_auth.py │ ├── test_auth_integration.py │ ├── test_game_integration.py │ ├── test_game_management_integration.py │ ├── test_games.py │ ├── test_llm.py │ ├── test_llm_integration.py │ ├── test_llm_service.py │ ├── test_llm_service_integration.py │ ├── test_user_management.py │ └── test_user_management_integration.py └── unit/ ├── test_ai_engine.py ├── test_ai_engine_model.py ├── test_ai_engine_service.py ├── test_ai_processing.py ├── test_auth.py ├── test_cognitive_profile.py ├── test_game_definition.py ├── test_game_instance.py ├── test_game_management.py ├── test_game_model.py ├── test_games.py ├── test_llm.py ├── test_llm_processing.py ├── test_llm_response.py ├── test_llm_schema.py ├── test_llm_service.py ├── test_llm_service_integration.py ├── test_user_management.py ├── test_user_model.py └── test_user_profile.py