You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/cognitive-services/openai/concepts/models.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Azure OpenAI models
2
+
title: Azure OpenAI Service models
3
3
titleSuffix: Azure OpenAI
4
4
description: Learn about the different models that are available in Azure OpenAI.
5
5
ms.service: cognitive-services
@@ -13,7 +13,7 @@ recommendations: false
13
13
keywords:
14
14
---
15
15
16
-
# Azure OpenAI models
16
+
# Azure OpenAI Service models
17
17
18
18
The service provides access to many different models, grouped by family and capability. A model family typically associates models by their intended task. The following table describes model families currently available in Azure OpenAI. Not all models are available in all regions currently. Please refer to the capability table at the bottom for a full breakdown.
Copy file name to clipboardExpand all lines: articles/cognitive-services/openai/concepts/understand-embeddings.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Azure OpenAI embeddings
2
+
title: Azure OpenAI Service embeddings
3
3
titleSuffix: Azure OpenAI - embeddings and cosine similarity
4
4
description: Learn more about Azure OpenAI embeddings API for document search and cosine similarity
5
5
services: cognitive-services
@@ -14,7 +14,7 @@ recommendations: false
14
14
ms.custom:
15
15
---
16
16
17
-
# Understanding embeddings in Azure OpenAI
17
+
# Understanding embeddings in Azure OpenAI Service
18
18
19
19
An embedding is a special format of data representation that can be easily utilized by machine learning models and algorithms. The embedding is an information dense representation of the semantic meaning of a piece of text. Each embedding is a vector of floating-point numbers, such that the distance between two embeddings in the vector space is correlated with semantic similarity between two inputs in the original format. For example, if two texts are similar, then their vector representations should also be similar.
Copy file name to clipboardExpand all lines: articles/cognitive-services/openai/encrypt-data-at-rest.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Azure OpenAI encryption of data at rest
2
+
title: Azure OpenAI Service encryption of data at rest
3
3
description: Learn how Azure OpenAI encrypts your data when it's persisted to the cloud.
4
4
titleSuffix: Azure Cognitive Services
5
5
author: mrbullwinkle
@@ -10,7 +10,7 @@ ms.date: 11/14/2022
10
10
ms.author: mbullwin
11
11
---
12
12
13
-
# Azure OpenAI encryption of data at rest
13
+
# Azure OpenAI Service encryption of data at rest
14
14
15
15
Azure OpenAI automatically encrypts your data when it's persisted to the cloud. The encryption protects your data and helps you meet your organizational security and compliance commitments. This article covers how Azure OpenAI handles encryption of data at rest, specifically training data and fine-tuned models. For information on how data provided by you to the service is processed, used, and stored, consult the [data, privacy, and security article](/legal/cognitive-services/openai/data-privacy?context=%2Fazure%2Fcognitive-services%2Fopenai%2Fcontext%2Fcontext).
Copy file name to clipboardExpand all lines: articles/cognitive-services/openai/how-to/business-continuity-disaster-recovery.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: 'Business Continuity and Disaster Recovery (BCDR) with Azure OpenAI'
2
+
title: 'Business Continuity and Disaster Recovery (BCDR) with Azure OpenAI Service'
3
3
titleSuffix: Azure OpenAI
4
4
description: Considerations for implementing Business Continuity and Disaster Recovery (BCDR) with Azure OpenAI
5
5
services: cognitive-services
@@ -15,9 +15,9 @@ keywords:
15
15
16
16
---
17
17
18
-
# Business Continuity and Disaster Recovery (BCDR) considerations with Azure OpenAI
18
+
# Business Continuity and Disaster Recovery (BCDR) considerations with Azure OpenAI Service
19
19
20
-
The Azure OpenAI service is available in two regions. Since subscription keys are region bound, when a customer acquires a key, they select the region in which their deployments will reside and from then on, all operations stay associated with that Azure server region.
20
+
Azure OpenAI is available in two regions. Since subscription keys are region bound, when a customer acquires a key, they select the region in which their deployments will reside and from then on, all operations stay associated with that Azure server region.
21
21
22
22
It's rare, but not impossible, to encounter a network issue that hits an entire region. If your service needs to always be available, then you should design it to either fail-over into another region or split the workload between two or more regions. Both approaches require at least two OpenAI resources in different regions. This article provides general recommendations for how to implement Business Continuity and Disaster Recovery (BCDR) for your Azure OpenAI applications.
Copy file name to clipboardExpand all lines: articles/cognitive-services/openai/how-to/completions.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: 'How to generate text with Azure OpenAI'
2
+
title: 'How to generate text with Azure OpenAI Service'
3
3
titleSuffix: Azure OpenAI
4
4
description: Learn how to generate or manipulate text, including code with Azure OpenAI
5
5
services: cognitive-services
@@ -19,7 +19,7 @@ keywords:
19
19
20
20
The completions endpoint can be used for a wide variety of tasks. It provides a simple but powerful text-in, text-out interface to any of our [models](../concepts/models.md). You input some text as a prompt, and the model will generate a text completion that attempts to match whatever context or pattern you gave it. For example, if you give the API the prompt, "As Descartes said, I think, therefore", it will return the completion " I am" with high probability.
21
21
22
-
The best way to start exploring completions is through our playground in the [Azure OpenAI Studio](https://oai.azure.com). It's a simple text box where you can submit a prompt to generate a completion. You can start with a simple example like the following:
22
+
The best way to start exploring completions is through our playground in [Azure OpenAI Studio](https://oai.azure.com). It's a simple text box where you can submit a prompt to generate a completion. You can start with a simple example like the following:
Copy file name to clipboardExpand all lines: articles/cognitive-services/openai/how-to/fine-tuning.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: 'How to customize a model with Azure OpenAI'
2
+
title: 'How to customize a model with Azure OpenAI Service'
3
3
titleSuffix: Azure OpenAI
4
4
description: Learn how to create your own customized model with Azure OpenAI
5
5
services: cognitive-services
@@ -16,7 +16,7 @@ keywords:
16
16
---
17
17
# Learn how to customize a model for your application
18
18
19
-
The Azure OpenAI Service lets you tailor our models to your personal datasets using a process known as *fine-tuning*. This customization step will let you get more out of the service by providing:
19
+
Azure OpenAI Service lets you tailor our models to your personal datasets using a process known as *fine-tuning*. This customization step will let you get more out of the service by providing:
20
20
21
21
- Higher quality results than what you can get just from prompt design
22
22
- The ability to train on more examples than can fit into a prompt
Copy file name to clipboardExpand all lines: articles/cognitive-services/openai/how-to/integrate-synapseml.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: 'How-to - Use Azure OpenAI with large datasets'
2
+
title: 'How-to - Use Azure OpenAI Service with large datasets'
3
3
titleSuffix: Azure OpenAI
4
4
description: Walkthrough on how to integrate Azure OpenAI with SynapseML and Apache Spark to apply large language models at a distributed scale.
5
5
services: cognitive-services
@@ -15,14 +15,14 @@ recommendations: false
15
15
16
16
# Use Azure OpenAI with large datasets
17
17
18
-
The Azure OpenAI service can be used to solve a large number of natural language tasks through prompting the completion API. To make it easier to scale your prompting workflows from a few examples to large datasets of examples, we have integrated the Azure OpenAI service with the distributed machine learning library [SynapseML](https://www.microsoft.com/research/blog/synapseml-a-simple-multilingual-and-massively-parallel-machine-learning-library/). This integration makes it easy to use the [Apache Spark](https://spark.apache.org/) distributed computing framework to process millions of prompts with the OpenAI service. This tutorial shows how to apply large language models at a distributed scale using Azure Open AI and Azure Synapse Analytics.
18
+
Azure OpenAI can be used to solve a large number of natural language tasks through prompting the completion API. To make it easier to scale your prompting workflows from a few examples to large datasets of examples, we have integrated the Azure OpenAI service with the distributed machine learning library [SynapseML](https://www.microsoft.com/research/blog/synapseml-a-simple-multilingual-and-massively-parallel-machine-learning-library/). This integration makes it easy to use the [Apache Spark](https://spark.apache.org/) distributed computing framework to process millions of prompts with the OpenAI service. This tutorial shows how to apply large language models at a distributed scale using Azure Open AI and Azure Synapse Analytics.
19
19
20
20
## Prerequisites
21
21
22
22
- An Azure subscription - <ahref="https://azure.microsoft.com/free/cognitive-services"target="_blank">Create one for free</a>
23
-
- Access granted to the Azure OpenAI service in the desired Azure subscription
23
+
- Access granted to Azure OpenAI in the desired Azure subscription
24
24
25
-
Currently, access to this service is granted only by application. You can apply for access to the Azure OpenAI service by completing the form at <ahref="https://aka.ms/oai/access"target="_blank">https://aka.ms/oai/access</a>. Open an issue on this repo to contact us if you have an issue.
25
+
Currently, access to this service is granted only by application. You can apply for access to Azure OpenAI by completing the form at <ahref="https://aka.ms/oai/access"target="_blank">https://aka.ms/oai/access</a>. Open an issue on this repo to contact us if you have an issue.
26
26
- An Azure OpenAI resource – [create a resource](create-resource.md?pivots=web-portal#create-a-resource)
27
27
- An Apache Spark cluster with SynapseML installed - create a serverless Apache Spark pool [here](../../../synapse-analytics/get-started-analyze-spark.md#create-a-serverless-apache-spark-pool)
28
28
@@ -39,15 +39,15 @@ The next step is to add this code into your Spark cluster. You can either create
39
39
40
40
## Fill in your service information
41
41
42
-
Next, edit the cell in the notebook to point to your service. In particular, set the `resource_name`, `deployment_name`, `location`, and `key` variables to the corresponding values for your Azure OpenAI service.
42
+
Next, edit the cell in the notebook to point to your service. In particular, set the `resource_name`, `deployment_name`, `location`, and `key` variables to the corresponding values for your Azure OpenAI resource.
43
43
44
44
> [!IMPORTANT]
45
45
> Remember to remove the key from your code when you're done, and never post it publicly. For production, use a secure way of storing and accessing your credentials like [Azure Key Vault](../../../key-vault/general/overview.md). See the Cognitive Services [security](../../cognitive-services-security.md) article for more information.
46
46
47
47
```python
48
48
import os
49
49
50
-
# Replace the following values with your Azure OpenAI service information
50
+
# Replace the following values with your Azure OpenAI resource information
51
51
resource_name ="RESOURCE_NAME"# The name of your Azure OpenAI resource.
52
52
deployment_name ="DEPLOYMENT_NAME"# The name of your Azure OpenAI deployment.
53
53
location ="RESOURCE_LOCATION"# The location or region ID for your resource.
The Azure OpenAI service can solve many different natural language tasks through [prompt engineering](completions.md). Here, we show an example of prompting for language translation:
178
+
Azure OpenAI can solve many different natural language tasks through [prompt engineering](completions.md). Here, we show an example of prompting for language translation:
0 commit comments