Skip to content

Commit 953ea34

Browse files
authored
Merge pull request #5436 from MicrosoftDocs/main
6/9/2025 AM Publish
2 parents 6cab71c + bd7e0f6 commit 953ea34

File tree

6 files changed

+40
-12
lines changed

6 files changed

+40
-12
lines changed

articles/ai-foundry/foundry-local/get-started.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,33 @@ foundry cache --help
106106
> [!TIP]
107107
> For a complete guide to all CLI commands and their usage, see the [Foundry Local CLI Reference](reference/reference-cli.md).
108108
109+
## Upgrading Foundry Local
110+
111+
To upgrade Foundry Local to the latest version, use the following commands based on your operating system:
112+
113+
- **Windows**: Open a terminal and run:
114+
```bash
115+
winget upgrade --id Microsoft.FoundryLocal
116+
```
117+
- **macOS**: Open a terminal and run:
118+
```bash
119+
brew upgrade foundrylocal
120+
```
121+
122+
## Uninstalling Foundry Local
123+
124+
If you wish to uninstall Foundry Local, use the following commands based on your operating system:
125+
126+
- **Windows**: Open a terminal and run:
127+
```bash
128+
winget uninstall Microsoft.FoundryLocal
129+
```
130+
- **macOS**: Open a terminal and run:
131+
```bash
132+
brew rm foundrylocal
133+
brew untap microsoft/foundrylocal
134+
brew cleanup --scrub
135+
```
109136
110137
## Next steps
111138

articles/ai-foundry/foundry-local/reference/reference-cli.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,7 @@ The following table summarizes the commands related to managing and running mode
5252
| `foundry model info <model> --license` | Displays the license information for a specific model. |
5353
| `foundry model download <model>` | Downloads a model to the local cache without running it. |
5454
| `foundry model load <model>` | Loads a model into the service. |
55-
| `foundry model unload <model>` | Unloads a model from the service. **You must provide a valid model ID (not an alias).**. |
56-
57-
> [!IMPORTANT]
58-
> **For the `foundry model unload` command, you must provide a valid model ID (not an alias)** because you could have multiple models loaded with the same alias. For example, if you have `qwen2.5-0.5b-instruct-generic-cpu` *and*`qwen2.5-0.5b-instruct-cuda-gpu` loaded with both CPU and CUDA, you need to specify which one to unload.
55+
| `foundry model unload <model>` | Unloads a model from the service. |
5956

6057

6158
## Service commands
@@ -83,7 +80,4 @@ The following table summarizes the commands related to managing the local cache
8380
| `foundry cache location` | Displays the current cache directory. |
8481
| `foundry cache list` | Lists all models stored in the local cache. |
8582
| `foundry cache cd <path>` | Changes the cache directory. |
86-
| `foundry cache remove <model>` | Deletes a model from the local cache. **You must provide a valid model ID (not an alias).** |
87-
88-
> [!IMPORTANT]
89-
> **For the `foundry cache remove` command, you must provide a valid model ID (not an alias)** because you could have multiple models on disk with the same alias. For example, if you downloaded both `qwen2.5-0.5b-instruct-generic-cpu` *and* `qwen2.5-0.5b-instruct-cuda-gpu`, you need to specify which one to remove.
83+
| `foundry cache remove <model>` | Deletes a model from the local cache. |

articles/ai-foundry/what-is-azure-ai-foundry.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ This table summarizes features available in the two project types:
5858
| Capability | [!INCLUDE [fdp](includes/fdp-project-name.md)] | [!INCLUDE[hub](includes/hub-project-name.md)] |
5959
| --- | --- | --- |
6060
| Agents | ✅ (GA) | ✅ (Preview only) |
61-
| Azure OpenAI models | ✅ (Native support) | Available via connections |
61+
| Azure AI Foundry Models including Azure OpenAI models | ✅ (Native support) | Available via connections |
62+
| AI Foundry API to work with agents and across models| ✅ (Native support) | Available via connections |
6263
| Project files (directly upload files and start experimenting) || |
6364
| Project-level isolation of files and outputs |||
6465
| Evaluations |||

