Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export InputTypes from constants #35848

Merged
merged 2 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sdk/ml/azure-ai-ml/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Features Added

### Bugs Fixed
- InputTypes exported in constants module

### Breaking Changes

Expand Down
3 changes: 2 additions & 1 deletion sdk/ml/azure-ai-ml/azure/ai/ml/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from azure.ai.ml._restclient.v2023_10_01.models import ListViewType

from ._assets import IPProtectionLevel
from ._common import AssetTypes, InputOutputModes, ModelType, Scope, TimeZone, WorkspaceKind
from ._common import AssetTypes, InputTypes, InputOutputModes, ModelType, Scope, TimeZone, WorkspaceKind
from ._component import ParallelTaskType
from ._deployment import BatchDeploymentOutputAction
from ._job import (
Expand Down Expand Up @@ -40,6 +40,7 @@
"JobType",
"ParallelTaskType",
"AssetTypes",
"InputTypes",
"InputOutputModes",
"DistributionType",
"TimeZone",
Expand Down