Files
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

2.7 KiB

Native-AOT Samples

This application demonstrates how to use the Semantic Kernel Native-AOT compatible API in a Native-AOT application.

Running Samples

The samples be run either in a debug mode by just setting a break point and pressing F5 in Visual Studio (make sure the AotCompatibility project is set as the startup project) in which case they are run in a regular CoreCLR application and not in Native-AOT one. This might be useful to understand how the API works and how to use it.

To run the samples in a Native-AOT application, first publish it using the following command: dotnet publish -r win-x64. Then, execute the application by running the following command in the terminal: .\bin\Release\net8.0\win-x64\publish\AotCompatibility.exe.

Samples

Most of the samples don't require any additional setup, and can be run as is. However, some of them might require additional configuration.

1. ONNX Chat Completion Service

To configure the sample, you need to download the ONNX model from the Hugging Face repository. Go to a directory of your choice where the model should be downloaded and run the following command:

git clone https://huggingface.co/microsoft/Phi-3-mini-4k-instruct-onnx

Important

The Phi-3 model may be too large to download using the git clone command unless you have the git-lfs extension installed. You might need to download it manually using the following link: Phi-3-Mini-4k CPU (approximately 2.7 GB).

After downloading the model, you need to configure the sample by setting the Onnx:ModelPath and Onnx:ModelId secrets. The Onnx:ModelPath should point to the directory where the model was downloaded, and the Onnx:ModelId should be set to phi-3. The secrets can be set using Secret Manager in the following way:

dotnet user-secrets set "Onnx:ModelId" "phi-3"
dotnet user-secrets set "Onnx:ModelPath" "C:\path\to\huggingface\Phi-3-mini-4k-instruct-onnx\cpu_and_mobile\cpu-int4-rtn-block-32" 

AOT Compatibility

At the moment, the following Semantic Kernel packages are AOT compatible:

Package AOT compatible
SemanticKernel.Abstractions ✔️
SemanticKernel.Core ✔️
Connectors.Onnx ✔️

Other packages are not AOT compatible yet, but we plan to make them compatible in the future.