azureml-registry-tools 0.1.0a6__py3-none-any.whl → 0.1.0a8__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.
@@ -0,0 +1,597 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "Azure ML Model Spec Schema",
4
+ "description": "Schema for validating Azure ML model specification files",
5
+ "type": "object",
6
+ "additionalProperties": false,
7
+ "properties": {
8
+ "$schema": {
9
+ "description": "URI reference to the JSON schema",
10
+ "pattern": "^https://azuremlschemas.azureedge.net/latest/model.schema.json",
11
+ "type": "string"
12
+ },
13
+ "name": {
14
+ "description": "Machine name of the model (must match what's in the API)",
15
+ "type": "string"
16
+ },
17
+ "path": {
18
+ "description": "Path to the model files",
19
+ "type": "string"
20
+ },
21
+ "properties": {
22
+ "description": "Model properties",
23
+ "type": "object",
24
+ "additionalProperties": false,
25
+ "properties": {
26
+ "languages": {
27
+ "description": "Not used anymore. Use languages in the tags section",
28
+ "type": "string"
29
+ },
30
+ "datasets": {
31
+ "description": "Not used anymore. Use training_datasets in the tags section",
32
+ "type": "string"
33
+ },
34
+ "AzureOpenAI-ModelName": {
35
+ "description": "Name of the Azure OpenAI model name in the cogsvc catalog",
36
+ "type": "string"
37
+ },
38
+ "AzureOpenAI-Version": {
39
+ "description": "version of the Azure OpenAI model name in the cogsvc catalog",
40
+ "oneOf": [{ "type": "string" }, { "type": "integer", "minimum": 1 }]
41
+ },
42
+ "azureml.copyRegistryFilesToWorkspace": {
43
+ "description": "Whether registry files are copied to workspace. If false remove the key.",
44
+ "type": "boolean"
45
+ },
46
+ "baseModelWeightsVersion": {
47
+ "oneOf": [{ "type": "string" }, { "type": "number", "minimum": 1.0 }]
48
+ },
49
+ "baseWeightsId": {
50
+ "type": "string",
51
+ "enum": [
52
+ "Meta-Llama-3-8B",
53
+ "Meta-Llama-3.1-8B",
54
+ "Meta-Llama-3.1-8B-Instruct"
55
+ ]
56
+ },
57
+ "engineControllerManifestPath": {
58
+ "description": "Path to the engine controller manifest",
59
+ "type": "string",
60
+ "pattern": "^(azureml/|models/|model/)"
61
+ },
62
+ "finetune-recommended-sku": {
63
+ "description": "Skus that can be used for finetune maap",
64
+ "$ref": "#/definitions/skuListDefinition"
65
+ },
66
+ "intellectualPropertyPublisher": {
67
+ "description": "Intellectual property publisher name",
68
+ "type": "string"
69
+ },
70
+ "SHA": {
71
+ "description": "SHA hash of the model",
72
+ "type": "string"
73
+ },
74
+ "SharedComputeCapacityEnabled": {
75
+ "description": "Whether shared compute capacity is enabled",
76
+ "type": "boolean"
77
+ },
78
+ "evaluation-min-sku-spec": {
79
+ "description": "Minimum SKU specification for evaluation in the format of 'cores|GPUs|RAM(GB)|VRAM(GB)'",
80
+ "type": "string",
81
+ "pattern": "^\\d+\\|\\d+\\|\\d+\\|\\d+$"
82
+ },
83
+ "evaluation-recommended-sku": {
84
+ "description": "Evaluation recommended sku",
85
+ "$ref": "#/definitions/skuListDefinition"
86
+ },
87
+ "finetune-min-sku-spec": {
88
+ "description": "Minimum SKU specification for finetune in the format of 'cores|GPUs|RAM(GB)|VRAM(GB)'",
89
+ "type": "string",
90
+ "pattern": "^\\d+\\|\\d+\\|\\d+\\|\\d+$"
91
+ },
92
+ "inference-min-sku-spec": {
93
+ "description": "Minimum SKU specification for inference in the format of 'cores|GPUs|RAM(GB)|VRAM(GB)'",
94
+ "type": "string",
95
+ "pattern": "^\\d+\\|\\d+\\|\\d+\\|\\d+$"
96
+ },
97
+ "inference-recommended-sku": {
98
+ "description": "A list of comma separated skus that the client should use to deploy the model",
99
+ "$ref": "#/definitions/skuListDefinition"
100
+ },
101
+ "finetuning-tasks": {
102
+ "description": "Tasks for which the model can be fine-tuned",
103
+ "$ref": "#/definitions/finetuningTasksListDefinition"
104
+ },
105
+ "model_id": {
106
+ "description": "Model id",
107
+ "type": "string",
108
+ "pattern": "^(https://visionnotebooksdata.blob.core.windows.net)"
109
+ },
110
+ "pipeManifestPath": {
111
+ "description": "Pipe manifest path. Used for OAI models",
112
+ "type": "string",
113
+ "pattern": "^(azureml/)"
114
+ }
115
+ }
116
+ },
117
+ "tags": {
118
+ "description": "Model tags",
119
+ "type": "object",
120
+ "additionalProperties": false,
121
+ "properties": {
122
+ "Featured": {
123
+ "description": "Whether the model is featured",
124
+ "type": "string",
125
+ "enum": [""]
126
+ },
127
+ "FinetuneDeprecationDate": {
128
+ "description": "The date that finetune will be deprecated. Date format yyyy-MM-dd. The deprecation will happen at midnight UTC",
129
+ "type": "string",
130
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
131
+ },
132
+ "FinetuneRetirementDate": {
133
+ "description": "The date that finetune will be retired. Date format yyyy-MM-dd. The retirement will happen at midnight UTC",
134
+ "type": "string",
135
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
136
+ },
137
+ "InferenceDeprecationDate": {
138
+ "description": "The date that inference will be deprecated. Date format yyyy-MM-dd. The deprecation will happen at midnight UTC",
139
+ "type": "string",
140
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
141
+ },
142
+ "InferenceLegacyDate": {
143
+ "description": "The date that inference will become legacy. Date format yyyy-MM-dd. The change will happen at midnight UTC",
144
+ "type": "string",
145
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
146
+ },
147
+ "InferenceRetirementDate": {
148
+ "description": "The date that inference will be retired. Date format yyyy-MM-dd. The retirement will happen at midnight UTC",
149
+ "type": "string",
150
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
151
+ },
152
+ "Preview": {
153
+ "description": "Whether the model is in preview. Remove the key if not in preview.",
154
+ "type": "string",
155
+ "enum": [""]
156
+ },
157
+ "_aml_system_vanity_registry": {
158
+ "description": "AML vanity registry",
159
+ "type": "string",
160
+ "enum": ["azureml-phi"]
161
+ },
162
+ "author": {
163
+ "description": "Model provider/author name",
164
+ "type": "string"
165
+ },
166
+ "azureOffers": {
167
+ "description": "Supported azure offer types as a comma-separated string",
168
+ "type": "string",
169
+ "pattern": "^(standard-paygo|RestrictedAccess|PTU|batch-paygo|VM)(?:\\s*,\\s*(standard-paygo|RestrictedAccess|PTU|batch-paygo|VM))*$"
170
+ },
171
+ "benchmark": {
172
+ "description": "Benchmark type",
173
+ "type": "string",
174
+ "enum": ["quality", "embeddings"]
175
+ },
176
+ "datasets": {
177
+ "description": "Where data was sourced for training as a comma-separated string",
178
+ "type": "string",
179
+ "pattern": "^(Publicly available sources|bookcorpus|wikipedia)(?:\\s*,\\s*(Publicly available sources|bookcorpus|wikipedia))*$"
180
+ },
181
+ "deploymentOptions": {
182
+ "description": "Where data was sourced for training as a comma-separated string",
183
+ "type": "string",
184
+ "pattern": "^(ServerlessMaaS|UnifiedEndpointMaaS|MaaP|AOAI|Restricted|MonetizedMaaP)(?:\\s*,\\s*(ServerlessMaaS|UnifiedEndpointMaaS|MaaP|AOAI|Restricted|MonetizedMaaP))*$"
185
+ },
186
+ "disable-batch": {
187
+ "description": "Whether batch processing is disabled",
188
+ "type": "string",
189
+ "enum": ["true", "false"]
190
+ },
191
+ "disable-maap": {
192
+ "description": "Whether MAAP is disabled",
193
+ "type": "string",
194
+ "enum": ["true", "false"]
195
+ },
196
+ "displayName": {
197
+ "description": "Display name for marketing materials",
198
+ "type": "string"
199
+ },
200
+ "evaluation": {
201
+ "description": "Reference to evaluation documentation",
202
+ "type": "string"
203
+ },
204
+ "freePlayground": {
205
+ "description": "Whether the model is available in free playground",
206
+ "type": "string",
207
+ "enum": ["true", "false"]
208
+ },
209
+ "hiddenlayerscanned": {
210
+ "description": "If the model has been scanned by hiddenlayer. The value is set to \"\" if scanned, otherwise the key should be removed.",
211
+ "type": "string",
212
+ "enum": [""]
213
+ },
214
+ "huggingface_model_id": {
215
+ "description": "Id of the model in the hugging face catalog",
216
+ "type": "string",
217
+ "pattern": "^(databricks/|google/|codellama/|microsoft/)"
218
+ },
219
+ "industry": {
220
+ "description": "The industry for the model",
221
+ "type": "string",
222
+ "enum": [
223
+ "consumer-goods",
224
+ "health-and-life-sciences",
225
+ "manufacturing",
226
+ "mobility",
227
+ "financial-services"
228
+ ]
229
+ },
230
+ "inputModalities": {
231
+ "description": "Input modalities supported (e.g., text, image) as a comma-separated string",
232
+ "type": "string",
233
+ "pattern": "^(audio|csv|embeddings|image|json|pdf|text|video)(?:\\s*,\\s*(audio|csv|embeddings|image|json|pdf|text|video))*$"
234
+ },
235
+ "inference_supported_envs": {
236
+ "description": "Supported inference environments",
237
+ "type": "array",
238
+ "items": {
239
+ "type": "string",
240
+ "enum": ["ds_mii", "hf", "vllm"]
241
+ }
242
+ },
243
+ "invisibleUntil": {
244
+ "description": "Date until which the model is invisible",
245
+ "type": "string",
246
+ "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{1,6}Z$"
247
+ },
248
+ "isDirectFromAzure": {
249
+ "description": "If the model is an Azure Direct model",
250
+ "type": "string",
251
+ "enum": ["true"]
252
+ },
253
+ "keywords": {
254
+ "description": "List of key words as a comma-separated string. Max 3 keywords",
255
+ "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}$"
257
+ },
258
+ "languages": {
259
+ "description": "Comma-separated list of supported languages (ISO 639-1 language codes)",
260
+ "type": "string",
261
+ "pattern": "^(aa|ab|ae|af|ak|am|an|ar|as|av|ay|az|ba|be|bg|bh|bi|bm|bn|bo|br|bs|ca|ce|ch|co|cr|cs|cu|cv|cy|da|de|dv|dz|ee|el|en|eo|es|et|eu|fa|ff|fi|fj|fo|fr|fy|ga|gd|gl|gn|gu|gv|ha|he|hi|ho|hr|ht|hu|hy|hz|ia|id|ie|ig|ii|ik|io|is|it|iu|ja|jv|ka|kg|ki|kj|kk|kl|km|kn|ko|kr|ks|ku|kv|kw|ky|la|lb|lg|li|ln|lo|lt|lu|lv|mg|mh|mi|mk|ml|mn|mr|ms|mt|my|na|nb|nd|ne|ng|nl|nn|\"no\"|nr|nv|ny|oc|oj|om|or|os|pa|pi|pl|ps|pt|pt-br|qu|rm|rn|ro|ru|rw|sa|sc|sd|se|sg|si|sk|sl|sm|sn|so|sq|sr|ss|st|su|sv|sw|ta|te|tg|th|ti|tk|tl|tn|to|tr|ts|tt|tw|ty|ug|uk|ur|uz|ve|vi|vo|wa|wo|xh|yi|yo|za|zh|zh-cn|zu)(?:\\s*,\\s*(aa|ab|ae|af|ak|am|an|ar|as|av|ay|az|ba|be|bg|bh|bi|bm|bn|bo|br|bs|ca|ce|ch|co|cr|cs|cu|cv|cy|da|de|dv|dz|ee|el|en|eo|es|et|eu|fa|ff|fi|fj|fo|fr|fy|ga|gd|gl|gn|gu|gv|ha|he|hi|ho|hr|ht|hu|hy|hz|ia|id|ie|ig|ii|ik|io|is|it|iu|ja|jv|ka|kg|ki|kj|kk|kl|km|kn|ko|kr|ks|ku|kv|kw|ky|la|lb|lg|li|ln|lo|lt|lu|lv|mg|mh|mi|mk|ml|mn|mr|ms|mt|my|na|nb|nd|ne|ng|nl|nn|\"no\"|nr|nv|ny|oc|oj|om|or|os|pa|pi|pl|ps|pt|pt-br|qu|rm|rn|ro|ru|rw|sa|sc|sd|se|sg|si|sk|sl|sm|sn|so|sq|sr|ss|st|su|sv|sw|ta|te|tg|th|ti|tk|tl|tn|to|tr|ts|tt|tw|ty|ug|uk|ur|uz|ve|vi|vo|wa|wo|xh|yi|yo|za|zh|zh-cn|zu))*$"
262
+ },
263
+ "license": {
264
+ "description": "License type",
265
+ "type": "string",
266
+ "enum": [
267
+ "custom",
268
+ "other",
269
+ "llama2",
270
+ "apache-2.0",
271
+ "Llama 3.1 Community Licensed",
272
+ "MIT"
273
+ ]
274
+ },
275
+ "licenseDescription": {
276
+ "description": "Description of the license terms",
277
+ "type": "string"
278
+ },
279
+ "maas-finetuning": {
280
+ "description": "Whether MaaS fine-tuning is enabled. True means enabled, if disabled remove the key",
281
+ "type": "string",
282
+ "enum": ["True"]
283
+ },
284
+ "maas-finetuning-test": {
285
+ "description": "Used for testing maas-finetuning in INT. Remove the key if false",
286
+ "type": "string",
287
+ "enum": ["True"]
288
+ },
289
+ "maas-finetuning-deploy-regions": {
290
+ "description": "Regions where fine-tuned models can be deployed",
291
+ "items": {
292
+ "type": "string",
293
+ "enum": [
294
+ "eastus2",
295
+ "eastus",
296
+ "northcentralus",
297
+ "westus3",
298
+ "westus",
299
+ "southcentralus"
300
+ ]
301
+ },
302
+ "type": "array"
303
+ },
304
+ "maas-finetuning-offer": {
305
+ "description": "Whether MaaS fine-tuning offer is available. Remove tag if unavailable",
306
+ "type": "string",
307
+ "enum": ["True"]
308
+ },
309
+ "maas-finetuning-regions": {
310
+ "description": "Regions where fine-tuning is available as a comma-separated string",
311
+ "type": "string",
312
+ "pattern": "^(westus3|eastus2|eastus|southcentralus|northcentralus|westus)(?:\\s*,\\s*(westus3|eastus2|eastus|southcentralus|northcentralus|westus))*$"
313
+ },
314
+ "maas-inference": {
315
+ "description": "Whether MaaS inference is enabled. Remove the key if not supported",
316
+ "type": "string",
317
+ "enum": ["true"]
318
+ },
319
+ "maxOutputTokens": {
320
+ "description": "Maximum number of output tokens",
321
+ "type": "integer",
322
+ "minimum": 1
323
+ },
324
+ "model_specific_defaults": {
325
+ "description": "Model specific defaults",
326
+ "type": "object"
327
+ },
328
+ "modelCapabilities": {
329
+ "description": "Model capabilities (e.g., agents, assistants) as a comma-separated string",
330
+ "type": "string",
331
+ "pattern": "^(agents|assistants|routing|reasoning|streaming|tool-calling)(?:\\s*,\\s*(agents|assistants|routing|reasoning|streaming|tool-calling))*$"
332
+ },
333
+ "modelHash": {
334
+ "description": "Hash of the model",
335
+ "type": "string"
336
+ },
337
+ "notes": {
338
+ "description": "Reference to notes documentation",
339
+ "type": "string"
340
+ },
341
+ "outputModalities": {
342
+ "description": "Output modalities supported (e.g., text) as a comma-separated string",
343
+ "type": "string",
344
+ "pattern": "^(audio|csv|embeddings|image|json|pdf|text|video)(?:\\s*,\\s*(audio|csv|embeddings|image|json|pdf|text|video))*$"
345
+ },
346
+ "playgroundRateLimitTier": {
347
+ "description": "Rate limit tier for playground",
348
+ "type": "string",
349
+ "enum": ["high", "low", "custom", "embeddings"]
350
+ },
351
+ "SharedComputeCapacityEnabled": {
352
+ "description": "Whether shared compute capacity is enabled. An empty string means enabled. If not enabled remove the key",
353
+ "type": "string",
354
+ "enum": [""]
355
+ },
356
+ "summary": {
357
+ "description": "Brief description of the model",
358
+ "type": "string"
359
+ },
360
+ "task": {
361
+ "description": "Tasks supported by the model as a comma-separated string",
362
+ "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|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))*$"
364
+ },
365
+ "textContextWindow": {
366
+ "description": "Context window size",
367
+ "type": "integer",
368
+ "minimum": 1
369
+ },
370
+ "training_datasets": {
371
+ "description": "A description of the training datasets",
372
+ "type": "string"
373
+ },
374
+ "finetune_compute_allow_list": {
375
+ "description": "List of compute SKUs allowed for finetune with maap as a comma-separated string",
376
+ "type": "array",
377
+ "items": { "$ref": "#/definitions/skuEnum" }
378
+ },
379
+ "inference_compute_allow_list": {
380
+ "description": "List of compute SKUs allowed for inference as a comma-separated string",
381
+ "type": "array",
382
+ "items": { "$ref": "#/definitions/skuEnum" }
383
+ },
384
+ "evaluation_compute_allow_list": {
385
+ "description": "List of compute SKUs allowed for evaluation",
386
+ "type": "array",
387
+ "items": { "$ref": "#/definitions/skuEnum" }
388
+ },
389
+ "trainingDataDate": {
390
+ "description": "Training cutoff date",
391
+ "type": "string",
392
+ "pattern": "^(January|February|March|April|May|June|July|August|September|October|November|December)\\s+\\d{4}$"
393
+ },
394
+ "newNotes": {
395
+ "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'",
396
+ "type": "string"
397
+ },
398
+ "inference_environment_asset_id": {
399
+ "type": "string",
400
+ "pattern": "azureml://registries/([^/]+)/environments/([^/]+)/versions/([^/]+)"
401
+ },
402
+ "boolTag": {
403
+ "description": "For testing only!!!",
404
+ "type": "boolean"
405
+ },
406
+ "floatTag": {
407
+ "description": "For testing only!!!",
408
+ "type": "number"
409
+ },
410
+ "inlineTag": {
411
+ "description": "For testing only!!!",
412
+ "type": "string"
413
+ },
414
+ "intTag": {
415
+ "description": "For testing only!!!",
416
+ "type": "integer"
417
+ },
418
+ "featureFlags": {
419
+ "description": "Comma separated list of feature flags for the models to gate usage",
420
+ "type": "string",
421
+ "pattern": "^(OpenAI\\.(?:EAGatingTier|EnterpriseTier|1PGatingTier|OneVetGatingTier|1000CUGatingTier|computer-use-preview|Preview\\.202409)|OpenAITest)(?:\\s*,\\s*(OpenAI\\.(?:EAGatingTier|EnterpriseTier|1PGatingTier|OneVetGatingTier|1000CUGatingTier|computer-use-preview|Preview\\.202409)|OpenAITest))*$"
422
+ }
423
+ }
424
+ },
425
+ "version": {
426
+ "description": "Model version",
427
+ "oneOf": [{ "type": "string" }, { "type": "integer", "minimum": 1 }]
428
+ }
429
+ },
430
+ "required": ["$schema", "name", "path", "tags", "version"],
431
+ "definitions": {
432
+ "skuListDefinition": {
433
+ "type": "string",
434
+ "description": "A comma-separated list of valid SKUs with no duplicates",
435
+ "pattern": "^(Standard_(DS3_v2|NC12s_v3|NC16as_T4_v3|NC24ads_A100_v4|NC24rs_v3|NC24s_v3|NC40ads_H100_v5|NC48ads_A100_v4|NC4as_T4_v3|NC64as_T4_v3|NC6s_v3|NC80adis_H100_v5|NC8as_T4_v3|NC96ads_A100_v4|ND40rs_v2|ND96amsr_A100_v4|ND96asr_v4|ND96isr_H100_v5|DS12_v2|DS4_v2|DS5_v2|D16a_v4|D16as_v4|D32a_v4|D32as_v4|D48a_v4|D48as_v4|D64a_v4|D64as_v4|D8a_v4|D8as_v4|D96a_v4|D96as_v4|E16s_v3|E2s_v3|E32s_v3|E48s_v3|E4s_v3|E64s_v3|E8s_v3|F16s_v2|F32s_v2|F48s_v2|F4s_v2|F64s_v2|F72s_v2|F8s_v2|FX12mds|FX24mds|FX36mds|FX48mds|FX4mds|NV12s_v3|NV24s_v3|NV48s_v3))(?:\\s*,\\s*Standard_(DS3_v2|NC12s_v3|NC16as_T4_v3|NC24ads_A100_v4|NC24rs_v3|NC24s_v3|NC40ads_H100_v5|NC48ads_A100_v4|NC4as_T4_v3|NC64as_T4_v3|NC6s_v3|NC80adis_H100_v5|NC8as_T4_v3|NC96ads_A100_v4|ND40rs_v2|ND96amsr_A100_v4|ND96asr_v4|ND96isr_H100_v5|DS12_v2|DS4_v2|DS5_v2|D16a_v4|D16as_v4|D32a_v4|D32as_v4|D48a_v4|D48as_v4|D64a_v4|D64as_v4|D8a_v4|D8as_v4|D96a_v4|D96as_v4|E16s_v3|E2s_v3|E32s_v3|E48s_v3|E4s_v3|E64s_v3|E8s_v3|F16s_v2|F32s_v2|F48s_v2|F4s_v2|F64s_v2|F72s_v2|F8s_v2|FX12mds|FX24mds|FX36mds|FX48mds|FX4mds|NV12s_v3|NV24s_v3|NV48s_v3))*$"
436
+ },
437
+ "skuEnum": {
438
+ "enum": [
439
+ "Standard_DS3_v2",
440
+ "Standard_NC12s_v3",
441
+ "Standard_NC16as_T4_v3",
442
+ "Standard_NC24ads_A100_v4",
443
+ "Standard_NC24rs_v3",
444
+ "Standard_NC24s_v3",
445
+ "Standard_NC40ads_H100_v5",
446
+ "Standard_NC48ads_A100_v4",
447
+ "Standard_NC4as_T4_v3",
448
+ "Standard_NC64as_T4_v3",
449
+ "Standard_NC6s_v3",
450
+ "Standard_NC80adis_H100_v5",
451
+ "Standard_NC8as_T4_v3",
452
+ "Standard_NC96ads_A100_v4",
453
+ "Standard_ND40rs_v2",
454
+ "Standard_ND96amsr_A100_v4",
455
+ "Standard_ND96asr_v4",
456
+ "Standard_ND96isr_H100_v5",
457
+ "Standard_DS12_v2",
458
+ "Standard_DS4_v2",
459
+ "Standard_DS5_v2",
460
+ "Standard_D16a_v4",
461
+ "Standard_D16as_v4",
462
+ "Standard_D32a_v4",
463
+ "Standard_D32as_v4",
464
+ "Standard_D48a_v4",
465
+ "Standard_D48as_v4",
466
+ "Standard_D64a_v4",
467
+ "Standard_D64as_v4",
468
+ "Standard_D8a_v4",
469
+ "Standard_D8as_v4",
470
+ "Standard_D96a_v4",
471
+ "Standard_D96as_v4",
472
+ "Standard_E16s_v3",
473
+ "Standard_E2s_v3",
474
+ "Standard_E32s_v3",
475
+ "Standard_E48s_v3",
476
+ "Standard_E4s_v3",
477
+ "Standard_E64s_v3",
478
+ "Standard_E8s_v3",
479
+ "Standard_F16s_v2",
480
+ "Standard_F32s_v2",
481
+ "Standard_F48s_v2",
482
+ "Standard_F4s_v2",
483
+ "Standard_F64s_v2",
484
+ "Standard_F72s_v2",
485
+ "Standard_F8s_v2",
486
+ "Standard_FX12mds",
487
+ "Standard_FX24mds",
488
+ "Standard_FX36mds",
489
+ "Standard_FX48mds",
490
+ "Standard_FX4mds",
491
+ "Standard_NV12s_v3",
492
+ "Standard_NV24s_v3",
493
+ "Standard_NV48s_v3"
494
+ ]
495
+ },
496
+ "taskEnum": {
497
+ "type": "string",
498
+ "enum": [
499
+ "audio-analysis",
500
+ "audio-generation",
501
+ "automatic-speech-recognition",
502
+ "chat-completion",
503
+ "completions",
504
+ "content-filters",
505
+ "content-safety",
506
+ "conversational-ai",
507
+ "custom-extraction",
508
+ "data-generation",
509
+ "document-analysis",
510
+ "document-ingestion",
511
+ "document-translation",
512
+ "embeddings",
513
+ "face-detection",
514
+ "fill-mask",
515
+ "forecasting",
516
+ "image-analysis",
517
+ "image-classification",
518
+ "image-text-to-text",
519
+ "image-to-image",
520
+ "image-to-text",
521
+ "intelligent-content-processing",
522
+ "intelligent-document-processing",
523
+ "optical-character-recognition",
524
+ "protein-sequence-generation",
525
+ "protein-structure-prediction",
526
+ "responses",
527
+ "responsible-ai",
528
+ "summarization",
529
+ "text-analysis",
530
+ "text-analytics",
531
+ "text-classification",
532
+ "text-generation",
533
+ "text-to-image",
534
+ "text-to-speech",
535
+ "translation",
536
+ "speech-to-text",
537
+ "speech-translation",
538
+ "video-analysis",
539
+ "video-generation"
540
+ ]
541
+ },
542
+ "finetuningTasksListDefinition": {
543
+ "type": "string",
544
+ "description": "A comma-separated list of valid finetuning tasks with no duplicates",
545
+ "pattern": "^(automatic-speech-recognition|chat|chat-completion|completions|question-answering|speech-to-text|text-analysis|text-classification|text-generation|text-to-speech)(?:\\s*,\\s*(automatic-speech-recognition|chat|chat-completion|completions|question-answering|speech-to-text|text-analysis|text-classification|text-generation|text-to-speech))*$"
546
+ },
547
+ "finetuningTasksEnum": {
548
+ "type": "string",
549
+ "enum": [
550
+ "automatic-speech-recognition",
551
+ "chat",
552
+ "chat-completion",
553
+ "completions",
554
+ "question-answering",
555
+ "speech-to-text",
556
+ "text-analysis",
557
+ "text-classification",
558
+ "text-generation",
559
+ "text-to-speech"
560
+ ]
561
+ },
562
+ "keywordsEnum": {
563
+ "type": "string",
564
+ "enum": [
565
+ "Agents",
566
+ "Audio",
567
+ "Coding",
568
+ "Conversation",
569
+ "Instruction",
570
+ "Large context",
571
+ "Low latency",
572
+ "Multilingual",
573
+ "Multimodal",
574
+ "Multipurpose",
575
+ "RAG",
576
+ "Reasoning",
577
+ "Summarization",
578
+ "Translation",
579
+ "Understanding",
580
+ "Vision"
581
+ ]
582
+ },
583
+ "modalitiesEnum": {
584
+ "type": "string",
585
+ "enum": [
586
+ "audio",
587
+ "csv",
588
+ "embeddings",
589
+ "image",
590
+ "json",
591
+ "pdf",
592
+ "text",
593
+ "video"
594
+ ]
595
+ }
596
+ }
597
+ }
@@ -0,0 +1,8 @@
1
+ path:
2
+ container_name: your-container-name
3
+ container_path: your-container-path
4
+ storage_name: your-storage-name
5
+ type: azureblob
6
+ publish:
7
+ description: description.md
8
+ type: model-type # Options: custom_model, mlflow_model, triton_model
@@ -0,0 +1,3 @@
1
+ <!-- DO NOT CHANGE MARKDOWN HEADERS. IF CHANGED, MODEL CARD MAY BE REJECTED BY A REVIEWER -->
2
+
3
+ <!-- `notes.md` is highly recommended, but not required. It captures information about how your model is created. We highly recommend including this section to provide transparency for the customers. -->