azureml-registry-tools 0.1.0a25__tar.gz → 0.1.0a27__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 (43) hide show
  1. {azureml_registry_tools-0.1.0a25/azureml_registry_tools.egg-info → azureml_registry_tools-0.1.0a27}/PKG-INFO +1 -1
  2. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/data/model.schema.json +36 -1
  3. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27/azureml_registry_tools.egg-info}/PKG-INFO +1 -1
  4. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/setup.py +1 -1
  5. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/LICENSE.txt +0 -0
  6. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/MANIFEST.in +0 -0
  7. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/__init__.py +0 -0
  8. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/__init__.py +0 -0
  9. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/_cli/__init__.py +0 -0
  10. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/_cli/registry_syndication_cli.py +0 -0
  11. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/_cli/repo2registry_cli.py +0 -0
  12. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/_rest_client/__init__.py +0 -0
  13. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/_rest_client/arm_client.py +0 -0
  14. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/_rest_client/base_rest_client.py +0 -0
  15. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/_rest_client/registry_management_client.py +0 -0
  16. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/_rest_client/registry_model_client.py +0 -0
  17. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/data/__init__.py +0 -0
  18. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/data/asset.yaml.template +0 -0
  19. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/data/description.md.template +0 -0
  20. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/data/evaluation.md.template +0 -0
  21. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/data/model-variant.schema.json +0 -0
  22. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/data/model.yaml.template +0 -0
  23. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/data/notes.md.template +0 -0
  24. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/data/validate_model_schema.py +0 -0
  25. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/data/validate_model_variant_schema.py +0 -0
  26. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/mgmt/__init__.py +0 -0
  27. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/mgmt/asset_management.py +0 -0
  28. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/mgmt/create_asset_template.py +0 -0
  29. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/mgmt/create_manifest.py +0 -0
  30. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/mgmt/create_model_spec.py +0 -0
  31. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/mgmt/model_management.py +0 -0
  32. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/mgmt/syndication_manifest.py +0 -0
  33. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/tools/__init__.py +0 -0
  34. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/tools/config.py +0 -0
  35. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/tools/create_or_update_assets.py +0 -0
  36. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/tools/registry_utils.py +0 -0
  37. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml/registry/tools/repo2registry_config.py +0 -0
  38. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml_registry_tools.egg-info/SOURCES.txt +0 -0
  39. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml_registry_tools.egg-info/dependency_links.txt +0 -0
  40. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml_registry_tools.egg-info/entry_points.txt +0 -0
  41. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml_registry_tools.egg-info/requires.txt +0 -0
  42. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/azureml_registry_tools.egg-info/top_level.txt +0 -0
  43. {azureml_registry_tools-0.1.0a25 → azureml_registry_tools-0.1.0a27}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: azureml-registry-tools
3
- Version: 0.1.0a25
3
+ Version: 0.1.0a27
4
4
  Summary: AzureML Registry tools and CLI
5
5
  Author: Microsoft Corp
6
6
  License: https://aka.ms/azureml-sdk-license
@@ -272,6 +272,11 @@
272
272
  "type": "string",
273
273
  "enum": ["true"]
274
274
  },
275
+ "isCustomerInfoRequired": {
276
+ "description": "This will trigger a customer info form to be shown to the user before they can access the model",
277
+ "type": "string",
278
+ "enum": ["true", "false"]
279
+ },
275
280
  "keywords": {
276
281
  "description": "List of key words as a comma-separated string. Max 3 keywords",
277
282
  "type": "string",
@@ -299,6 +304,11 @@
299
304
  "type": "string",
300
305
  "format": "long-string"
301
306
  },
307
+ "fineTuningMethods": {
308
+ "description": "Fine-tuning strategy applied to customize the model behavior",
309
+ "type": "string",
310
+ "pattern": "^(Supervised|Direct Preference Optimization|Reinforcement)(?:\\s*,\\s*(Supervised|Direct Preference Optimization|Reinforcement))*$"
311
+ },
302
312
  "maas-finetuning": {
303
313
  "description": "Whether MaaS fine-tuning is enabled. True means enabled, if disabled remove the key",
304
314
  "type": "string",
@@ -385,7 +395,7 @@
385
395
  "task": {
386
396
  "description": "Tasks supported by the model as a comma-separated string",
387
397
  "type": "string",
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|Structure-Prediction|Genomics)(?:\\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|Structure-Prediction|Genomics))*$"
398
+ "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|Structure-Prediction|Genomics|biomolecular-complex-structure-prediction|structure-prediction|protein-folding)(?:\\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|Structure-Prediction|Genomics|biomolecular-complex-structure-prediction|structure-prediction|protein-folding))*$"
389
399
  },
390
400
  "textContextWindow": {
391
401
  "description": "Context window size",
@@ -449,6 +459,31 @@
449
459
  "model_flavor": {
450
460
  "description": "Model flavor identifier (e.g., pytorch, mlflow).",
451
461
  "type": "string"
462
+ },
463
+ "lifecycle": {
464
+ "description": "Lifecycle status",
465
+ "type": "string",
466
+ "pattern": "^(Generally available|Public preview)$"
467
+ },
468
+ "pricingLink": {
469
+ "description": "Pricing information link",
470
+ "type": "string",
471
+ "pattern": "^https?://.*"
472
+ },
473
+ "rateLimit": {
474
+ "description": "Rate limit details link",
475
+ "type": "string",
476
+ "pattern": "^https?://.*"
477
+ },
478
+ "supportedRegions": {
479
+ "description": "Supported regions link",
480
+ "type": "string",
481
+ "pattern": "^https?://.*"
482
+ },
483
+ "languagesSupported": {
484
+ "description": "Languages supported link",
485
+ "type": "string",
486
+ "pattern": "^https?://.*"
452
487
  }
453
488
  }
454
489
  },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: azureml-registry-tools
3
- Version: 0.1.0a25
3
+ Version: 0.1.0a27
4
4
  Summary: AzureML Registry tools and CLI
5
5
  Author: Microsoft Corp
6
6
  License: https://aka.ms/azureml-sdk-license
@@ -18,7 +18,7 @@ exclude_list = ["*.tests"]
18
18
 
19
19
  setup(
20
20
  name='azureml-registry-tools',
21
- version="0.1.0a25",
21
+ version="0.1.0a27",
22
22
  description='AzureML Registry tools and CLI',
23
23
  author='Microsoft Corp',
24
24
  license="https://aka.ms/azureml-sdk-license",