Important
The Windows AI Addon for Electron is a Node.js native addon that provides access to the Windows AI APIs, enabling Electron applications to leverage Windows AI capabilities directly from JavaScript.
- Copilot+PC
- Windows 11 (using Windows Insider Preview build 26120.3073 (Dev and Beta Channels) or later)
- Node.js 18.x or later
- Visual Studio 2022 with C++ build tools
- Python 3.x
- Limited Access Feature Token for Phi Silica - Request a token using the LAF Access Token Request Form. Only needed if you wish to use the
GenerateResponseAsyncAPI.
See Windows AI API's Dependencies for more information on system requirements to run Windows AI API's and scripts to install required prerequisites.
Important
Verify your device is able to access Windows AI models by downloading the AI Dev Gallery app. Navigate to the "AI APIs" samples and ensure they can run on your device. If the samples are blocked, the AI models may be missing from your machine. You can manually request a download by selecting the "Request Model" button and following the directions within Windows Update settings.
This package depends on the @microsoft/winappcli package. Any electron app which uses this package must also take a dependency on @microsoft/winappcli and follow its installation and setup steps.
Let's walk through a simple tutorial of how to get started using @microsoft/windows-ai-electron. In this tutorial, we will create a simple Electron app that summarizes a block of text using Windows AI's Text Summarizer.
Create an electron app by following the getting started directions at Electron: Building you First App.
The instructions below follow the steps for adding @microsoft/windows-ai-electron to a standard Electron app. This module can also be added to Electron apps built using Electron Forge and other templates.
cd <your-electron-app>
npm i @microsoft/windows-ai-electronnpm i @microsoft/winappcli -DInitialize your project for calling Windows APIs. This will create an appxmanifest.xml, required assets, and make the Windows App SDK available for usage:
npx winapp initImportant
When you run npx winapp init, it generates a winapp.yaml file for managing SDK versions. Make sure the version of the Microsoft.WindowsAppSDK package is 1.8.xxxxx. If it's not, simply set the version to 1.8.251106002 and run npx winapp restore to ensure the proper dependencies are available for the project.
Add systemAIModels Capability in appxmanifest.xml for app to gain access to local models:
<Capabilities>
<rescap:Capability Name="systemAIModels" />
</Capabilities>Before your app can call the AI APIs, we need to make sure the electron process has identity as defined in you appxmanifest.xml. Add app identity to the Electron process for debugging:
npx winapp node add-electron-debug-identityImportant
There is a known issue with sparse packaging Electron applications which causes the app to crash on start or not render the web content. The issue has been fixed in Windows but has not yet fully propagated to all Windows devices. If you are seeing this issue after calling add-electron-debug-identity, you can disable sandboxing in your Electron app for debug purposes with the --no-sandbox flag. This issue does not affect full MSIX packaging.
In main.js or index.js:
const {
LanguageModel,
AIFeatureReadyResultState,
TextSummarizer,
LanguageModelResponseStatus,
} = require("@microsoft/windows-ai-electron");
const summarizeText = async () => {
try {
const readyResult = await LanguageModel.EnsureReadyAsync();
if (readyResult.Status !== AIFeatureReadyResultState.Success) {
console.log("AI not ready:", readyResult.ErrorDisplayText);
}
const model = await LanguageModel.CreateAsync();
const textSummarizer = new TextSummarizer(model);
const longText = `
Artificial intelligence (AI) is intelligence demonstrated by machines,
in contrast to the natural intelligence displayed by humans and animals.
Leading AI textbooks define the field as the study of "intelligent agents":
any device that perceives its environment and takes actions that maximize
its chance of successfully achieving its goals.
`;
const summarizationPromise = textSummarizer.SummarizeAsync(longText);
if (summarizationPromise.progress) {
summarizationPromise.progress((error, progressText) => {
console.log(progressText);
});
}
const result = await summarizationPromise;
if (result.Status === LanguageModelResponseStatus.Complete) {
console.log(result.Text);
} else {
console.log("Summarization failed with status:", result.Status);
}
} catch (error) {
console.error("Error:", error);
}
}Call summarizeText somewhere in your main.js or index.js.
Here's an example:
const createWindow = () => {
const win = new BrowserWindow({
width: 800,
height: 600,
autoHideMenuBar: true,
webPreferences: {
preload: __dirname + '/preload.js',
sandbox: false,
}
})
win.loadFile('index.html')
win.webContents.openDevTools();
+ summarizeText();
}npx electron .You should see the local model streaming the response to the console.
This package supports many of the API's within
For the full list of supported API's, see Supported API's.
If you have a request for additional API support, please file an issue.
For more examples on how to use @microsoft/windows-ai-electron within your Electron application, see the Usage Guide.
windows-ai-electron/
├── windows-ai-electron/
│ ├── windows-ai-electron.cc # Main addon entry point
│ ├── LanguageModelProjections.h # Language model & text skills APIs
│ ├── LanguageModelProjections.cpp
│ ├── ImagingProjections.h # Imaging APIs
│ ├── ImagingProjections.cpp
│ ├── ContentSeverity.h # Content safety APIs
│ ├── ContentSeverity.cpp
│ ├── LimitedAccessFeature.h # Limited Access Feature token APIs
│ ├── LimitedAccessFeature.cpp
│ ├── ProjectionHelper.h # Utility functions
│ ├── ProjectionHelper.cpp
│ └── binding.gyp # Build configuration
├── test-app/ # Sample Electron application
│ ├── main.js # Electron main process
│ ├── preload.js # Preload script for @microsoft/windows-ai-electron integration
│ ├── index.html # Sample UI for testing APIs
│ └── package.json # Sample app package configuration and dependencies
├── docs/ # Documentation files
├── scripts/ # Build scripts
│ ├── build-pkg.ps1 # PowerShell script for package building
│ └── get-build-number.ps1 # Script to retrieve build numbers
├── index.d.ts # TypeScript type definitions
├── index.js # Main module entry point and exports
└── package.json # Package configuration and dependencies
git clone https://github.com/microsoft/windows-ai-electron.gitcd <path to @microsoft/windows-ai-electron repo>
npm install
npx winapp restorenpm run build-allComplete Building the Package Locally steps above.
Install dependencies:
npm installInitialize Windows App Development CLI (select N to preserve dependency versions):
npx winapp init
npm run setup-debugnpm run startIf you make changes to the @microsoft/windows-ai-electron package and want to see your changes loaded into the sample app, make sure to re-build the addon before re-running test-app.
This project is licensed under the MIT License - see the LICENSE for details.
-
"AI not ready" or EnsureReadyAsync/GetReadyState return status AIFeatureReadyResultState::Failure(2): Ensure Windows 11 25H2+ (Windows Insider Preview) and Copilot+ PC requirements are met. Validate your device has Windows AI models installed and available by downloading the AI Dev Gallery app. Then navigate to the "AI APIs" samples and ensure they can run on your device. (see Prerequisites)
-
EnsureReadyAsync cancelled or failed: Ensure
appxmanifesthas thesystemAIModelscapability added (see Add Debug Identity + Capabilities to App) -
"Class Not Registered": Make sure you have correctly setup the
@microsoft/winappclipackage (see Add @microsoft/winappcli as a Dependency).- If the issue is still persisting:
- Delete
node_modules,yarn.lock, and.winapp - Run
npm cache clean --force - Run
npm install - Run
npx winapp restore - Run
npx winapp node add-electron-debug-identity
- Delete
- If the issue is still persisting:
-
App renders blank: You may need to disable sandboxing when running your Electron app on Windows. Then re-run
npx winapp node add-electron-debug-identity(see Add Debug Identity + Capabilities to App) -
"Can't find module: @microsoft/windows-ai-electron": Verify you have added the
@microsoft/windows-ai-electronpackage as a dependency to your application. -
Image file not found: You must use absolute file paths with proper Windows path separators.
-
Content moderation blocks: Adjust
ContentFilterOptionsseverity levels as appropriate. -
Memory issues: Always call
Close()orDispose()methods to clean up resources. -
GenerateResponseAsync calls are failing:
GenerateResponseAsyncuses a native API that is currently a Limited Access Feature. To request an unlock token, please use the LAF Access Token Request Form. To use this method, you must first callLimitedAccessFeature.TryUnlockToken. See Usage Guide for usage examples. -
See Windows AI API's Troubleshooting for more information on troubleshooting the native Windows AI API's.