azureml-registry-tools 0.1.0a19__py3-none-any.whl → 0.1.0a23__py3-none-any.whl
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.
- azureml/registry/_rest_client/base_rest_client.py +1 -1
- azureml/registry/_rest_client/registry_management_client.py +4 -1
- azureml/registry/data/model.schema.json +60 -26
- azureml/registry/tools/create_or_update_assets.py +1 -1
- {azureml_registry_tools-0.1.0a19.dist-info → azureml_registry_tools-0.1.0a23.dist-info}/METADATA +1 -1
- {azureml_registry_tools-0.1.0a19.dist-info → azureml_registry_tools-0.1.0a23.dist-info}/RECORD +10 -10
- {azureml_registry_tools-0.1.0a19.dist-info → azureml_registry_tools-0.1.0a23.dist-info}/WHEEL +0 -0
- {azureml_registry_tools-0.1.0a19.dist-info → azureml_registry_tools-0.1.0a23.dist-info}/entry_points.txt +0 -0
- {azureml_registry_tools-0.1.0a19.dist-info → azureml_registry_tools-0.1.0a23.dist-info}/licenses/LICENSE.txt +0 -0
- {azureml_registry_tools-0.1.0a19.dist-info → azureml_registry_tools-0.1.0a23.dist-info}/top_level.txt +0 -0
|
@@ -178,7 +178,7 @@ class BaseAzureRestClient(BaseRestClient):
|
|
|
178
178
|
super().__init__(base_url, api_key=api_key, max_retries=max_retries, backoff_factor=backoff_factor)
|
|
179
179
|
# Only after super().__init__ is self.session available
|
|
180
180
|
if api_key is None:
|
|
181
|
-
self._credential = DefaultAzureCredential()
|
|
181
|
+
self._credential = DefaultAzureCredential() # CodeQL [SM05139] DefaultAzureCredential should only be used for local development and testing purposes.
|
|
182
182
|
self._refresh_api_key_if_needed()
|
|
183
183
|
# Ensure self.api_key is set for future use
|
|
184
184
|
api_key = self.api_key
|
|
@@ -24,7 +24,10 @@ class RegistryManagementClient(BaseAzureRestClient):
|
|
|
24
24
|
if primary_region is None:
|
|
25
25
|
# Resolve the primary region if not provided
|
|
26
26
|
primary_region = self.resolve_registry_primary_region(registry_name)
|
|
27
|
-
|
|
27
|
+
if primary_region.lower() == "centraluseuap":
|
|
28
|
+
base_url = "https://int.api.azureml-test.ms"
|
|
29
|
+
else:
|
|
30
|
+
base_url = f"https://{primary_region}.api.azureml.ms"
|
|
28
31
|
super().__init__(base_url, api_key=api_key, max_retries=max_retries, backoff_factor=backoff_factor)
|
|
29
32
|
self.registry_name = registry_name
|
|
30
33
|
|
|
@@ -78,7 +78,8 @@
|
|
|
78
78
|
"evaluation-min-sku-spec": {
|
|
79
79
|
"description": "Minimum SKU specification for evaluation in the format of 'cores|GPUs|RAM(GB)|VRAM(GB)'",
|
|
80
80
|
"type": "string",
|
|
81
|
-
"pattern": "^\\d+\\|\\d+\\|\\d+\\|\\d+$"
|
|
81
|
+
"pattern": "^\\d+\\|\\d+\\|\\d+\\|\\d+$",
|
|
82
|
+
"format": "sku-spec"
|
|
82
83
|
},
|
|
83
84
|
"evaluation-recommended-sku": {
|
|
84
85
|
"description": "Evaluation recommended sku",
|
|
@@ -87,12 +88,14 @@
|
|
|
87
88
|
"finetune-min-sku-spec": {
|
|
88
89
|
"description": "Minimum SKU specification for finetune in the format of 'cores|GPUs|RAM(GB)|VRAM(GB)'",
|
|
89
90
|
"type": "string",
|
|
90
|
-
"pattern": "^\\d+\\|\\d+\\|\\d+\\|\\d+$"
|
|
91
|
+
"pattern": "^\\d+\\|\\d+\\|\\d+\\|\\d+$",
|
|
92
|
+
"format": "sku-spec"
|
|
91
93
|
},
|
|
92
94
|
"inference-min-sku-spec": {
|
|
93
95
|
"description": "Minimum SKU specification for inference in the format of 'cores|GPUs|RAM(GB)|VRAM(GB)'",
|
|
94
96
|
"type": "string",
|
|
95
|
-
"pattern": "^\\d+\\|\\d+\\|\\d+\\|\\d+$"
|
|
97
|
+
"pattern": "^\\d+\\|\\d+\\|\\d+\\|\\d+$",
|
|
98
|
+
"format": "sku-spec"
|
|
96
99
|
},
|
|
97
100
|
"inference-recommended-sku": {
|
|
98
101
|
"description": "A list of comma separated skus that the client should use to deploy the model",
|
|
@@ -122,37 +125,44 @@
|
|
|
122
125
|
"Featured": {
|
|
123
126
|
"description": "Whether the model is featured",
|
|
124
127
|
"type": "string",
|
|
125
|
-
"enum": [""]
|
|
128
|
+
"enum": [""],
|
|
129
|
+
"format": "exists"
|
|
126
130
|
},
|
|
127
131
|
"FinetuneDeprecationDate": {
|
|
128
132
|
"description": "The date that finetune will be deprecated. Date format yyyy-MM-dd. The deprecation will happen at midnight UTC",
|
|
129
133
|
"type": "string",
|
|
130
|
-
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
|
|
134
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
|
|
135
|
+
"format": "date-time"
|
|
131
136
|
},
|
|
132
137
|
"FinetuneRetirementDate": {
|
|
133
138
|
"description": "The date that finetune will be retired. Date format yyyy-MM-dd. The retirement will happen at midnight UTC",
|
|
134
139
|
"type": "string",
|
|
135
|
-
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
|
|
140
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
|
|
141
|
+
"format": "date-time"
|
|
136
142
|
},
|
|
137
143
|
"InferenceDeprecationDate": {
|
|
138
144
|
"description": "The date that inference will be deprecated. Date format yyyy-MM-dd. The deprecation will happen at midnight UTC",
|
|
139
145
|
"type": "string",
|
|
140
|
-
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
|
|
146
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
|
|
147
|
+
"format": "date-time"
|
|
141
148
|
},
|
|
142
149
|
"InferenceLegacyDate": {
|
|
143
150
|
"description": "The date that inference will become legacy. Date format yyyy-MM-dd. The change will happen at midnight UTC",
|
|
144
151
|
"type": "string",
|
|
145
|
-
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
|
|
152
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
|
|
153
|
+
"format": "date-time"
|
|
146
154
|
},
|
|
147
155
|
"InferenceRetirementDate": {
|
|
148
156
|
"description": "The date that inference will be retired. Date format yyyy-MM-dd. The retirement will happen at midnight UTC",
|
|
149
157
|
"type": "string",
|
|
150
|
-
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
|
|
158
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
|
|
159
|
+
"format": "date-time"
|
|
151
160
|
},
|
|
152
161
|
"Preview": {
|
|
153
162
|
"description": "Whether the model is in preview. Remove the key if not in preview.",
|
|
154
163
|
"type": "string",
|
|
155
|
-
"enum": [""]
|
|
164
|
+
"enum": [""],
|
|
165
|
+
"format": "exists"
|
|
156
166
|
},
|
|
157
167
|
"_aml_system_vanity_registry": {
|
|
158
168
|
"description": "AML vanity registry",
|
|
@@ -166,7 +176,17 @@
|
|
|
166
176
|
"azureOffers": {
|
|
167
177
|
"description": "Supported azure offer types as a comma-separated string",
|
|
168
178
|
"type": "string",
|
|
169
|
-
"pattern": "^(standard-paygo|RestrictedAccess|PTU|batch-paygo|VM)(?:\\s*,\\s*(standard-paygo|RestrictedAccess|PTU|batch-paygo|VM))*$"
|
|
179
|
+
"pattern": "^(standard-paygo|RestrictedAccess|PTU|batch-paygo|VM|VM-withSurcharge)(?:\\s*,\\s*(standard-paygo|RestrictedAccess|PTU|batch-paygo|VM|VM-withSurcharge))*$"
|
|
180
|
+
},
|
|
181
|
+
"maap-surcharge": {
|
|
182
|
+
"description": "MaaP Surcharge",
|
|
183
|
+
"type": "string",
|
|
184
|
+
"enum": ["true", "false"]
|
|
185
|
+
},
|
|
186
|
+
"maap-surcharge-type": {
|
|
187
|
+
"description": "MaaP Surcharge Type",
|
|
188
|
+
"type": "string",
|
|
189
|
+
"pattern": "^(model)(?:\\s*,\\s*(model))*$"
|
|
170
190
|
},
|
|
171
191
|
"benchmark": {
|
|
172
192
|
"description": "Benchmark type",
|
|
@@ -209,7 +229,8 @@
|
|
|
209
229
|
"hiddenlayerscanned": {
|
|
210
230
|
"description": "If the model has been scanned by hiddenlayer. The value is set to \"\" if scanned, otherwise the key should be removed.",
|
|
211
231
|
"type": "string",
|
|
212
|
-
"enum": [""]
|
|
232
|
+
"enum": [""],
|
|
233
|
+
"format": "exists"
|
|
213
234
|
},
|
|
214
235
|
"huggingface_model_id": {
|
|
215
236
|
"description": "Id of the model in the hugging face catalog",
|
|
@@ -243,7 +264,8 @@
|
|
|
243
264
|
"invisibleUntil": {
|
|
244
265
|
"description": "Date until which the model is invisible",
|
|
245
266
|
"type": "string",
|
|
246
|
-
"pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{1,6}Z$"
|
|
267
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{1,6}Z$",
|
|
268
|
+
"format": "date-time"
|
|
247
269
|
},
|
|
248
270
|
"isDirectFromAzure": {
|
|
249
271
|
"description": "If the model is an Azure Direct model",
|
|
@@ -253,7 +275,7 @@
|
|
|
253
275
|
"keywords": {
|
|
254
276
|
"description": "List of key words as a comma-separated string. Max 3 keywords",
|
|
255
277
|
"type": "string",
|
|
256
|
-
"pattern": "^(Agents|Audio|Coding|Conversation|Instruction|Large context|Low latency|Multilingual|Multimodal|Multipurpose|RAG|Reasoning|Summarization|Translation|Understanding|Vision)(?:\\s*,\\s*(Agents|Audio|Coding|Conversation|Instruction|Large context|Low latency|Multilingual|Multimodal|Multipurpose|RAG|Reasoning|Summarization|Translation|Understanding|Vision)){0,2}$"
|
|
278
|
+
"pattern": "^(Agents|Audio|Coding|Conversation|Instruction|Large context|Low latency|Multilingual|Multimodal|Multipurpose|RAG|Reasoning|Summarization|Translation|Understanding|Vision|Atomistic generation|Chat|Hybrid Reasoning|Vision Language Model)(?:\\s*,\\s*(Agents|Audio|Coding|Conversation|Instruction|Large context|Low latency|Multilingual|Multimodal|Multipurpose|RAG|Reasoning|Summarization|Translation|Understanding|Vision|Atomistic generation|Chat|Hybrid Reasoning|Vision Language Model)){0,2}$"
|
|
257
279
|
},
|
|
258
280
|
"languages": {
|
|
259
281
|
"description": "Comma-separated list of supported languages (ISO 639-1 language codes)",
|
|
@@ -274,7 +296,8 @@
|
|
|
274
296
|
},
|
|
275
297
|
"licenseDescription": {
|
|
276
298
|
"description": "Description of the license terms",
|
|
277
|
-
"type": "string"
|
|
299
|
+
"type": "string",
|
|
300
|
+
"format": "long-string"
|
|
278
301
|
},
|
|
279
302
|
"maas-finetuning": {
|
|
280
303
|
"description": "Whether MaaS fine-tuning is enabled. True means enabled, if disabled remove the key",
|
|
@@ -341,7 +364,7 @@
|
|
|
341
364
|
"outputModalities": {
|
|
342
365
|
"description": "Output modalities supported (e.g., text) as a comma-separated string",
|
|
343
366
|
"type": "string",
|
|
344
|
-
"pattern": "^(audio|csv|embeddings|image|json|pdf|text|video)(?:\\s*,\\s*(audio|csv|embeddings|image|json|pdf|text|video))*$"
|
|
367
|
+
"pattern": "^(audio|csv|embeddings|image|json|pdf|text|video|3D-image)(?:\\s*,\\s*(audio|csv|embeddings|image|json|pdf|text|video|3D-image))*$"
|
|
345
368
|
},
|
|
346
369
|
"playgroundRateLimitTier": {
|
|
347
370
|
"description": "Rate limit tier for playground",
|
|
@@ -351,16 +374,18 @@
|
|
|
351
374
|
"SharedComputeCapacityEnabled": {
|
|
352
375
|
"description": "Whether shared compute capacity is enabled. An empty string means enabled. If not enabled remove the key",
|
|
353
376
|
"type": "string",
|
|
354
|
-
"enum": [""]
|
|
377
|
+
"enum": [""],
|
|
378
|
+
"format": "exists"
|
|
355
379
|
},
|
|
356
380
|
"summary": {
|
|
357
381
|
"description": "Brief description of the model",
|
|
358
|
-
"type": "string"
|
|
382
|
+
"type": "string",
|
|
383
|
+
"format": "long-string"
|
|
359
384
|
},
|
|
360
385
|
"task": {
|
|
361
386
|
"description": "Tasks supported by the model as a comma-separated string",
|
|
362
387
|
"type": "string",
|
|
363
|
-
"pattern": "^(audio-analysis|audio-classification|audio-generation|automatic-speech-recognition|chat-completion|completions|content-filters|content-safety|conversational-ai|custom-extraction|data-generation|document-analysis|document-ingestion|document-translation|embeddings|face-detection|fill-mask|forecasting|image-analysis|image-classification|image-feature-extraction|image-text-to-text|image-to-image|image-to-text|intelligent-content-processing|intelligent-document-processing|optical-character-recognition|protein-sequence-generation|protein-structure-prediction|responses|responsible-ai|retrosynthesis-prediction|summarization|text-analysis|text-analytics|text-classification|text-generation|text-to-image|text-to-speech|time-series-forecasting|translation|speech-to-text|speech-translation|video-analysis|video-generation|video-text-to-text|visual-question-answering|zero-shot-classification|zero-shot-image-classification)(?:\\s*,\\s*(audio-analysis|audio-classification|audio-generation|automatic-speech-recognition|chat-completion|completions|content-filters|content-safety|conversational-ai|custom-extraction|data-generation|document-analysis|document-ingestion|document-translation|embeddings|face-detection|fill-mask|forecasting|image-analysis|image-classification|image-feature-extraction|image-text-to-text|image-to-image|image-to-text|intelligent-content-processing|intelligent-document-processing|optical-character-recognition|protein-sequence-generation|protein-structure-prediction|responses|responsible-ai|summarization|text-analysis|text-analytics|text-classification|text-generation|text-to-image|text-to-speech|time-series-forecasting|translation|speech-to-text|speech-translation|video-analysis|video-generation|video-text-to-text|visual-question-answering|zero-shot-classification|zero-shot-image-classification))*$"
|
|
388
|
+
"pattern": "^(audio-analysis|audio-classification|audio-generation|automatic-speech-recognition|chat-completion|completions|content-filters|content-safety|conversational-ai|custom-extraction|data-generation|document-analysis|document-ingestion|document-translation|embeddings|face-detection|fill-mask|forecasting|image-analysis|image-classification|image-feature-extraction|image-text-to-text|image-to-image|image-to-text|intelligent-content-processing|intelligent-document-processing|text-pii-extraction|conversation-pii-extraction|document-pii-extraction|detect-language|optical-character-recognition|protein-sequence-generation|protein-structure-prediction|responses|responsible-ai|retrosynthesis-prediction|summarization|text-analysis|text-analytics|text-classification|text-generation|text-to-image|text-to-speech|time-series-forecasting|translation|speech-to-text|speech-translation|video-analysis|video-generation|video-text-to-text|visual-question-answering|zero-shot-classification|zero-shot-image-classification|materials-design|atomistic-modelling|image-to-3D|text-to-3D|3D-generation|task-completion-verification|action-affordance|next-plausible-action-prediction|explanation-and-chain-of-thought-reasoning|video-analytics-and-spatial-temporal-awareness)(?:\\s*,\\s*(audio-analysis|audio-classification|audio-generation|automatic-speech-recognition|chat-completion|completions|content-filters|content-safety|conversational-ai|custom-extraction|data-generation|document-analysis|document-ingestion|document-translation|embeddings|face-detection|fill-mask|forecasting|image-analysis|image-classification|image-feature-extraction|image-text-to-text|image-to-image|image-to-text|intelligent-content-processing|intelligent-document-processing|optical-character-recognition|protein-sequence-generation|protein-structure-prediction|responses|responsible-ai|summarization|text-analysis|text-analytics|text-classification|text-generation|text-pii-extraction|conversation-pii-extraction|document-pii-extraction|detect-language|text-to-image|text-to-speech|time-series-forecasting|translation|speech-to-text|speech-translation|video-analysis|video-generation|video-text-to-text|visual-question-answering|zero-shot-classification|zero-shot-image-classification|materials-design|atomistic-modelling|image-to-3D|text-to-3D|3D-generation|task-completion-verification|action-affordance|next-plausible-action-prediction|explanation-and-chain-of-thought-reasoning|video-analytics-and-spatial-temporal-awareness))*$"
|
|
364
389
|
},
|
|
365
390
|
"textContextWindow": {
|
|
366
391
|
"description": "Context window size",
|
|
@@ -369,7 +394,8 @@
|
|
|
369
394
|
},
|
|
370
395
|
"training_datasets": {
|
|
371
396
|
"description": "A description of the training datasets",
|
|
372
|
-
"type": "string"
|
|
397
|
+
"type": "string",
|
|
398
|
+
"format": "long-string"
|
|
373
399
|
},
|
|
374
400
|
"finetune_compute_allow_list": {
|
|
375
401
|
"description": "List of compute SKUs allowed for finetune with maap as a comma-separated string",
|
|
@@ -389,7 +415,8 @@
|
|
|
389
415
|
"trainingDataDate": {
|
|
390
416
|
"description": "Training cutoff date",
|
|
391
417
|
"type": "string",
|
|
392
|
-
"pattern": "^(January|February|March|April|May|June|July|August|September|October|November|December)\\s+\\d{4}$"
|
|
418
|
+
"pattern": "^(January|February|March|April|May|June|July|August|September|October|November|December)\\s+\\d{4}$",
|
|
419
|
+
"format": "month-year"
|
|
393
420
|
},
|
|
394
421
|
"newNotes": {
|
|
395
422
|
"description": "Notes for the model. Can be a full string of notes or it can be the name of an md file in the current directory like 'notes.md'",
|
|
@@ -417,8 +444,7 @@
|
|
|
417
444
|
},
|
|
418
445
|
"featureFlags": {
|
|
419
446
|
"description": "Comma separated list of feature flags for the models to gate usage",
|
|
420
|
-
|
|
421
|
-
"pattern": "^(OpenAI\\.(?:EAGatingTier|EnterpriseTier|1PGatingTier|OneVetGatingTier|1000CUGatingTier|computer-use-preview|Preview\\.202409)|OpenAITest|Microsoft\\.CognitiveServices/OpenAI\\.(?:EAGatingTier|EnterpriseTier|1PGatingTier|OneVetGatingTier|1000CUGatingTier)|AIServices\\.grok-4-code)(?:\\s*,\\s*(OpenAI\\.(?:EAGatingTier|EnterpriseTier|1PGatingTier|OneVetGatingTier|1000CUGatingTier|computer-use-preview|Preview\\.202409)|OpenAITest|Microsoft\\.CognitiveServices/OpenAI\\.(?:EAGatingTier|EnterpriseTier|1PGatingTier|OneVetGatingTier|1000CUGatingTier)|AIServices\\.grok-4-code))*$"
|
|
447
|
+
"$ref": "#/definitions/featureFlagsListDefinition"
|
|
422
448
|
},
|
|
423
449
|
"model_flavor": {
|
|
424
450
|
"description": "Model flavor identifier (e.g., pytorch, mlflow).",
|
|
@@ -436,7 +462,7 @@
|
|
|
436
462
|
"skuListDefinition": {
|
|
437
463
|
"type": "string",
|
|
438
464
|
"description": "A comma-separated list of valid SKUs with no duplicates",
|
|
439
|
-
"pattern": "^(
|
|
465
|
+
"pattern": "^(Standard_DS3_v2|Standard_NC12s_v3|Standard_NC16as_T4_v3|Standard_NC24ads_A100_v4|Standard_NC24rs_v3|Standard_NC24s_v3|Standard_NC40ads_H100_v5|Standard_NC48ads_A100_v4|Standard_NC4as_T4_v3|Standard_NC64as_T4_v3|Standard_NC6s_v3|Standard_NC80adis_H100_v5|Standard_NC8as_T4_v3|Standard_NC96ads_A100_v4|Standard_ND40rs_v2|Standard_ND96amsr_A100_v4|Standard_ND96amsr_v4|Standard_ND96asr_v4|Standard_ND96isr_H100_v5|Standard_DS12_v2|Standard_DS4_v2|Standard_DS5_v2|Standard_D16a_v4|Standard_D16as_v4|Standard_D32a_v4|Standard_D32as_v4|Standard_D48a_v4|Standard_D48as_v4|Standard_D64a_v4|Standard_D64as_v4|Standard_D8a_v4|Standard_D8as_v4|Standard_D96a_v4|Standard_D96as_v4|Standard_E16s_v3|Standard_E2s_v3|Standard_E32s_v3|Standard_E48s_v3|Standard_E4s_v3|Standard_E64s_v3|Standard_E8s_v3|Standard_F16s_v2|Standard_F32s_v2|Standard_F48s_v2|Standard_F4s_v2|Standard_F64s_v2|Standard_F72s_v2|Standard_F8s_v2|Standard_FX12mds|Standard_FX24mds|Standard_FX36mds|Standard_FX48mds|Standard_FX4mds|Standard_NV12s_v3|Standard_NV24s_v3|Standard_NV48s_v3)(?:\\s*,\\s*(Standard_DS3_v2|Standard_NC12s_v3|Standard_NC16as_T4_v3|Standard_NC24ads_A100_v4|Standard_NC24rs_v3|Standard_NC24s_v3|Standard_NC40ads_H100_v5|Standard_NC48ads_A100_v4|Standard_NC4as_T4_v3|Standard_NC64as_T4_v3|Standard_NC6s_v3|Standard_NC80adis_H100_v5|Standard_NC8as_T4_v3|Standard_NC96ads_A100_v4|Standard_ND40rs_v2|Standard_ND96amsr_A100_v4|Standard_ND96amsr_v4|Standard_ND96asr_v4|Standard_ND96isr_H100_v5|Standard_DS12_v2|Standard_DS4_v2|Standard_DS5_v2|Standard_D16a_v4|Standard_D16as_v4|Standard_D32a_v4|Standard_D32as_v4|Standard_D48a_v4|Standard_D48as_v4|Standard_D64a_v4|Standard_D64as_v4|Standard_D8a_v4|Standard_D8as_v4|Standard_D96a_v4|Standard_D96as_v4|Standard_E16s_v3|Standard_E2s_v3|Standard_E32s_v3|Standard_E48s_v3|Standard_E4s_v3|Standard_E64s_v3|Standard_E8s_v3|Standard_F16s_v2|Standard_F32s_v2|Standard_F48s_v2|Standard_F4s_v2|Standard_F64s_v2|Standard_F72s_v2|Standard_F8s_v2|Standard_FX12mds|Standard_FX24mds|Standard_FX36mds|Standard_FX48mds|Standard_FX4mds|Standard_NV12s_v3|Standard_NV24s_v3|Standard_NV48s_v3))*$"
|
|
440
466
|
},
|
|
441
467
|
"skuEnum": {
|
|
442
468
|
"enum": [
|
|
@@ -541,7 +567,9 @@
|
|
|
541
567
|
"speech-to-text",
|
|
542
568
|
"speech-translation",
|
|
543
569
|
"video-analysis",
|
|
544
|
-
"video-generation"
|
|
570
|
+
"video-generation",
|
|
571
|
+
"materials-design",
|
|
572
|
+
"atomistic-modelling"
|
|
545
573
|
]
|
|
546
574
|
},
|
|
547
575
|
"finetuningTasksListDefinition": {
|
|
@@ -582,7 +610,8 @@
|
|
|
582
610
|
"Summarization",
|
|
583
611
|
"Translation",
|
|
584
612
|
"Understanding",
|
|
585
|
-
"Vision"
|
|
613
|
+
"Vision",
|
|
614
|
+
"Atomistic generation"
|
|
586
615
|
]
|
|
587
616
|
},
|
|
588
617
|
"modalitiesEnum": {
|
|
@@ -597,6 +626,11 @@
|
|
|
597
626
|
"text",
|
|
598
627
|
"video"
|
|
599
628
|
]
|
|
629
|
+
},
|
|
630
|
+
"featureFlagsListDefinition": {
|
|
631
|
+
"type": "string",
|
|
632
|
+
"description": "A comma-separated list of valid feature flags with no duplicates",
|
|
633
|
+
"pattern": "^(OpenAI\\.EAGatingTier|OpenAI\\.EnterpriseTier|OpenAI\\.1PGatingTier|OpenAI\\.OneVetGatingTier|OpenAI\\.1000CUGatingTier|OpenAI\\.computer-use-preview|OpenAI\\.Preview\\.202409|OpenAITest|AIServices\\.grok-4-code|AIServices\\.grok-4)(?:\\s*,\\s*(OpenAI\\.EAGatingTier|OpenAI\\.EnterpriseTier|OpenAI\\.1PGatingTier|OpenAI\\.OneVetGatingTier|OpenAI\\.1000CUGatingTier|OpenAI\\.computer-use-preview|OpenAI\\.Preview\\.202409|OpenAITest|AIServices\\.grok-4-code|AIServices\\.grok-4))*$"
|
|
600
634
|
}
|
|
601
635
|
}
|
|
602
636
|
}
|
|
@@ -275,7 +275,7 @@ def create_or_update_assets(input_dir: Path,
|
|
|
275
275
|
subscription_id=repo2registry_config.subscription_id,
|
|
276
276
|
resource_group_name=repo2registry_config.resource_group,
|
|
277
277
|
registry_name=repo2registry_config.registry_name,
|
|
278
|
-
credential=DefaultAzureCredential(),
|
|
278
|
+
credential=DefaultAzureCredential(), # CodeQL [SM05139] DefaultAzureCredential should only be used for local development and testing purposes.
|
|
279
279
|
)
|
|
280
280
|
|
|
281
281
|
results_dict = {}
|
{azureml_registry_tools-0.1.0a19.dist-info → azureml_registry_tools-0.1.0a23.dist-info}/RECORD
RENAMED
|
@@ -5,15 +5,15 @@ azureml/registry/_cli/registry_syndication_cli.py,sha256=7LyyBDC5OnJu9OMBAl_L_SW
|
|
|
5
5
|
azureml/registry/_cli/repo2registry_cli.py,sha256=4CDv4tYWLTjVgdXIcoKA9iu_gOv_Z_xn05wSANkdmdg,5378
|
|
6
6
|
azureml/registry/_rest_client/__init__.py,sha256=Eh0vB8AVlwkZlHLO4DCGHyyfRYYgeTeVjiUAX_WujG0,219
|
|
7
7
|
azureml/registry/_rest_client/arm_client.py,sha256=KVSj0V1bN-vCUV3fBbIdZDpWTLKYT6qdWIZtDjx2la4,4516
|
|
8
|
-
azureml/registry/_rest_client/base_rest_client.py,sha256=
|
|
9
|
-
azureml/registry/_rest_client/registry_management_client.py,sha256=
|
|
8
|
+
azureml/registry/_rest_client/base_rest_client.py,sha256=WnjWhOQvigLIBPp2h1eU5IZ75aj0B2ZhCqa-z71bMiY,8280
|
|
9
|
+
azureml/registry/_rest_client/registry_management_client.py,sha256=NsqWRaDdOlPyICNWj74eLVuofVl04RIc6RgIgyrEROA,5113
|
|
10
10
|
azureml/registry/_rest_client/registry_model_client.py,sha256=LqJGTuYQtBnHSeSbOl5KVbiO6vGBkKQ7HD5jc4fvV3k,14466
|
|
11
11
|
azureml/registry/data/__init__.py,sha256=cW3X6HATz6XF-K_7uKdybTbJb9EZSecBN4J27NGdZmU,231
|
|
12
12
|
azureml/registry/data/asset.yaml.template,sha256=WTgfuvKEBp-EVFSQ0JpU0h4z_ULJdULO9kHmB_9Fr1o,96
|
|
13
13
|
azureml/registry/data/description.md.template,sha256=wQLk54U8hoXU1y9235R4irc6FGYPXGO-x9EHUorP15Q,84
|
|
14
14
|
azureml/registry/data/evaluation.md.template,sha256=JaDecIfLV9vZDUrZzVRPzVHHnKD-BQGBgQ-cw1dHavU,277
|
|
15
15
|
azureml/registry/data/model-variant.schema.json,sha256=AT4Dy6cCtp_SFUfSqYIqcER8AldpYm0QIEy1abY3QWE,1699
|
|
16
|
-
azureml/registry/data/model.schema.json,sha256=
|
|
16
|
+
azureml/registry/data/model.schema.json,sha256=j6orgqiVNpQYbvrphBZDLtWxslTXUy0VrTnC6Int200,29192
|
|
17
17
|
azureml/registry/data/model.yaml.template,sha256=h5uqAN22FLaWrbPxIb8yVKH9cGDBrIwooXYYfsKhxDw,245
|
|
18
18
|
azureml/registry/data/notes.md.template,sha256=zSRyOR__9NGL2j0tugY7HgFkwkAdcE2pJyyyGsz1SAk,248
|
|
19
19
|
azureml/registry/data/validate_model_schema.py,sha256=OQp2E01kdxSphvUQYQvelSiD24-qUG6nTFuzW60wX2c,8322
|
|
@@ -27,12 +27,12 @@ azureml/registry/mgmt/model_management.py,sha256=STTr_uvdPKV2NaJ5UvS5aMi3yejVF6H
|
|
|
27
27
|
azureml/registry/mgmt/syndication_manifest.py,sha256=8Sfd49QuCA5en5_mIOLE21kZVpnReUXowx_g0TVRgWg,9025
|
|
28
28
|
azureml/registry/tools/__init__.py,sha256=IAuWWpGfZm__pAkBIxmpJz84QskpkxBr0yDk1TUSnkE,223
|
|
29
29
|
azureml/registry/tools/config.py,sha256=tjPaoBsWtPXBL8Ww1hcJtsr2SuIjPKt79dR8iovcebg,3639
|
|
30
|
-
azureml/registry/tools/create_or_update_assets.py,sha256=
|
|
30
|
+
azureml/registry/tools/create_or_update_assets.py,sha256=7LcuBzwU-HNE9ADG2igFXI696aKR028yTYxMuDtjVmA,16095
|
|
31
31
|
azureml/registry/tools/registry_utils.py,sha256=zgYlCiOONtQJ4yZ9wg8tKVoE8dh6rrjB8hYBGhpV9-0,1403
|
|
32
32
|
azureml/registry/tools/repo2registry_config.py,sha256=eXp_tU8Jyi30g8xGf7wbpLgKEPpieohBANKxMSLzq7s,4873
|
|
33
|
-
azureml_registry_tools-0.1.
|
|
34
|
-
azureml_registry_tools-0.1.
|
|
35
|
-
azureml_registry_tools-0.1.
|
|
36
|
-
azureml_registry_tools-0.1.
|
|
37
|
-
azureml_registry_tools-0.1.
|
|
38
|
-
azureml_registry_tools-0.1.
|
|
33
|
+
azureml_registry_tools-0.1.0a23.dist-info/licenses/LICENSE.txt,sha256=n20rxwp7_NGrrShv9Qvcs90sjI1l3Pkt3m-5OPCWzgs,845
|
|
34
|
+
azureml_registry_tools-0.1.0a23.dist-info/METADATA,sha256=HprALdWRfc7GdfU8IM8xflcYVGWfHauAksUtMqQd4Kk,522
|
|
35
|
+
azureml_registry_tools-0.1.0a23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
36
|
+
azureml_registry_tools-0.1.0a23.dist-info/entry_points.txt,sha256=iRUkAeQidMnO6RQzpLqMUBTcyYtNzAfSin9WnSdVGLw,147
|
|
37
|
+
azureml_registry_tools-0.1.0a23.dist-info/top_level.txt,sha256=ZOeEa0TAXo6i5wOjwBoqfIGEuxOcKuscGgNSpizqREY,8
|
|
38
|
+
azureml_registry_tools-0.1.0a23.dist-info/RECORD,,
|
{azureml_registry_tools-0.1.0a19.dist-info → azureml_registry_tools-0.1.0a23.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|