articles/ai-services/content-understanding/whats-new.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ This release introduces a new [classification API](concepts/classifier.md). This
5858
* Added support for face identification on extracted face thumbnails. The identity enhances the description and downstream tasks like search and retrieval. Learn more about [face detection in videos](video/overview.md#content-extraction---grouping-and-identification)
5959
* Added support for disabling face blurring in analyzer configuration. Learn more about [video processing improvements](video/overview.md#field-extraction--face-description).
6060

61+
* ### Improvements to audio processing
62+
63+
* Added additional locales for audio transcription. Learn more about [audio capabilities](audio/overview.md).
64+
* Added support for multilingual audio processing. Learn more about [language handling improvements in audio](audio/overview.md#language-handling).
65+
* Increased maximum supported file-size to ≤ 1 GB and length of ≤ 4 hours. Learn more about [audio service limits](service-limits.md).
66+
6167
### Face API
6268

6369
This release adds new face detection and recognition capabilities to Content Understanding. You can create a directory of faces and persons. The directory can be used to recognize the faces in the processed content. Learn more about [detecting and recognizing faces](face/overview.md).

articles/machine-learning/how-to-secure-kubernetes-online-endpoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,12 @@ TLS/SSL certificates expire and must be renewed. Typically, this happens every y
176176

177177
To disable TLS for a model deployed to Kubernetes:
178178

179-
1. Update the Azure Machine Learning extension with `allowInsercureconnection` set to `True`.
179+
1. Update the Azure Machine Learning extension with `allowInsecureConnections` set to `True`.
180180
1. Remove the `sslCname` configuration setting, along with the `sslSecret` or `sslPem` configuration settings.
181181
1. Run the following Azure CLI command in your Kubernetes cluster, and then perform an update. This command assumes that you're using AKS.
182182

183183
```azurecli
184-
az k8s-extension update --name <extension-name> --extension-type Microsoft.AzureML.Kubernetes --config enableInference=True inferenceRouterServiceType=LoadBalancer allowInsercureconnection=True --cluster-type managedClusters --cluster-name <your-AKS-cluster-name> --resource-group <your-RG-name> --scope cluster
184+
az k8s-extension update --name <extension-name> --extension-type Microsoft.AzureML.Kubernetes --config enableInference=True inferenceRouterServiceType=LoadBalancer allowInsecureConnections=True --cluster-type managedClusters --cluster-name <your-AKS-cluster-name> --resource-group <your-RG-name> --scope cluster
185185
```
186186

187187
> [!WARNING]

articles/search/samples-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Code samples from the Azure AI Search team demonstrate features and workflows. M
2828
|---------|---------|
2929
| [quickstart](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/Quickstart) | Source code for [Quickstart: Text search using REST](search-get-started-rest.md). This sample covers the basic workflow for creating, loading, and querying a search index using sample data. |
3030
| [quickstart-vectors](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/Quickstart-vectors) | Source code for [Quickstart: Vector search using REST APIs](search-get-started-vector.md). This sample covers the basic workflow for indexing and querying vector data. |
31-
| [quickstart-agentic-retrieval](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/agentic-retrieval) | Source code for the REST portion of [Quickstart: Run agentic retrieval in Azure AI Search](search-get-started-agentic-retrieval.md). This sample shows you how to create a knowledge agent in Azure AI Search to integrate LLM reasoning into query planning. |
31+
| [quickstart-agentic-retrieval](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/Quickstart-agentic-retrieval) | Source code for the REST portion of [Quickstart: Run agentic retrieval in Azure AI Search](search-get-started-agentic-retrieval.md). This sample shows you how to create a knowledge agent in Azure AI Search to integrate LLM reasoning into query planning. |
3232
| [skillset-tutorial](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/skillset-tutorial) | Source code for [Tutorial: Use REST and AI to generate searchable content from Azure blobs](cognitive-search-tutorial-blob.md). This sample shows you how to create a skillset that iterates over Azure blobs to extract information and infer structure.|
3333
| [skill examples](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/skill-examples) | Skillset examples in indexer pipelines that include indexes and indexers so that you can follow field mappings, output field mappings, and source paths. |
3434
| [debug-sessions](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/Debug-sessions) | Source code for [Tutorial: Diagnose, repair, and commit changes to your skillset](cognitive-search-tutorial-debug-sessions.md). This sample shows you how to use a skillset debug session in the Azure portal. REST is used to create the objects used during debug.|

0 commit comments

Comments
 (0)