aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/azure/ai/ml/model_customization/__init__.py
blob: 3c35d28def45efa696f9f74924023d180b481e18 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# ---------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------

__path__ = __import__("pkgutil").extend_path(__path__, __name__)

from azure.ai.ml.entities._job.distillation.endpoint_request_settings import EndpointRequestSettings
from azure.ai.ml.entities._job.distillation.prompt_settings import PromptSettings
from azure.ai.ml.entities._job.distillation.teacher_model_settings import TeacherModelSettings

from ._distillation import distillation

__all__ = ["distillation", "EndpointRequestSettings", "PromptSettings", "TeacherModelSettings"]