Skip to content

Commit 06d2c74

Browse files
authored
Merge pull request #2385 from MicrosoftDocs/main
Publish to live, Sunday 4 AM PST, 1/19
2 parents 1d7cc3c + 996a72a commit 06d2c74

17 files changed

+37
-37
lines changed

articles/ai-studio/faq.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
ms.custom:
99
- build-2024
1010
ms.topic: faq
11-
ms.date: 5/21/2024
11+
ms.date: 01/17/2025
1212
ms.reviewer: sgilley
1313
ms.author: sgilley
1414
author: sdgilley
@@ -25,7 +25,7 @@ sections:
2525
- question: |
2626
How can customers access Azure AI Foundry?
2727
answer: |
28-
Customers can explore Azure AI Foundry unauthenticated - including its cutting-edge AI capabilities. When they're ready to begin using templates, tools, and the robust model catalog to stitch together their own AI solutions, they'll be prompted to register or sign in to their Azure account. During preview, there's no extra charge for using Azure AI Foundry. When deploying solutions, Azure AI services, Azure Machine Learning, and other Azure resources used inside of Azure AI Foundry will be billed at their existing rates. Pricing is subject to change when Azure AI Foundry is generally available.
28+
Customers can explore Azure AI Foundry unauthenticated - including its cutting-edge AI capabilities. When you're ready to begin using templates, tools, and the robust model catalog to stitch together your own AI solutions, you're prompted to register or sign in to your Azure account. Currently, there's no extra charge for using Azure AI Foundry. When deploying solutions, you're billed for the Azure AI services, Azure Machine Learning, and other Azure resources used inside of Azure AI Foundry at their existing rates.
2929
- question: |
3030
What regions is Azure AI Foundry available in?
3131
answer: |
@@ -37,23 +37,23 @@ sections:
3737
- question: |
3838
Can I use models other than ChatGPT in Azure AI Foundry portal?
3939
answer: |
40-
Yes. Azure AI Foundry includes a robust and growing catalog of frontier and open-source models from OpenAI, Hugging Face, Meta and more that can be applied over your data. You can even compare models by task using open-source datasets and evaluate the model with your own test data to see how the pre-trained model would perform to fit your own use case.
40+
Yes. Azure AI Foundry includes a robust and growing catalog of frontier and open-source models from OpenAI, Hugging Face, Meta, and more that can be applied over your data. You can even compare models by task using open-source datasets and evaluate the model with your own test data to see how the pretrained model would perform to fit your own use case.
4141
- question: |
4242
Will there be multiple varying model benchmarks in Azure AI Foundry portal based on individual projects and data sources?
4343
answer: |
4444
In the model benchmarks view, customers can view varying model benchmarks published by Azure AI.
4545
- question: |
4646
Is prompt flow Microsoft's equivalent to LangChain?
4747
answer: |
48-
Prompt flow is complementary to LangChain and Semantic Kernel and it can work with either. Prompt flow supports LLMOps for generative AI solutions, providing evaluation, connection management, and flow logic to help debug applications, manage deployment and monitor at scale.
48+
Prompt flow is complementary to LangChain and Semantic Kernel and it can work with either. Prompt flow supports LLMOps for generative AI solutions, providing evaluation, connection management, and flow logic to help debug applications, manage deployment, and monitor at scale.
4949
- question: |
5050
How is prompt injection handled, and how do we ensure no malicious code is running from prompt injection?
5151
answer: |
5252
Prompt templates in prompt flow provide robust examples and instructions for avoiding prompt injection attacks in the application. Azure AI Content Safety helps detect offensive or inappropriate content in text and images. Content moderation also checks for jailbreaks.
5353
- question: |
5454
What is the billing model for Model-as-a-Service (MaaS)?
5555
answer: |
56-
Azure AI Foundry offers paygo inference APIs and hosted fine-tuning for [Llama 2 family models](how-to/deploy-models-llama.md). During preview, there's no extra charge for Azure AI Foundry outside of typical AI services and other Azure resource charges.
56+
Azure AI Foundry offers pay-as-you-go inference APIs and hosted fine-tuning for [Llama 2 family models](how-to/deploy-models-llama.md). Currently, there's no extra charge for Azure AI Foundry outside of typical AI services and other Azure resource charges.
5757
- question: |
5858
Can all models be secured with content filtering?
5959
answer: |

articles/ai-studio/reference/reference-model-inference-api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Use the reference section to explore the API design and which parameters are ava
202202
__Request__
203203

204204
```HTTP/1.1
205-
POST /chat/completions?api-version=2024-04-01-preview
205+
POST /chat/completions?api-version=2024-05-01-preview
206206
Authorization: Bearer <bearer-token>
207207
Content-Type: application/json
208208
```
@@ -277,7 +277,7 @@ Console.WriteLine($"Response: {response.Value.Choices[0].Message.Content}");
277277
__Request__
278278

