Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This repository hosts samples for the [Windows App SDK](https://github.com/micro

### Artificial Intelligence

- [Windows AI sample](Samples/WindowsAIFoundry/cs-winui/): These samples demonstrate how to use the [Windows AI APIs](https://learn.microsoft.com/windows/ai/apis/), like Phi Silica, Text Extraction (OCR) and Imaging APIs.
- [Windows AI APIs](Samples/WindowsAIFoundry/cs-winui/): These samples demonstrate how to use the [Windows AI APIs](https://learn.microsoft.com/windows/ai/apis/), like Phi Silica, Text Extraction (OCR) and Imaging APIs.

- [Windows ML](Samples/WindowsML): These samples demonstrate running hardware-accelerated ONNX models (CPU, GPU, or NPU when available) on Windows using C++, C#, and Python. See the [Windows ML overview](https://learn.microsoft.com/windows/ai/new-windows-ml/overview).

Expand Down
12 changes: 6 additions & 6 deletions Samples/WindowsAIFoundry/cpp-console-sparse/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Using Windows AI Foundry in C++ with CMake
# Using Microsoft Foundry on Windows in C++ with CMake

This sample shows how to use Windows App SDK and the [Windows AI Foundry](https://developer.microsoft.com/windows/ai/)
This sample shows how to use Windows App SDK and the [Microsoft Foundry on Windows](https://developer.microsoft.com/windows/ai/)
APIs from a C++ app built using CMake. You can use the CMakeLists and vcpkg ports
it contains to build your own apps.

Expand All @@ -18,14 +18,14 @@ Topics and concepts in this example include:
> May 2025. We're working on making them "offcial."

> [!NOTE]
> Windows AI Foundry is currently an Experimental feature. Consult its license agreement to
> Microsoft Foundry on Windows is currently an Experimental feature. Consult its license agreement to
> see how you can use it. The APIs are subject to change. Your customers will not have the
> [Windows App SDK 1.8-experimental2](https://learn.microsoft.com/windows/apps/windows-app-sdk/experimental-channel#version-18-experimental-180-experimental2)
> framework package for production use.

## Building

You can build this project and change it to see examples of using the Windows AI Foundry
You can build this project and change it to see examples of using the Microsoft Foundry on Windows
features of Windows App SDK and Copilot+ PCs.

### Prerequisites
Expand Down Expand Up @@ -82,7 +82,7 @@ target_link_libraries(

### Packaging

Using Windows AI Foundry generative-AI APIs requires an app have package identity. The sample
Using Microsoft Foundry on Windows generative-AI APIs requires an app have package identity. The sample
has a simple [AppxManifest.xml](./AppxManifest.xml) providing identity and a reference to the
Windows App SDK:

Expand Down Expand Up @@ -164,7 +164,7 @@ generated. Any other parameters are treated as part of the story prompt.

### Using the Language Model

To use Windows AI Foundry Generative AI features, your app must ensure the model is available,
To use Microsoft Foundry on Windows Generative AI features, your app must ensure the model is available,
then create an instance of the model to use. Your customers' systems may not have the models yet,
and the `EnsureReadyAsync` method will acquire and install them for your app to use.

Expand Down