ai-accelerator 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. ai_accelerator-0.1.0/AI_Accelerator/__init__.py +3 -0
  2. ai_accelerator-0.1.0/AI_Accelerator/asgi.py +16 -0
  3. ai_accelerator-0.1.0/AI_Accelerator/celery.py +11 -0
  4. ai_accelerator-0.1.0/AI_Accelerator/settings.py +203 -0
  5. ai_accelerator-0.1.0/AI_Accelerator/urls.py +33 -0
  6. ai_accelerator-0.1.0/AI_Accelerator/wsgi.py +16 -0
  7. ai_accelerator-0.1.0/CHANGELOG.md +57 -0
  8. ai_accelerator-0.1.0/LICENSE +200 -0
  9. ai_accelerator-0.1.0/MANIFEST.in +11 -0
  10. ai_accelerator-0.1.0/PKG-INFO +1079 -0
  11. ai_accelerator-0.1.0/README.md +835 -0
  12. ai_accelerator-0.1.0/ai_accelerator.egg-info/PKG-INFO +1079 -0
  13. ai_accelerator-0.1.0/ai_accelerator.egg-info/SOURCES.txt +95 -0
  14. ai_accelerator-0.1.0/ai_accelerator.egg-info/dependency_links.txt +1 -0
  15. ai_accelerator-0.1.0/ai_accelerator.egg-info/entry_points.txt +2 -0
  16. ai_accelerator-0.1.0/ai_accelerator.egg-info/requires.txt +20 -0
  17. ai_accelerator-0.1.0/ai_accelerator.egg-info/top_level.txt +2 -0
  18. ai_accelerator-0.1.0/aiac/__init__.py +0 -0
  19. ai_accelerator-0.1.0/aiac/admin.py +3 -0
  20. ai_accelerator-0.1.0/aiac/aiac_cli.py +31 -0
  21. ai_accelerator-0.1.0/aiac/apps.py +6 -0
  22. ai_accelerator-0.1.0/aiac/client.py +29 -0
  23. ai_accelerator-0.1.0/aiac/config.py +26 -0
  24. ai_accelerator-0.1.0/aiac/console.py +15 -0
  25. ai_accelerator-0.1.0/aiac/deployment/commands.py +236 -0
  26. ai_accelerator-0.1.0/aiac/governance/commands.py +150 -0
  27. ai_accelerator-0.1.0/aiac/main.py +8 -0
  28. ai_accelerator-0.1.0/aiac/migrations/__init__.py +0 -0
  29. ai_accelerator-0.1.0/aiac/models.py +3 -0
  30. ai_accelerator-0.1.0/aiac/monitoring/commands.py +141 -0
  31. ai_accelerator-0.1.0/aiac/requirments.txt +4 -0
  32. ai_accelerator-0.1.0/aiac/tests.py +3 -0
  33. ai_accelerator-0.1.0/aiac/urls.py +4 -0
  34. ai_accelerator-0.1.0/aiac/user/auth.py +52 -0
  35. ai_accelerator-0.1.0/aiac/views.py +3 -0
  36. ai_accelerator-0.1.0/deployment/Tasks.py +101 -0
  37. ai_accelerator-0.1.0/deployment/__init__.py +0 -0
  38. ai_accelerator-0.1.0/deployment/admin.py +3 -0
  39. ai_accelerator-0.1.0/deployment/apps.py +6 -0
  40. ai_accelerator-0.1.0/deployment/fast_api.py +138 -0
  41. ai_accelerator-0.1.0/deployment/migrations/0001_initial.py +110 -0
  42. ai_accelerator-0.1.0/deployment/migrations/0002_deployment_docker_container_id_deployment_port_and_more.py +61 -0
  43. ai_accelerator-0.1.0/deployment/migrations/0003_alter_projet_owner.py +23 -0
  44. ai_accelerator-0.1.0/deployment/migrations/0004_auto_20260202_1720.py +23 -0
  45. ai_accelerator-0.1.0/deployment/migrations/__init__.py +0 -0
  46. ai_accelerator-0.1.0/deployment/models.py +53 -0
  47. ai_accelerator-0.1.0/deployment/serializers.py +57 -0
  48. ai_accelerator-0.1.0/deployment/tests.py +3 -0
  49. ai_accelerator-0.1.0/deployment/urls.py +31 -0
  50. ai_accelerator-0.1.0/deployment/views.py +129 -0
  51. ai_accelerator-0.1.0/examples/quick_start.py +128 -0
  52. ai_accelerator-0.1.0/governance/__init__.py +0 -0
  53. ai_accelerator-0.1.0/governance/admin.py +3 -0
  54. ai_accelerator-0.1.0/governance/alert.py +24 -0
  55. ai_accelerator-0.1.0/governance/apps.py +6 -0
  56. ai_accelerator-0.1.0/governance/engine.py +8 -0
  57. ai_accelerator-0.1.0/governance/migrations/0001_initial.py +227 -0
  58. ai_accelerator-0.1.0/governance/migrations/__init__.py +0 -0
  59. ai_accelerator-0.1.0/governance/models.py +112 -0
  60. ai_accelerator-0.1.0/governance/permission.py +11 -0
  61. ai_accelerator-0.1.0/governance/serializers.py +49 -0
  62. ai_accelerator-0.1.0/governance/task.py +22 -0
  63. ai_accelerator-0.1.0/governance/tests.py +3 -0
  64. ai_accelerator-0.1.0/governance/urls.py +16 -0
  65. ai_accelerator-0.1.0/governance/utils.py +14 -0
  66. ai_accelerator-0.1.0/governance/views.py +47 -0
  67. ai_accelerator-0.1.0/monitoring/Tasks.py +200 -0
  68. ai_accelerator-0.1.0/monitoring/__init__.py +0 -0
  69. ai_accelerator-0.1.0/monitoring/admin.py +3 -0
  70. ai_accelerator-0.1.0/monitoring/apps.py +6 -0
  71. ai_accelerator-0.1.0/monitoring/data.py +16 -0
  72. ai_accelerator-0.1.0/monitoring/drift_utils.py +41 -0
  73. ai_accelerator-0.1.0/monitoring/migrations/0001_initial.py +202 -0
  74. ai_accelerator-0.1.0/monitoring/migrations/0002_datadrift_sample_count_and_more.py +48 -0
  75. ai_accelerator-0.1.0/monitoring/migrations/__init__.py +0 -0
  76. ai_accelerator-0.1.0/monitoring/models.py +89 -0
  77. ai_accelerator-0.1.0/monitoring/monitor_agent.py +75 -0
  78. ai_accelerator-0.1.0/monitoring/serializers.py +85 -0
  79. ai_accelerator-0.1.0/monitoring/tests.py +3 -0
  80. ai_accelerator-0.1.0/monitoring/urls.py +20 -0
  81. ai_accelerator-0.1.0/monitoring/views.py +151 -0
  82. ai_accelerator-0.1.0/pyproject.toml +64 -0
  83. ai_accelerator-0.1.0/requirements.txt +17 -0
  84. ai_accelerator-0.1.0/setup.cfg +4 -0
  85. ai_accelerator-0.1.0/users/__init__.py +0 -0
  86. ai_accelerator-0.1.0/users/admin.py +3 -0
  87. ai_accelerator-0.1.0/users/apps.py +6 -0
  88. ai_accelerator-0.1.0/users/migrations/0001_initial.py +88 -0
  89. ai_accelerator-0.1.0/users/migrations/0002_user_first_name_user_last_name.py +23 -0
  90. ai_accelerator-0.1.0/users/migrations/__init__.py +0 -0
  91. ai_accelerator-0.1.0/users/models.py +61 -0
  92. ai_accelerator-0.1.0/users/serializers.py +41 -0
  93. ai_accelerator-0.1.0/users/tests.py +3 -0
  94. ai_accelerator-0.1.0/users/tokens.py +9 -0
  95. ai_accelerator-0.1.0/users/urls.py +13 -0
  96. ai_accelerator-0.1.0/users/utils.py +17 -0
  97. ai_accelerator-0.1.0/users/views.py +73 -0