279279
```HTTP/1.1
280-
POST /chat/completions?api-version=2024-04-01-preview
280+
POST /chat/completions?api-version=2024-05-01-preview
281281
Authorization: Bearer <bearer-token>
282282
Content-Type: application/json
283283
extra-parameters: pass-through
@@ -411,7 +411,7 @@ catch (RequestFailedException ex)
411411
__Request__
412412

413413
```HTTP/1.1
414-
POST /chat/completions?api-version=2024-04-01-preview
414+
POST /chat/completions?api-version=2024-05-01-preview
415415
Authorization: Bearer <bearer-token>
416416
Content-Type: application/json
417417
```
@@ -552,7 +552,7 @@ catch (RequestFailedException ex)
552552
__Request__
553553

554554
```HTTP/1.1
555-
POST /chat/completions?api-version=2024-04-01-preview
555+
POST /chat/completions?api-version=2024-05-01-preview
556556
Authorization: Bearer <bearer-token>
557557
Content-Type: application/json
558558
```

articles/ai-studio/reference/reference-model-inference-chat-completions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.custom:
2121
Creates a model response for the given chat conversation.
2222

2323
```http
24-
POST /chat/completions?api-version=2024-04-01-preview
24+
POST /chat/completions?api-version=2024-05-01-preview
2525
```
2626

2727
## URI Parameters

articles/ai-studio/reference/reference-model-inference-embeddings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.custom:
2121
Creates an embedding vector representing the input text.
2222

2323
```http
24-
POST /embeddings?api-version=2024-04-01-preview
24+
POST /embeddings?api-version=2024-05-01-preview
2525
```
2626

2727
## URI Parameters

articles/ai-studio/reference/reference-model-inference-images-embeddings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.custom:
2121
Creates an embedding vector representing the input image and text pair.
2222

2323
```http
24-
POST /images/embeddings?api-version=2024-04-01-preview
24+
POST /images/embeddings?api-version=2024-05-01-preview
2525
```
2626

2727
## URI Parameters

articles/ai-studio/reference/reference-model-inference-info.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.custom:
2121
Returns the information about the model deployed under the endpoint.
2222

2323
```http
24-
GET /info?api-version=2024-04-01-preview
24+
GET /info?api-version=2024-05-01-preview
2525
```
2626

2727
## URI Parameters

articles/search/cognitive-search-create-custom-skill-example.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: gmndrg
66
ms.author: gimondra
77
ms.service: azure-ai-search
88
ms.topic: conceptual
9-
ms.date: 03/18/2024
9+
ms.date: 01/18/2025
1010
ms.custom:
1111
- devx-track-csharp
1212
- ignite-2023
@@ -308,7 +308,7 @@ namespace SampleSkills
308308
}
309309
```
310310

311-
Make sure to enter your own *key* value in the `key` constant based on the key you got when signing up for the Bing entity search API.
311+
Make sure to enter your own *key* value in the `key` constant based on the key you got when signing up for the Bing Entity search API.
312312

313313
## Test the function from Visual Studio
314314

articles/search/cognitive-search-custom-skill-scale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: azure-ai-search
99
ms.custom:
1010
- ignite-2023
1111
ms.topic: conceptual
12-
ms.date: 03/18/2024
12+
ms.date: 01/18/2025
1313
---
1414

1515
# Efficiently scale out a custom skill

articles/search/cognitive-search-incremental-indexing-conceptual.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: azure-ai-search
88
ms.custom:
99
- ignite-2023
1010
ms.topic: conceptual
11-
ms.date: 06/25/2024
11+
ms.date: 01/17/2025
1212
---
1313

1414
# Incremental enrichment and caching in Azure AI Search
@@ -40,7 +40,7 @@ The following example illustrates an indexer with caching enabled. See [Enable e
4040
To use the cache property, you can use 2020-06-30-preview or later when you [create or update an indexer](/rest/api/searchservice/indexers/create-or-update?view=rest-searchservice-2024-05-01-preview&preserve-view=true). We recommend the latest preview API.
4141

4242
```json
43-
POST https://[search service name].search.windows.net/indexers?api-version=2024-05-01-rreview
43+
POST https://[YOUR-SEARCH-SERVICE-NAME].search.windows.net/indexers?api-version=2024-05-01-preview
4444
{
4545
"name": "myIndexerName",
4646
"targetIndexName": "myIndex",

articles/search/cognitive-search-tutorial-blob-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: nitinme
99

1010
ms.service: azure-ai-search
1111
ms.topic: tutorial
12-
ms.date: 03/06/2024
12+
ms.date: 01/17/2025
1313
ms.custom:
1414
- devx-track-csharp
1515
- devx-track-dotnet

0 commit comments

Comments
 (0)