Skip to content

Commit 111a4e0

Browse files
committed
Merge branch 'main' into release-blob-backup
2 parents ed580c6 + 1b4a996 commit 111a4e0

File tree

230 files changed

+766
-1472
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

230 files changed

+766
-1472
lines changed

articles/ai-services/language-service/conversational-language-understanding/concepts/best-practices.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,13 @@ If you require the learned component, make sure that *ticket quantity* is only r
7575

7676
## Addressing model inconsistencies
7777

78-
If your model is overly sensitive to small grammatical changes, like casing or diacritics, you can systematically manipulate your dataset directly in the Language Studio. To use these features, click on the Settings tab on the left toolbar and locate the **Advanced project settings** section. First, you can ***Enable data transformation for casing***, which normalizes the casing of utterances when training, testing, and implementing your model. If you've migrated from LUIS, you might recognize that LUIS did this normalization by default. To access this feature via the API, set the `"normalizeCasing"` parameter to `true`. See an example below:
78+
If your model is overly sensitive to small grammatical changes, like casing or diacritics, you can systematically manipulate your dataset directly in the Language Studio. To use these features, click on the Settings tab on the left toolbar and locate the **Advanced project settings** section.
79+
80+
:::image type="content" source="../media/advanced-project-settings.png" alt-text="A screenshot showing an example of the advanced project settings." lightbox="../media/advanced-project-settings.png":::
81+
82+
First, you can ***Enable data transformation for casing***, which normalizes the casing of utterances when training, testing, and implementing your model. If you've migrated from LUIS, you might recognize that LUIS did this normalization by default. To access this feature via the API, set the `"normalizeCasing"` parameter to `true`. See an example below:
83+
84+
7985

