AumCoreAI commited on
Commit
bb11f48
·
verified ·
1 Parent(s): f0e62da

Update modules/prompt_manager.py

Browse files
Files changed (1) hide show
  1. modules/prompt_manager.py +16 -0
modules/prompt_manager.py CHANGED
@@ -413,5 +413,21 @@ def register_module(app, client, username):
413
  "version": __version__,
414
  "description": "Advanced prompt management system"
415
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
416
  __version__ = "4.0.0"
417
  __author__ = "AumCore AI"
 
413
  "version": __version__,
414
  "description": "Advanced prompt management system"
415
  }
416
+ # ============================================
417
+ # MODULE REGISTRATION FOR APPPY
418
+ # ============================================
419
+
420
+ def register_module(app, client, username):
421
+ """
422
+ Required function for ModuleManager to load this module
423
+ """
424
+ print("✅ Code Intelligence module registered with FastAPI")
425
+
426
+ return {
427
+ "module": "code_intelligence",
428
+ "status": "registered",
429
+ "version": __version__,
430
+ "description": "Advanced code analysis and intelligence system"
431
+ }
432
  __version__ = "4.0.0"
433
  __author__ = "AumCore AI"