AeThex-Engine-Core/engine/modules/aethex_ai/config.py
2026-02-24 01:55:30 -07:00

17 lines
316 B
Python

def can_build(env, platform):
# AI module can be built on all platforms
return True
def configure(env):
pass
def get_doc_classes():
return [
"AIAssistant",
"AICodeCompletion",
"AIAPIClient",
"AeThexAIIntegration",
]
def get_doc_path():
return "doc_classes"