Initial commit: igny8 project

This commit is contained in:
igny8
2025-11-09 10:27:02 +00:00
commit 60b8188111
27265 changed files with 4360521 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
"""
Django app configuration for AI framework
"""
from django.apps import AppConfig
class AIConfig(AppConfig):
"""App configuration for AI framework"""
default_auto_field = 'django.db.models.BigAutoField'
name = 'igny8_core.ai'
verbose_name = 'AI Framework'
def ready(self):
"""Import admin to register models"""
try:
import igny8_core.ai.admin # noqa
except ImportError:
pass
# Don't register functions here - they will be loaded lazily when needed