Skip to content

Commit 0119d26

Browse files
committed
get started AOAI
1 parent aee1db0 commit 0119d26

File tree

1 file changed

+20
-7
lines changed

1 file changed

+20
-7
lines changed

articles/ai-services/openai/overview.md

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,28 @@ Azure OpenAI Service provides REST API access to OpenAI's powerful language mode
2727
| Managed Identity| Yes, via Microsoft Entra ID |
2828
| UI experience | [Azure portal](https://portal.azure.com) for account & resource management, <br> [Azure AI Studio](https://ai.azure.com) for model exploration and fine-tuning |
2929
| Model regional availability | [Model availability](./concepts/models.md) |
30-
| Content filtering | Prompts and completions are evaluated against our content policy with automated systems. High severity content will be filtered. |
30+
| Content filtering | Prompts and completions are evaluated against our content policy with automated systems. High severity content is filtered. |
3131

3232
## Responsible AI
3333

3434
At Microsoft, we're committed to the advancement of AI driven by principles that put people first. Generative models such as the ones available in Azure OpenAI have significant potential benefits, but without careful design and thoughtful mitigations, such models have the potential to generate incorrect or even harmful content. Microsoft has made significant investments to help guard against abuse and unintended harm, which includes incorporating Microsoft’s <a href="https://www.microsoft.com/ai/responsible-ai?activetab=pivot1:primaryr6" target="_blank">principles for responsible AI use</a>, adopting a [Code of Conduct](/legal/cognitive-services/openai/code-of-conduct?context=/azure/ai-services/openai/context/context) for use of the service, building [content filters](/azure/ai-services/content-safety/overview) to support customers, and providing responsible AI [information and guidance](/legal/cognitive-services/openai/transparency-note?context=%2Fazure%2Fai-services%2Fopenai%2Fcontext%2Fcontext&tabs=image) that customers should consider when using Azure OpenAI.
3535

36-
## How do I get access to Azure OpenAI?
36+
## Get started with Azure OpenAI Service
3737

38-
A Limited Access registration form is not required to access most Azure OpenAI models. Learn more on the [Azure OpenAI Limited Access page](/legal/cognitive-services/openai/limited-access?context=/azure/ai-services/openai/context/context).
38+
To get started with Azure OpenAI Service, you need to create an Azure OpenAI Service resource in your Azure subscription.
39+
40+
Start with the [Create and deploy an Azure OpenAI Service resource](./how-to/create-resource.md) guide.
41+
1. You can create a resource via Azure portal, Azure CLI, or Azure PowerShell.
42+
1. When you have an Azure OpenAI Service resource, you can deploy a model such as GPT-4o.
43+
1. When you have a deployed model, you can:
44+
45+
- Try out the Azure AI Studio playgrounds to explore the capabilities of the models.
46+
- You can also just start making API calls to the service using the REST API or SDKs.
47+
48+
For example, you can try [real-time audio](./realtime-audio-quickstart.md) and [assistants](./assistants-quickstart.md) in the playgrounds or via code.
49+
50+
> [!NOTE]
51+
> A Limited Access registration form is required to access some Azure OpenAI Service models or features. Learn more on the [Azure OpenAI Limited Access page](/legal/cognitive-services/openai/limited-access?context=/azure/ai-services/openai/context/context).
3952
4053
## Comparing Azure OpenAI and OpenAI
4154

@@ -47,7 +60,7 @@ With Azure OpenAI, customers get the security capabilities of Microsoft Azure wh
4760

4861
### Prompts & completions
4962

50-
The completions endpoint is the core component of the API service. This API provides access to the model's text-in, text-out interface. Users simply need to provide an input **prompt** containing the English text command, and the model will generate a text **completion**.
63+
The completions endpoint is the core component of the API service. This API provides access to the model's text-in, text-out interface. Users simply need to provide an input **prompt** containing the English text command, and the model generates a text **completion**.
5164

5265
Here's an example of a simple prompt and completion:
5366

@@ -70,7 +83,7 @@ Here's an example of a simple prompt and completion:
7083

7184
Azure OpenAI processes text by breaking it down into tokens. Tokens can be words or just chunks of characters. For example, the word “hamburger” gets broken up into the tokens “ham”, “bur” and “ger”, while a short and common word like “pear” is a single token. Many tokens start with a whitespace, for example “ hello” and “ bye”.
7285

73-
The total number of tokens processed in a given request depends on the length of your input, output and request parameters. The quantity of tokens being processed will also affect your response latency and throughput for the models.
86+
The total number of tokens processed in a given request depends on the length of your input, output, and request parameters. The quantity of tokens being processed will also affect your response latency and throughput for the models.
7487

7588
#### Image tokens
7689

@@ -106,9 +119,9 @@ Once you create an Azure OpenAI Resource, you must deploy a model before you can
106119

107120
### Prompt engineering
108121

109-
The GPT-3, GPT-3.5 and GPT-4 models from OpenAI are prompt-based. With prompt-based models, the user interacts with the model by entering a text prompt, to which the model responds with a text completion. This completion is the model’s continuation of the input text.
122+
The GPT-3, GPT-3.5, and GPT-4 models from OpenAI are prompt-based. With prompt-based models, the user interacts with the model by entering a text prompt, to which the model responds with a text completion. This completion is the model’s continuation of the input text.
110123

111-
While these models are extremely powerful, their behavior is also very sensitive to the prompt. This makes [prompt engineering](./concepts/prompt-engineering.md) an important skill to develop.
124+
While these models are powerful, their behavior is also sensitive to the prompt. This makes [prompt engineering](./concepts/prompt-engineering.md) an important skill to develop.
112125

113126
Prompt construction can be difficult. In practice, the prompt acts to configure the model weights to complete the desired task, but it's more of an art than a science, often requiring experience and intuition to craft a successful prompt.
114127

0 commit comments

Comments
 (0)