17 lines
316 B
Python
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"
|