8086
```json
8187
{
13.6 KB
Loading
307 KB
Loading

articles/ai-services/language-service/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -801,6 +801,8 @@ items:
801801
href: tutorials/use-kubernetes-service.md
802802
- name: Use language in power automate flows
803803
href: tutorials/power-automate.md
804+
- name: Use language in prompt flow
805+
href: tutorials/prompt-flow.md
804806
- name: 🆕 Native document support
805807
items:
806808
- name: 🆕 Use native documents for language processing
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
---
2+
title: Use Language in Azure prompt flow
3+
description: Learn how to use Azure AI Language in prompt flow.
4+
author: jboback
5+
ms.author: jboback
6+
ms.service: azure-ai-language
7+
ms.topic: how-to
8+
ms.date: 07/09/2024
9+
---
10+
11+
# Use Language in Azure prompt flow
12+
13+
> [!IMPORTANT]
14+
> Some of the features described in this article might only be available in preview. This preview is provided without a service-level agreement, and we don't recommend it for production workloads. Certain features might not be supported or might have constrained capabilities. For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
15+
16+
[Prompt flow in Azure AI Studio](../../../ai-studio/how-to/prompt-flow.md) is a development tool designed to streamline the entire development cycle of AI applications powered by Large Language Models (LLMs). You can explore and quickly start to use and fine-tune various natural language processing capabilities from Azure AI Language, reducing your time to value and deploying solutions with reliable evaluation.
17+
18+
This tutorial teaches you how to use Language in prompt flow utilizing [Azure AI Studio](https://ai.azure.com).
19+
20+
## Prerequisites
21+
22+
- An Azure subscription - <a href="https://azure.microsoft.com/free/cognitive-services" target="_blank">Create one for free</a>.
23+
24+
- Access granted to Azure OpenAI in the desired Azure subscription.
25+
26+
Currently, access to this service is granted only by application. You can apply for access to Azure OpenAI by completing the form at <a href="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.
27+
28+
- You need an Azure AI Studio hub or permissions to create one. Your user role must be **Azure AI Developer**, **Contributor**, or **Owner** on the hub. For more information, see [hubs](../../../ai-studio/concepts/ai-resources.md) and [Azure AI roles](../../../ai-studio/concepts/rbac-ai-studio.md).
29+
- If your role is **Contributor** or **Owner**, you can [create a hub in this tutorial](#create-a-project-in-azure-ai-studio).
30+
- If your role is **Azure AI Developer**, the hub must already be created.
31+
32+
- Your subscription needs to be below your [quota limit](../../../ai-studio/how-to/quota.md) to deploy a new flow in this tutorial.
33+
34+
## Create a project in Azure AI Studio
35+
36+
Your project is used to organize your work and save state.
37+
38+
[!INCLUDE [Create project](../../../ai-studio/includes/create-projects.md)]
39+
40+
## Using Azure AI Language via the prompt flow gallery
41+
42+
You can create an Azure AI Language flow by either cloning the samples available in the gallery or creating a flow from scratch. If you already have flow files in local or file share, you can also import the files to create a flow. For the purposes of this tutorial we'll be using the prebuilt **Analyze Conversations** flow.
43+
44+
To create a prompt flow from the gallery in Azure AI Studio:
45+
46+
1. Sign in to Azure AI Studio and select your project.
47+
48+
1. From the collapsible left menu, select Prompt flow.
49+
50+
1. Select + Create.
51+
52+
1. Find the **Analyze Conversations** tile in the gallery and select *Clone*.
53+
54+
1. In the right sidebar, name the folder and click the **Clone** button.
55+
56+
1. After the process is complete, you'll be taken to the prompt flow wizard. Click **Start Compute Session** in the upper right hand corner to begin. The various parts of the wizard are out lined below:
57+
58+
:::image type="content" source="../media/prompt-flow/prompt-flow-wizard.png" alt-text="Screenshot of the prompt flow wizard page with each part of the tool numbered." lightbox="../media/prompt-flow/prompt-flow-wizard.png":::
59+
60+
1. A graph view of your flow.
61+
1. Files in your flow. Click the arrow to expand this section.
62+
1. Azure AI Language tools in the "More tools" dropdown menu, which you can add capabilities that you need for your flow. There are more tools that you can add from LLM, Prompt, and Python menu. This menu is only accessible after the compute session has started.
63+
1. Configure your output.
64+
1. Configure steps (or tools) in the flow.
65+
1. Run, evaluate, and deploy your flow.
66+
67+
1. Once you've configured everything to your liking, press the run button in the upper right hand corner.
68+
69+
## Related content
70+
71+
* [Azure AI Language homepage](https://aka.ms/azure-language)
72+
* [Azure AI Language product demo videos](https://aka.ms/language-videos)
73+
* [Explore Azure AI Language in Azure AI Studio](https://aka.ms/AzureAiLanguage)

articles/ai-services/openai/concepts/models.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure OpenAI
44
description: Learn about the different model capabilities that are available with Azure OpenAI.
55
ms.service: azure-ai-openai
66
ms.topic: conceptual
7-
ms.date: 07/08/2024
7+
ms.date: 07/18/2024
88
ms.custom: references_regions, build-2023, build-2023-dataai, refefences_regions
99
manager: nitinme
1010
author: mrbullwinkle #ChrisHMSFT
@@ -18,7 +18,7 @@ Azure OpenAI Service is powered by a diverse set of models with different capabi
1818

1919
| Models | Description |
2020
|--|--|
21-
| [GPT-4o & GPT-4 Turbo **NEW**](#gpt-4o-and-gpt-4-turbo) | The latest most capable Azure OpenAI models with multimodal versions, which can accept both text and images as input. |
21+
| [GPT-4o & GPT-4 Turbo](#gpt-4o-and-gpt-4-turbo) | The latest most capable Azure OpenAI models with multimodal versions, which can accept both text and images as input. |
2222
| [GPT-4](#gpt-4) | A set of models that improve on GPT-3.5 and can understand and generate natural language and code. |
2323
| [GPT-3.5](#gpt-35) | A set of models that improve on GPT-3 and can understand and generate natural language and code. |
2424
| [Embeddings](#embeddings-models) | A set of models that can convert text into numerical vector form to facilitate text similarity. |
@@ -28,7 +28,21 @@ Azure OpenAI Service is powered by a diverse set of models with different capabi
2828

2929
## GPT-4o and GPT-4 Turbo
3030

31-
GPT-4o is the latest model from OpenAI. GPT-4o integrates text and images in a single model, enabling it to handle multiple data types simultaneously. This multimodal approach enhances accuracy and responsiveness in human-computer interactions. GPT-4o matches GPT-4 Turbo in English text and coding tasks while offering superior performance in non-English languages and vision tasks, setting new benchmarks for AI capabilities.
31+
GPT-4o integrates text and images in a single model, enabling it to handle multiple data types simultaneously. This multimodal approach enhances accuracy and responsiveness in human-computer interactions. GPT-4o matches GPT-4 Turbo in English text and coding tasks while offering superior performance in non-English languages and vision tasks, setting new benchmarks for AI capabilities.
32+
33+
### Early access playground
34+
35+
Existing Azure OpenAI customers can test out the **NEW GPT-4o mini** model in the **Azure OpenAI Studio Early Access Playground (Preview)**.
36+
37+
To test the latest model:
38+
39+
> [!NOTE]
40+
> The GPT-4o mini early access playground is currently only available for resources in **West US3** and **East US**, and is limited to 10 requests every five minutes per subscription. Azure OpenAI content filters are enabled at the default configuration and cannot be modified. GPT-4o mini is a preview model and is currently not available for deployment/direct API access.
41+
42+
1. Navigate to Azure OpenAI Studio at https://oai.azure.com/ and sign-in with credentials that have access to your OpenAI resources.
43+
2. Select an Azure OpenAI resource in the **West US3** or **East US** regions. If you don't have a resource in one of these regions you will need to [create a resource](../how-to/create-resource.md).
44+
3. From the main [Azure OpenAI Studio](https://oai.azure.com/) page select the **Early Access Playground (Preview)** button from under the **Get started** section. (This button will only be visible when a resource in **West US3** or **East US** is selected.)
45+
4. Now you can start asking the model questions just as you would before in the existing [chat playground](../chatgpt-quickstart.md).
3246

3347
### How do I access the GPT-4o model?
3448

articles/ai-services/openai/whats-new.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.custom:
1010
- ignite-2023
1111
- references_regions
1212
ms.topic: whats-new
13-
ms.date: 07/09/2024
13+
ms.date: 07/18/2024
1414
recommendations: false
1515
---
1616

@@ -20,6 +20,16 @@ This article provides a summary of the latest releases and major documentation u
2020

2121
## July 2024
2222

23+
### GPT-4o mini preview model available for early access
24+
25+
GPT-4o mini is the latest model from OpenAI [launched on July 18, 2024](https://openai.com/index/gpt-4o-mini-advancing-cost-efficient-intelligence/).
26+
27+
From OpenAI:
28+
29+
*"GPT-4o mini surpasses GPT-3.5 Turbo and other small models on academic benchmarks across both textual intelligence and multimodal reasoning, and supports the same range of languages as GPT-4o. It also demonstrates strong performance in function calling, which can enable developers to build applications that fetch data or take actions with external systems, and improved long-context performance compared to GPT-3.5 Turbo."*
30+
31+
To start testing out the model today in Azure OpenAI, see the [**Azure OpenAI Studio early access playground**](./concepts/models.md#early-access-playground).
32+
2333
### New Responsible AI default content filtering policy
2434

2535
The new default content filtering policy `DefaultV2` delivers the latest safety and security mitigations for the GPT model series (text), including:

articles/aks/azure-linux-aks-partner-solutions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ titleSuffix: Azure Linux AKS Container Host partner solutions
44
description: Discover partner-tested solutions that enable you to build, test, deploy, manage, and monitor your AKS environment using Azure Linux Container Host.
55
ms.author: schaffererin
66
author: schaffererin
7-
ms.topic: article
7+
ms.service: azure-kubernetes-service
8+
ms.topic: conceptual
89
ms.custom: linux-related-content
910
ms.date: 06/13/2024
1011
---

articles/aks/dapr-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The Dapr extension supports stable versions of Dapr APIs (building blocks).
116116
| [**Secrets**][dapr-secrets] | Stable | Access secrets from your application code or reference secure values in your Dapr components. |
117117
| [**Configuration**][dapr-config] | Stable | Retrieve and subscribe to application configuration items for supported configuration. stores. |
118118

119-
[!INCLUDE [component-support](../../includes/dapr-in-azure/dapr-support-policy.md)]
119+
[!INCLUDE [component-support](~/reusable-content/ce-skilling/azure/includes/dapr-in-azure/dapr-support-policy.md)]
120120

121121
### Clouds/regions
122122

articles/aks/ha-dr-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ For more information, see the [**Recommended passive-cold failover solution over
190190

191191
AKS sets default limits and quotas for resources and features, including usage restrictions for certain VM SKUs.
192192

193-
[!INCLUDE [container-service-limits](../../includes/container-service-limits.md)]
193+
[!INCLUDE [container-service-limits](~/reusable-content/ce-skilling/azure/includes/container-service-limits.md)]
194194

195195
For more information, see [AKS service quotas and limits](./quotas-skus-regions.md#service-quotas-and-limits).
196196

0 commit comments

Comments
 (0)