You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace relative paths (../../../ai/...) with absolute learn.microsoft.com
URLs — the Windows AI docs live in a separate repo (windows-ai-docs-pr)
and cannot be reached via relative file links.
Also fix:
- foundry-local/overview.md -> foundry-local/get-started (file doesn't exist)
- foundry-local/tutorial-windows-app.md -> foundry-local/get-started
- /windows/ai/apis/lora -> /windows/ai/apis/phi-silica-lora (correct path)
Co-authored-by: Copilot <[email protected]>
Copy file name to clipboardExpand all lines: hub/apps/get-started/ai-build.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ You've built a complete WinUI 3 notes app using:
132
132
133
133
## Optional: Add on-device AI to your app
134
134
135
-
The notes app is fully functional — but you can take it further by adding an AI feature that runs entirely on the user's device. [Foundry Local](../../../ai/foundry-local/overview.md) makes this straightforward: it runs a language model locally and exposes an OpenAI-compatible API.
135
+
The notes app is fully functional — but you can take it further by adding an AI feature that runs entirely on the user's device. [Foundry Local](https://learn.microsoft.com/windows/ai/foundry-local/get-started) makes this straightforward: it runs a language model locally and exposes an OpenAI-compatible API.
136
136
137
137
### Install Foundry Local and download a model
138
138
@@ -171,16 +171,16 @@ var completion = await client.GetChatClient("phi-4-mini")
171
171
No internet connection required. No API key. The model runs on their PC — fast, private, and free.
172
172
173
173
> [!TIP]
174
-
> For apps targeting Copilot+ PCs, you can swap Foundry Local for [Phi Silica](../../../ai/apis/phi-silica.md) to use the NPU directly for even faster inference. The API surface is different (Windows AI APIs rather than OpenAI-compatible), but Copilot can help you make the switch.
174
+
> For apps targeting Copilot+ PCs, you can swap Foundry Local for [Phi Silica](https://learn.microsoft.com/windows/ai/apis/phi-silica) to use the NPU directly for even faster inference. The API surface is different (Windows AI APIs rather than OpenAI-compatible), but Copilot can help you make the switch.
175
175
176
176
---
177
177
178
178
> [!div class="nextstepaction"]
179
179
> [Modernize or port a Windows app with Copilot](../windows-app-sdk/migrate-to-windows-app-sdk/ai-modernize.md)
180
180
181
181
-[Agentic AI tools for Windows development](../dev-tools/agentic-tools.md)
182
-
-[Foundry Local overview](../../../ai/foundry-local/overview.md) — run any model locally on Windows
183
-
-[Phi Silica](../../../ai/apis/phi-silica.md) — NPU-accelerated inference on Copilot+ PCs
182
+
-[Foundry Local overview](https://learn.microsoft.com/windows/ai/foundry-local/get-started) — run any model locally on Windows
183
+
-[Phi Silica](https://learn.microsoft.com/windows/ai/apis/phi-silica) — NPU-accelerated inference on Copilot+ PCs
184
184
-[Windows AI APIs overview](/windows/ai/)
185
185
-[Windows App Development CLI (winapp CLI)](../dev-tools/winapp-cli/index.md)
Copy file name to clipboardExpand all lines: hub/apps/get-started/ai-for-windows-developers.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Windows is where AI development is happening — both for developers writing app
16
16
This article covers both: the AI coding tools that help you build Windows apps faster, and the Windows AI stack that lets you put intelligence directly into your app. When you're ready, follow the links to set up your environment and start building.
17
17
18
18
> [!TIP]
19
-
> **New to Windows development?** Windows has the deepest local AI stack of any platform: [Foundry Local](../../../ai/foundry-local/overview.md) runs state-of-the-art models on any hardware, [Phi Silica](../../../ai/apis/phi-silica.md) uses the NPU on Copilot+ PCs for near-instant inference, and the full [Windows AI API surface](/windows/ai/) is available to any packaged app. If you're coming from Linux or macOS, Windows Subsystem for Linux (WSL) and the GitHub Copilot CLI Terminal mean you don't have to give up your existing workflow to get started.
19
+
> **New to Windows development?** Windows has the deepest local AI stack of any platform: [Foundry Local](https://learn.microsoft.com/windows/ai/foundry-local/get-started) runs state-of-the-art models on any hardware, [Phi Silica](https://learn.microsoft.com/windows/ai/apis/phi-silica) uses the NPU on Copilot+ PCs for near-instant inference, and the full [Windows AI API surface](/windows/ai/) is available to any packaged app. If you're coming from Linux or macOS, Windows Subsystem for Linux (WSL) and the GitHub Copilot CLI Terminal mean you don't have to give up your existing workflow to get started.
20
20
21
21
## Two ways AI changes Windows development
22
22
@@ -95,7 +95,7 @@ The Windows AI stack lets you ship AI features directly in your app — with har
95
95
96
96
### Foundry Local
97
97
98
-
[Foundry Local](../../../ai/foundry-local/overview.md) runs large language models locally on any Windows PC. It exposes an OpenAI-compatible REST API, so you can use your existing AI code against local models with no rewrite. Foundry Local is the recommended starting point for adding AI to a Windows app — it works on any hardware, requires no Azure subscription, and keeps user data on-device.
98
+
[Foundry Local](https://learn.microsoft.com/windows/ai/foundry-local/get-started) runs large language models locally on any Windows PC. It exposes an OpenAI-compatible REST API, so you can use your existing AI code against local models with no rewrite. Foundry Local is the recommended starting point for adding AI to a Windows app — it works on any hardware, requires no Azure subscription, and keeps user data on-device.
99
99
100
100
```bash
101
101
winget install Microsoft.AIFoundry.Local
@@ -106,7 +106,7 @@ After the model starts, call it from your app using the OpenAI-compatible endpoi
106
106
107
107
### Phi Silica
108
108
109
-
[Phi Silica](../../../ai/apis/phi-silica.md) is a compact, highly capable model built into Windows 11 on Copilot+ PCs. It runs entirely on the NPU — no GPU, no cloud, near-instant inference. If your app targets Copilot+ PCs, Phi Silica is the fastest local AI option available.
109
+
[Phi Silica](https://learn.microsoft.com/windows/ai/apis/phi-silica) is a compact, highly capable model built into Windows 11 on Copilot+ PCs. It runs entirely on the NPU — no GPU, no cloud, near-instant inference. If your app targets Copilot+ PCs, Phi Silica is the fastest local AI option available.
110
110
111
111
> [!NOTE]
112
112
> Phi Silica requires a Copilot+ PC (with NPU, 40+ TOPS). For apps targeting all Windows hardware, use Foundry Local with a fallback to cloud APIs.
@@ -118,7 +118,7 @@ Beyond language models, Windows exposes a rich set of AI-powered APIs that any p
118
118
-**Text recognition** — [Windows.Media.Ocr](/uwp/api/windows.media.ocr) for on-device OCR
-**Image analysis** — vision features via Windows Vision Skills
121
-
-**LoRA fine-tuning** — adapt Phi Silica to your domain with [LoRA support](/windows/ai/apis/lora)
121
+
-**LoRA fine-tuning** — adapt Phi Silica to your domain with [LoRA support](/windows/ai/apis/phi-silica-lora)
122
122
123
123
All of these run on-device, require no cloud subscription, and become available to your app once you have package identity (which [winapp CLI](../dev-tools/winapp-cli/index.md) can add to any framework).
124
124
@@ -132,7 +132,7 @@ All of these run on-device, require no cloud subscription, and become available
132
132
Or jump straight to:
133
133
134
134
-[Tutorial: Build a Windows app with GitHub Copilot](ai-build.md)
135
-
-[Tutorial: Add on-device AI to a Windows app](../../../ai/foundry-local/tutorial-windows-app.md)
135
+
-[Get started with Foundry Local](https://learn.microsoft.com/windows/ai/foundry-local/get-started)
136
136
-[Modernize or port a Windows app with Copilot](../windows-app-sdk/migrate-to-windows-app-sdk/ai-modernize.md)
137
137
-[Agentic AI tools for Windows development](../dev-tools/agentic-tools.md)
0 commit comments