Skip to content

Commit 12f5659

Browse files
committed
fixing links/redirects
1 parent 49c815c commit 12f5659

File tree

8 files changed

+18
-12
lines changed

8 files changed

+18
-12
lines changed

articles/ai-foundry/.openpublishing.redirection.ai-studio.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -633,15 +633,20 @@
633633
"redirect_document_id": true
634634
},
635635
{
636-
"source_path_from_root": "/articles/ai-studio/index",
637-
"redirect_url": "/azure/ai-foundry/index",
636+
"source_path_from_root": "/articles/ai-studio/index.yml",
637+
"redirect_url": "/azure/ai-foundry/index.yml",
638638
"redirect_document_id": true
639639
},
640640
{
641-
"source_path_from_root": "/articles/ai-studio/faq.md",
642-
"redirect_url": "/azure/ai-foundry/faq",
641+
"source_path_from_root": "/articles/ai-studio/faq.yml",
642+
"redirect_url": "/azure/ai-foundry/faq.yml",
643643
"redirect_document_id": true
644644
},
645+
{
646+
"source_path_from_root": "/articles/ai-studio/context/context.yml",
647+
"redirect_url": "/azure/ai-foundry/context/context.yml",
648+
"redirect_document_id": true
649+
},
645650

646651
{
647652
"source_path_from_root": "/articles/ai-studio/responsible-use-of-ai-overview.md",

articles/ai-foundry/how-to/deploy-models-jamba.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ms.service: azure-ai-foundry
77
ms.topic: how-to
88
ms.date: 08/06/2024
99
ms.author: ssalgado
10+
author: ssalgadodev
1011
ms.reviewer: tgokal
1112
reviewer: tgokal
1213
ms.custom: references_regions, ignite-2024

articles/ai-foundry/model-inference/includes/use-chat-completions/csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ string dataUrl = $"data:image/{imageFormat};base64,{imageBase64}";
431431
432432
Visualize the image:
433433
434-
:::image type="content" source="../../../../ai-studio/media/how-to/sdks/small-language-models-chart-example.jpg" alt-text="A chart displaying the relative capabilities between large language models and small language models." lightbox="../../../../ai-studio/media/how-to/sdks/small-language-models-chart-example.jpg":::
434+
:::image type="content" source="../../../../ai-foundry/media/how-to/sdks/small-language-models-chart-example.jpg" alt-text="A chart displaying the relative capabilities between large language models and small language models." lightbox="../../../../ai-foundry/media/how-to/sdks/small-language-models-chart-example.jpg":::
435435
436436
Now, create a chat completion request with the image:
437437

articles/ai-foundry/model-inference/includes/use-chat-completions/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ To see this capability, download an image and encode the information as `base64`
153153

154154
Visualize the image:
155155

156-
:::image type="content" source="../../../../ai-studio/media/how-to/sdks/small-language-models-chart-example.jpg" alt-text="A chart displaying the relative capabilities between large language models and small language models." lightbox="../../../../ai-studio/media/how-to/sdks/small-language-models-chart-example.jpg":::
156+
:::image type="content" source="../../../../ai-foundry/media/how-to/sdks/small-language-models-chart-example.jpg" alt-text="A chart displaying the relative capabilities between large language models and small language models." lightbox="../../../../ai-foundry/media/how-to/sdks/small-language-models-chart-example.jpg":::
157157

158158
Now, create a chat completion request with the image:
159159

articles/ai-foundry/model-inference/includes/use-chat-completions/javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ img.src = data_url;
421421
document.body.appendChild(img);
422422
```
423423
424-
:::image type="content" source="../../../../ai-studio/media/how-to/sdks/small-language-models-chart-example.jpg" alt-text="A chart displaying the relative capabilities between large language models and small language models." lightbox="../../../../ai-studio/media/how-to/sdks/small-language-models-chart-example.jpg":::
424+
:::image type="content" source="../../../../ai-foundry/media/how-to/sdks/small-language-models-chart-example.jpg" alt-text="A chart displaying the relative capabilities between large language models and small language models." lightbox="../../../../ai-foundry/media/how-to/sdks/small-language-models-chart-example.jpg":::
425425
426426
Now, create a chat completion request with the image:
427427

articles/ai-foundry/model-inference/includes/use-chat-completions/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ import IPython.display as Disp
410410
Disp.Image(requests.get(image_url).content)
411411
```
412412

413-
:::image type="content" source="../../../../ai-studio/media/how-to/sdks/small-language-models-chart-example.jpg" alt-text="A chart displaying the relative capabilities between large language models and small language models." lightbox="../../../../ai-studio/media/how-to/sdks/small-language-models-chart-example.jpg":::
413+
:::image type="content" source="../../../../ai-foundry/media/how-to/sdks/small-language-models-chart-example.jpg" alt-text="A chart displaying the relative capabilities between large language models and small language models." lightbox="../../../../ai-foundry/media/how-to/sdks/small-language-models-chart-example.jpg":::
414414

415415
Now, create a chat completion request with the image:
416416

articles/ai-foundry/model-inference/includes/use-chat-completions/rest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,11 +553,11 @@ Some models can reason across text and images and generate text completions base
553553
To see this capability, download an image and encode the information as `base64` string. The resulting data should be inside of a [data URL](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URLs):
554554

555555
> [!TIP]
556-
> You will need to construct the data URL using a scripting or programming language. This tutorial use [this sample image](../../../../ai-studio/media/how-to/sdks/small-language-models-chart-example.jpg) in JPEG format. A data URL has a format as follows: `data:image/jpg;base64,0xABCDFGHIJKLMNOPQRSTUVWXYZ...`.
556+
> You will need to construct the data URL using a scripting or programming language. This tutorial use [this sample image](../../../../ai-foundry/media/how-to/sdks/small-language-models-chart-example.jpg) in JPEG format. A data URL has a format as follows: `data:image/jpg;base64,0xABCDFGHIJKLMNOPQRSTUVWXYZ...`.
557557
558558
Visualize the image:
559559

560-
:::image type="content" source="../../../../ai-studio/media/how-to/sdks/small-language-models-chart-example.jpg" alt-text="A chart displaying the relative capabilities between large language models and small language models." lightbox="../../../../ai-studio/media/how-to/sdks/small-language-models-chart-example.jpg":::
560+
:::image type="content" source="../../../../ai-foundry/media/how-to/sdks/small-language-models-chart-example.jpg" alt-text="A chart displaying the relative capabilities between large language models and small language models." lightbox="../../../../ai-foundry/media/how-to/sdks/small-language-models-chart-example.jpg":::
561561

562562
Now, create a chat completion request with the image:
563563

articles/ai-services/speech-service/includes/quickstarts/speech-to-text-basics/ai-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ In this quickstart, you try real-time speech to text in [Azure AI Foundry](https
2222
1. Go to your Azure AI Foundry project. If you need to create a project, see [Create an Azure AI Foundry project](../../../../../ai-studio/how-to/create-projects.md).
2323
1. Select **Playgrounds** from the left pane and then select a playground to use. In this example, select **Try the Speech playground**.
2424

25-
:::image type="content" source="../../../../../ai-studio/media/ai-services/playgrounds/azure-ai-services-playgrounds.png" alt-text="Screenshot of the project level playgrounds that you can use." lightbox="../../../../../ai-studio/media/ai-services/playgrounds/azure-ai-services-playgrounds.png":::
25+
:::image type="content" source="../../../../../ai-foundry/media/ai-services/playgrounds/azure-ai-services-playgrounds.png" alt-text="Screenshot of the project level playgrounds that you can use." lightbox="../../../../../ai-foundry/media/ai-services/playgrounds/azure-ai-services-playgrounds.png":::
2626

2727
1. Optionally, you can select a different connection to use in the playground. In the Speech playground, you can connect to Azure AI Services multi-service resources or Speech service resources.
2828

29-
:::image type="content" source="../../../../../ai-studio/media/ai-services/playgrounds/speech-playground.png" alt-text="Screenshot of the Speech playground in a project." lightbox="../../../../../ai-studio/media/ai-services/playgrounds/speech-playground.png":::
29+
:::image type="content" source="../../../../../ai-foundry/media/ai-services/playgrounds/speech-playground.png" alt-text="Screenshot of the Speech playground in a project." lightbox="../../../../../ai-foundry/media/ai-services/playgrounds/speech-playground.png":::
3030

3131
1. Select **Real-time transcription**.
3232
1. Select **Show advanced options** to configure speech to text options such as:

0 commit comments

Comments
 (0)