File: sample_get_deployment_async.py

package info (click to toggle)
python-azure 20251104%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 770,224 kB
  • sloc: python: 6,357,217; ansic: 804; javascript: 287; makefile: 198; sh: 193; xml: 109
file content (75 lines) | stat: -rw-r--r-- 2,602 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# coding=utf-8
# ------------------------------------
# Copyright (c) Microsoft.
# Licensed under the MIT License.
# ------------------------------------

"""
FILE: sample_get_deployment_async.py
DESCRIPTION:
    This sample demonstrates how to get a **Text Authoring** deployment and print its details (async).
USAGE:
    python sample_get_deployment_async.py
REQUIRED ENV VARS (for AAD / DefaultAzureCredential):
    AZURE_TEXT_ENDPOINT
    AZURE_CLIENT_ID
    AZURE_TENANT_ID
    AZURE_CLIENT_SECRET
NOTE:
    If you want to use AzureKeyCredential instead, set:
      - AZURE_TEXT_ENDPOINT
      - AZURE_TEXT_KEY
OPTIONAL ENV VARS:
    PROJECT_NAME     # defaults to "<project-name>"
    DEPLOYMENT_NAME  # defaults to "<deployment-name>"
"""

# [START text_authoring_get_deployment_async]
import os
import asyncio
from azure.identity import DefaultAzureCredential
from azure.ai.textanalytics.authoring.aio import TextAuthoringClient


async def sample_get_deployment_async():
    # settings
    endpoint = os.environ["AZURE_TEXT_ENDPOINT"]
    project_name = os.environ.get("PROJECT_NAME", "<project-name>")
    deployment_name = os.environ.get("DEPLOYMENT_NAME", "<deployment-name>")

    # create a client with AAD
    credential = DefaultAzureCredential()
    async with TextAuthoringClient(endpoint, credential=credential) as client:
        # project-scoped client
        project_client = client.get_project_client(project_name)

        # get deployment
        deployment = await project_client.deployment.get_deployment(deployment_name=deployment_name)

        # print deployment details (direct attribute access; no getattr)
        print("=== Deployment Details ===")
        print(f"Deployment Name: {deployment.deployment_name}")
        print(f"Model Id: {deployment.model_id}")
        print(f"Last Trained On: {deployment.last_trained_on}")
        print(f"Last Deployed On: {deployment.last_deployed_on}")
        print(f"Deployment Expired On: {deployment.deployment_expired_on}")
        print(f"Model Training Config Version: {deployment.model_training_config_version}")

        # Assigned resources (if any)
        if deployment.assigned_resources:
            print("Assigned Resources:")
            for resource in deployment.assigned_resources:
                print(f"  Resource ID: {resource.resource_id}")
                print(f"  Region: {resource.region}")


# [END text_authoring_get_deployment_async]


async def main():
    await sample_get_deployment_async()


if __name__ == "__main__":
    loop = asyncio.get_event_loop()
    loop.run_until_complete(main())