@@ -0,0 +1,3 @@
1
+ from .celery import app as celery_app
2
+
3
+ __all__ = ('celery_app',)
@@ -0,0 +1,16 @@
1
+ """
2
+ ASGI config for AI_Accelerator project.
3
+
4
+ It exposes the ASGI callable as a module-level variable named ``application``.
5
+
6
+ For more information on this file, see
7
+ https://docs.djangoproject.com/en/5.2/howto/deployment/asgi/
8
+ """
9
+
10
+ import os
11
+
12
+ from django.core.asgi import get_asgi_application
13
+
14
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'AI_Accelerator.settings')
15
+
16
+ application = get_asgi_application()
@@ -0,0 +1,11 @@
1
+ from celery import Celery
2
+ import os
3
+
4
+ os.environ.setdefault("DJANGO_SETTINGS_MODULE","AI_Accelerator.settings")
5
+
6
+ app = Celery('AI_Accelerator')
7
+
8
+ app.config_from_object('django.confg:settings',namespace='CELERY')
9
+
10
+ app.autodiscover_tasks()
11
+
@@ -0,0 +1,203 @@
1
+ """
2
+ Django settings for AI_Accelerator project.
3
+
4
+ Generated by 'django-admin startproject' using Django 5.2.7.
5
+
6
+ For more information on this file, see
7
+ https://docs.djangoproject.com/en/5.2/topics/settings/
8
+
9
+ For the full list of settings and their values, see
10
+ https://docs.djangoproject.com/en/5.2/ref/settings/
11
+ """
12
+
13
+ from pathlib import Path
14
+
15
+ # Build paths inside the project like this: BASE_DIR / 'subdir'.
16
+ BASE_DIR = Path(__file__).resolve().parent.parent
17
+
18
+
19
+ # Quick-start development settings - unsuitable for production
20
+ # See https://docs.djangoproject.com/en/5.2/howto/deployment/checklist/
21
+
22
+ # SECURITY WARNING: keep the secret key used in production secret!
23
+ SECRET_KEY = 'django-insecure-31zkjc965bz@we($(*xw5f6)w!-%w-v#$(5-x8v)wa^k8%k(07'
24
+
25
+ # SECURITY WARNING: don't run with debug turned on in production!
26
+ DEBUG = True
27
+
28
+ ALLOWED_HOSTS = []
29
+
30
+
31
+ # Application definition
32
+
33
+ INSTALLED_APPS = [
34
+ 'django.contrib.admin',
35
+ 'django.contrib.auth',
36
+ 'django.contrib.contenttypes',
37
+ 'django.contrib.sessions',
38
+ 'django.contrib.messages',
39
+ 'django.contrib.staticfiles',
40
+ 'users',
41
+ 'deployment',
42
+
43
+ 'monitoring',
44
+ 'governance',
45
+ 'aiac',
46
+ 'rest_framework',
47
+ "rest_framework_simplejwt",
48
+ 'rest_framework_simplejwt.token_blacklist',
49
+ 'corsheaders',
50
+ 'drf_spectacular',
51
+ ]
52
+
53
+ # Custom user model
54
+ AUTH_USER_MODEL = 'users.User'
55
+
56
+ MIDDLEWARE = [
57
+ 'django.middleware.security.SecurityMiddleware',
58
+ 'django.contrib.sessions.middleware.SessionMiddleware',
59
+ 'corsheaders.middleware.CorsMiddleware',
60
+ 'django.middleware.common.CommonMiddleware',
61
+ 'django.middleware.csrf.CsrfViewMiddleware',
62
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
63
+ 'django.contrib.messages.middleware.MessageMiddleware',
64
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
65
+ ]
66
+
67
+ ROOT_URLCONF = 'AI_Accelerator.urls'
68
+
69
+ TEMPLATES = [
70
+ {
71
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
72
+ 'DIRS': [],
73
+ 'APP_DIRS': True,
74
+ 'OPTIONS': {
75
+ 'context_processors': [
76
+ 'django.template.context_processors.request',
77
+ 'django.contrib.auth.context_processors.auth',
78
+ 'django.contrib.messages.context_processors.messages',
79
+ ],
80
+ },
81
+ },
82
+ ]
83
+
84
+ WSGI_APPLICATION = 'AI_Accelerator.wsgi.application'
85
+
86
+
87
+ # Database
88
+ # https://docs.djangoproject.com/en/5.2/ref/settings/#databases
89
+ '''
90
+ DATABASES = {
91
+ 'default': {
92
+ 'ENGINE': 'django.db.backends.sqlite3',
93
+ 'NAME': BASE_DIR / 'db.sqlite3',
94
+ }
95
+ }
96
+ '''
97
+
98
+ # Password validation
99
+ # https://docs.djangoproject.com/en/5.2/ref/settings/#auth-password-validators
100
+
101
+ AUTH_PASSWORD_VALIDATORS = [
102
+ {
103
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
104
+ },
105
+ {
106
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
107
+ },
108
+ {
109
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
110
+ },
111
+ {
112
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
113
+ },
114
+ ]
115
+
116
+
117
+ # Internationalization
118
+ # https://docs.djangoproject.com/en/5.2/topics/i18n/
119
+
120
+ LANGUAGE_CODE = 'en-us'
121
+
122
+ TIME_ZONE = 'UTC'
123
+
124
+ USE_I18N = True
125
+
126
+ USE_TZ = True
127
+
128
+
129
+ # Static files (CSS, JavaScript, Images)
130
+ # https://docs.djangoproject.com/en/5.2/howto/static-files/
131
+
132
+ STATIC_URL = 'static/'
133
+ STATIC_ROOT = BASE_DIR / 'staticfiles'
134
+ MEDIA_URL = '/media/'
135
+ MEDIA_ROOT = BASE_DIR / 'media'
136
+
137
+ # Default primary key field type
138
+ # https://docs.djangoproject.com/en/5.2/ref/settings/#default-auto-field
139
+
140
+ DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
141
+ DJANGO_ALLOW_ALL_ORIGINS = True
142
+ AYTH_USER_MODEL = 'users.User'
143
+ import os
144
+ DATABASES = {
145
+ 'default': {
146
+ 'ENGINE': 'django.db.backends.postgresql',
147
+ 'NAME' : os.getenv('DB_Name'),
148
+ 'USER' : os.getenv('Username'),
149
+ 'PASSWORD' : os.getenv('Password'),
150
+ 'HOST' : os.getenv('Host'),
151
+ 'PORT' : os.getenv('Port'),
152
+ }
153
+ }
154
+
155
+ REST_FRAMEWORK ={
156
+ 'DEFAULT_AUTHENTICATION_CLASSES':(
157
+ 'rest_framework_simplejwt.authentication.JWTAuthentication',
158
+ 'rest_framework.authentication.SessionAuthentication',
159
+ ),
160
+ 'DEFAULT_SCHEMA_CLASS': 'drf_spectacular.openapi.AutoSchema',
161
+
162
+ }
163
+ SPECTACULAR_SETTINGS = {
164
+ 'TITLE': 'AI_Accelerator',
165
+ 'DESCRIPTION': 'AI Accelerator is a SaaS platform designed to help small and medium-sized enterprises (SMEs) accelerate the adoption of Artificial Intelligence by simplifying the process of deploying, monitoring, and managing AI models. The platform bridges the gap between AI experimentation and production, enabling companies to leverage AI effectively without requiring large ML/DevOps teams.',
166
+ 'VERSION': '1.0.0',
167
+ 'SERVE_INCLUDE_SCHEMA': False,
168
+
169
+ }
170
+
171
+ from decouple import config
172
+
173
+ EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
174
+ EMAIL_HOST = config('EMAIL_HOST')
175
+ EMAIL_PORT = config('EMAIL_PORT', cast=int)
176
+ EMAIL_USE_TLS = config('EMAIL_USE_TLS', cast=bool)
177
+ EMAIL_HOST_USER = config('EMAIL_HOST_USER')
178
+ EMAIL_HOST_PASSWORD = config('EMAIL_HOST_PASSWORD')
179
+ DEFAULT_FROM_EMAIL = EMAIL_HOST_USER
180
+
181
+ from datetime import timedelta
182
+
183
+ SIMPLE_JWT = {
184
+ 'REFRESH_TOKEN_LIFETIME': timedelta(days=1),
185
+ 'ACCESS_TOKEN_LIFETIME': timedelta(minutes=30),
186
+ 'ROTATE_REFRESH_TOKENS': True,
187
+ 'BLACKLIST_AFTER_ROTATION': True,
188
+ }
189
+
190
+ CELERY_BROKER_URL = "redis://http:localhost:6379/0"
191
+ CELERY_RESULT_BACKEND = "redis://http:localhost:6379/0"
192
+
193
+
194
+
195
+ CACHES = {
196
+ "default": {
197
+ "BACKEND": "django_redis.cache.RedisCache",
198
+ "LOCATION": "redis://127.0.0.1:6379/1",
199
+ "OPTIONS": {
200
+ "CLIENT_CLASS": "django_redis.client.DefaultClient",
201
+ }
202
+ }
203
+ }
@@ -0,0 +1,33 @@
1
+ """
2
+ URL configuration for AI_Accelerator project.
3
+
4
+ The `urlpatterns` list routes URLs to views. For more information please see:
5
+ https://docs.djangoproject.com/en/5.2/topics/http/urls/
6
+ Examples:
7
+ Function views
8
+ 1. Add an import: from my_app import views
9
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
10
+ Class-based views
11
+ 1. Add an import: from other_app.views import Home
12
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
13
+ Including another URLconf
14
+ 1. Import the include() function: from django.urls import include, path
15
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
16
+ """
17
+ from django.contrib import admin
18
+ from django.urls import path,include
19
+ from django.conf import settings
20
+ from django.conf.urls.static import static
21
+
22
+
23
+ urlpatterns = [
24
+ path('admin/', admin.site.urls),
25
+ path('api/users/', include('users.urls')),
26
+ path('api/deployment/', include('deployment.urls')),
27
+ path('api/aiac/', include('aiac.urls')),
28
+ path('api/monitoring/', include('monitoring.urls')),
29
+ path('api/governance/', include('governance.urls')),
30
+
31
+ ]
32
+
33
+ urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
@@ -0,0 +1,16 @@
1
+ """
2
+ WSGI config for AI_Accelerator project.
3
+
4
+ It exposes the WSGI callable as a module-level variable named ``application``.
5
+
6
+ For more information on this file, see
7
+ https://docs.djangoproject.com/en/5.2/howto/deployment/wsgi/
8
+ """
9
+
10
+ import os
11
+
12
+ from django.core.wsgi import get_wsgi_application
13
+
14
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'AI_Accelerator.settings')
15
+
16
+ application = get_wsgi_application()
@@ -0,0 +1,57 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ### Added
11
+ - Initial release of AI Accelerator platform
12
+ - Django REST API with JWT authentication
13
+ - DRF Spectacular API documentation
14
+ - AIAC command-line interface
15
+ - Model deployment with Docker integration
16
+ - Monitoring and drift detection
17
+ - Governance and policy management
18
+ - Comprehensive documentation suite
19
+
20
+ ### Features
21
+ - Project and model version management
22
+ - Automated model deployment as FastAPI services
23
+ - Real-time performance monitoring
24
+ - Data drift detection with multiple algorithms
25
+ - Role-based access control
26
+ - Policy enforcement and compliance tracking
27
+ - Rich CLI with interactive prompts
28
+
29
+ ## [0.1.0] - 2026-02-02
30
+
31
+ ### Added
32
+ - Core Django application structure
33
+ - User authentication system
34
+ - Basic CRUD operations for projects and models
35
+ - Initial API endpoints
36
+ - Database models and relationships
37
+ - Basic CLI commands
38
+ - Development environment setup
39
+
40
+ ### Technical
41
+ - Django 5.2.8 with Django REST Framework
42
+ - PostgreSQL/SQLite database support
43
+ - Redis for caching and Celery
44
+ - Docker integration for model deployment
45
+ - JWT authentication
46
+ - OpenAPI schema generation
47
+
48
+ ---
49
+
50
+ ## Types of Changes
51
+
52
+ - `Added` for new features
53
+ - `Changed` for changes in existing functionality
54
+ - `Deprecated` for soon-to-be removed features
55
+ - `Removed` for now removed features
56
+ - `Fixed` for any bug fixes
57
+ - `Security` in case of vulnerabilities
@@ -0,0 +1,200 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity granting the License.
13
+
14
+ "Legal Entity" shall mean the union of the acting entity and all
15
+ other entities that control, are controlled by, or are under common
16
+ control with that entity. For the purposes of this definition,
17
+ "control" means (i) the power, direct or indirect, to cause the
18
+ direction or management of such entity, whether by contract or
19
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
20
+ outstanding shares, or (iii) beneficial ownership of such entity.
21
+
22
+ "You" (or "Your") shall mean an individual or Legal Entity
23
+ exercising permissions granted by this License.
24
+
25
+ "Source" form shall mean the preferred form for making modifications,
26
+ including but not limited to software source code, documentation
27
+ source, and configuration files.
28
+
29
+ "Object" form shall mean any form resulting from mechanical
30
+ transformation or translation of a Source form, including but
31
+ not limited to compiled object code, generated documentation,
32
+ and conversions to other media types.
33
+
34
+ "Work" shall mean the work of authorship, whether in Source or
35
+ Object form, made available under the License, as indicated by a
36
+ copyright notice that is included in or attached to the work
37
+ (an example is provided in the Appendix below).
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based upon (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship. For the purposes
43
+ of this License, Derivative Works shall not include works that remain
44
+ separable from, or merely link (or bind by name) to the interfaces of,
45
+ the Work and derivative works thereof.
46
+
47
+ "Contribution" shall mean any work of authorship, including
48
+ the original version of the Work and any modifications or additions
49
+ to that Work or Derivative Works thereof, that is intentionally
50
+ submitted to Licensor for inclusion in the Work by the copyright owner
51
+ or by an individual or Legal Entity authorized to submit on behalf of
52
+ the copyright owner. For the purposes of this definition, "submitted"
53
+ means any form of electronic, verbal, or written communication sent
54
+ to the Licensor or its representatives, including but not limited to
55
+ communication on electronic mailing lists, source code control systems,
56
+ and issue tracking systems that are managed by, or on behalf of, the
57
+ Licensor for the purpose of discussing and improving the Work, but
58
+ excluding communication that is conspicuously marked or otherwise
59
+ designated in writing by the copyright owner as "Not a Contribution."
60
+
61
+ "Contributor" shall mean Licensor and any individual or Legal Entity
62
+ on behalf of whom a Contribution has been received by Licensor and
63
+ subsequently incorporated within the Work.
64
+
65
+ 2. Grant of Copyright License. Subject to the terms and conditions of
66
+ this License, each Contributor hereby grants to You a perpetual,
67
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
68
+ copyright license to use, reproduce, prepare Derivative Works of,
69
+ publicly display, publicly perform, sublicense, and distribute the
70
+ Work and such Derivative Works in Source or Object form.
71
+
72
+ 3. Grant of Patent License. Subject to the terms and conditions of
73
+ this License, each Contributor hereby grants to You a perpetual,
74
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
75
+ (except as stated in this section) patent license to make, have made,
76
+ use, offer to sell, sell, import, and otherwise transfer the Work,
77
+ where such license applies only to those patent claims licensable
78
+ by such Contributor that are necessarily infringed by their
79
+ Contribution(s) alone or by combination of their Contribution(s)
80
+ with the Work to which such Contribution(s) was submitted. If You
81
+ institute patent litigation against any entity (including a
82
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
83
+ or a Contribution incorporated within the Work constitutes direct
84
+ or contributory patent infringement, then any patent licenses
85
+ granted to You under this License for that Work shall terminate
86
+ as of the date such litigation is filed.
87
+
88
+ 4. Redistribution. You may reproduce and distribute copies of the
89
+ Work or Derivative Works thereof in any medium, with or without
90
+ modifications, and in Source or Object form, provided that You
91
+ meet the following conditions:
92
+
93
+ (a) You must give any other recipients of the Work or
94
+ Derivative Works a copy of this License; and
95
+
96
+ (b) You must cause any modified files to carry prominent notices
97
+ stating that You changed the files; and
98
+
99
+ (c) You must retain, in the Source form of any Derivative Works
100
+ that You distribute, all copyright, trademark, patent,
101
+ attribution and other notices from the Source form of the Work,
102
+ excluding those notices that do not pertain to any part of
103
+ the Derivative Works; and
104
+
105
+ (d) If the Work includes a "NOTICE" file as part of its
106
+ distribution, then any Derivative Works that You distribute must
107
+ include a readable copy of the attribution notices contained
108
+ within such NOTICE file, excluding those notices that do not
109
+ pertain to any part of the Derivative Works, in at least one
110
+ of the following places: within a NOTICE file distributed
111
+ as part of the Derivative Works; within the Source form or
112
+ documentation, if provided along with the Derivative Works; or,
113
+ within a display generated by the Derivative Works, if and
114
+ wherever such third-party notices normally appear. The contents
115
+ of the NOTICE file are for informational purposes only and
116
+ do not modify the License. You may add Your own attribution
117
+ notices within Derivative Works that You distribute, alongside
118
+ or as an addendum to the NOTICE text from the Work, provided
119
+ that such additional attribution notices cannot be construed
120
+ as modifying the License.
121
+
122
+ You may add Your own copyright notice to Your modifications and
123
+ may provide additional or different license terms and conditions
124
+ for use, reproduction, or distribution of Your modifications, or
125
+ for any such Derivative Works as a whole, provided Your use,
126
+ reproduction, and distribution of the Work otherwise complies with
127
+ the conditions stated in this License.
128
+
129
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
130
+ any Contribution intentionally submitted for inclusion in the Work
131
+ by You to the Licensor shall be under the terms and conditions of
132
+ this License, without any additional terms or conditions.
133
+ Notwithstanding the above, nothing herein shall supersede or modify
134
+ the terms of any separate license agreement you may have executed
135
+ with Licensor regarding such Contributions.
136
+
137
+ 6. Trademarks. This License does not grant permission to use the trade
138
+ names, trademarks, service marks, or product names of the Licensor,
139
+ except as required for reasonable and customary use in describing the
140
+ origin of the Work and reproducing the content of the NOTICE file.
141
+
142
+ 7. Disclaimer of Warranty. Unless required by applicable law or
143
+ agreed to in writing, Licensor provides the Work (and each
144
+ Contributor provides its Contributions) on an "AS IS" BASIS,
145
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
146
+ implied, including, without limitation, any warranties or conditions
147
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
148
+ PARTICULAR PURPOSE. You are solely responsible for determining the
149
+ appropriateness of using or redistributing the Work and assume any
150
+ risks associated with Your exercise of permissions under this License.
151
+
152
+ 8. Limitation of Liability. In no event and under no legal theory,
153
+ whether in tort (including negligence), contract, or otherwise,
154
+ unless required by applicable law (such as deliberate and grossly
155
+ negligent acts) or agreed to in writing, shall any Contributor be
156
+ liable to You for damages, including any direct, indirect, special,
157
+ incidental, or consequential damages of any character arising as a
158
+ result of this License or out of the use or inability to use the
159
+ Work (including but not limited to damages for loss of goodwill,
160
+ work stoppage, computer failure or malfunction, or any and all
161
+ other commercial damages or losses), even if such Contributor
162
+ has been advised of the possibility of such damages.
163
+
164
+ 9. Accepting Support, Warranty or Additional Liability. While redistributing
165
+ the Work or Derivative Works thereof, You may choose to offer,
166
+ and charge a fee for, acceptance of support, warranty, indemnity,
167
+ or other liability obligations and/or rights consistent with this
168
+ License. However, in accepting such obligations, You may act only
169
+ on Your own behalf and on Your sole responsibility, not on behalf
170
+ of any other Contributor, and only if You agree to indemnify,
171
+ defend, and hold each Contributor harmless for any liability
172
+ incurred by, or claims asserted against, such Contributor by reason
173
+ of your accepting any such warranty or additional liability.
174
+
175
+ END OF TERMS AND CONDITIONS
176
+
177
+ APPENDIX: How to apply the Apache License to your work.
178
+
179
+ To apply the Apache License to your work, attach the following
180
+ boilerplate notice, with the fields enclosed by brackets "[]"
181
+ replaced with your own identifying information. (Don't include
182
+ the brackets!) The text should be enclosed in the appropriate
183
+ comment syntax for the file format. We also recommend that a
184
+ file or class name and description of purpose be included on the
185
+ same "page" as the copyright notice for easier identification within
186
+ third-party archives.
187
+
188
+ Copyright 2026 AI Accelerator Team
189
+
190
+ Licensed under the Apache License, Version 2.0 (the "License");
191
+ you may not use this file except in compliance with the License.
192
+ You may obtain a copy of the License at
193
+
194
+ http://www.apache.org/licenses/LICENSE-2.0
195
+
196
+ Unless required by applicable law or agreed to in writing, software
197
+ distributed under the License is distributed on an "AS IS" BASIS,
198
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
199
+ See the License for the specific language governing permissions and
200
+ limitations under the License.
@@ -0,0 +1,11 @@
1
+ include README.md
2
+ include LICENSE
3
+ include CHANGELOG.md
4
+ include requirements.txt
5
+ recursive-include examples *.py
6
+ recursive-include aiac *.py
7
+ recursive-include AI_Accelerator *.py
8
+ recursive-include deployment *.py
9
+ recursive-include monitoring *.py
10
+ recursive-include governance *.py
11
+ recursive-include users *.py