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
|
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
"""
FILE: chat_completions_aoai_quickstart.py
DESCRIPTION:
This sample demonstrates how to get started with Azure OpenAI Chat Completions using the official OpenAI SDK for Python.
USAGE:
python chat_completions_aoai_quickstart.py
Before running the sample:
pip install "openai" and "azure-identity"
Set the environment variables with your own values:
1) AZURE_OPENAI_ENDPOINT - the endpoint to your Azure OpenAI resource.
2) AZURE_OPENAI_CHAT_DEPLOYMENT - the deployment name you chose when deploying your model.
"""
# These lines are intentionally excluded from the sample code, we use them to configure any vars
# or to tweak usage in ways that keep samples looking consistent when rendered in docs and tools
import os
os.environ["AZURE_OPENAI_ENDPOINT"] = os.environ["AZ_OPENAI_ENDPOINT"]
def chat_completions_aoai_quickstart() -> None:
#[START chat_completions_aoai_quickstart]
import os
from openai import AzureOpenAI
from azure.identity import DefaultAzureCredential, get_bearer_token_provider
token_provider = get_bearer_token_provider(
DefaultAzureCredential(), "https://cognitiveservices.azure.com/.default"
)
client = AzureOpenAI(
azure_endpoint=os.environ["AZURE_OPENAI_ENDPOINT"],
azure_ad_token_provider=token_provider,
api_version=os.environ["API_VERSION_GA"],
)
response = client.chat.completions.create(
model=os.environ["AZURE_OPENAI_CHAT_DEPLOYMENT"],
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{
"role": "user",
"content": "Does Azure OpenAI support customer managed keys?",
},
{
"role": "assistant",
"content": "Yes, customer managed keys are supported by Azure OpenAI.",
},
{"role": "user", "content": "Do other Azure AI services support this too?"},
],
)
print(response.to_json())
#[END chat_completions_aoai_quickstart]
if __name__ == "__main__":
chat_completions_aoai_quickstart()
|