Skip to content
Merged
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
4 changes: 2 additions & 2 deletions sdk/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ endif()
# -----------------------------
if(WIN32)

set(FL_CORE_VERSION "1.2.0" CACHE STRING "Microsoft.AI.Foundry.Local.Core NuGet version")
set(FL_CORE_VERSION "1.2.1" CACHE STRING "Microsoft.AI.Foundry.Local.Core NuGet version")
set(FL_ORT_VERSION "1.26.0" CACHE STRING "Microsoft.ML.OnnxRuntime.Foundry NuGet version")
set(FL_ORTGENAI_VERSION "0.14.0" CACHE STRING "Microsoft.ML.OnnxRuntimeGenAI.Foundry NuGet version")
set(FL_ORTGENAI_VERSION "0.14.1" CACHE STRING "Microsoft.ML.OnnxRuntimeGenAI.Foundry NuGet version")
set(FL_NATIVE_DEPS_DIR "${CMAKE_CURRENT_BINARY_DIR}/_native_deps")

function(fl_ensure_nuget_package PKG_NAME PKG_VERSION)
Expand Down
4 changes: 2 additions & 2 deletions sdk/cpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ This uses the `x64-debug` preset which:
- Resolves C++ dependencies via **vcpkg** (`nlohmann-json`, `ms-gsl`, `gtest`)
- Builds with the `x64-windows-static-md` triplet
- Auto-downloads native runtime DLLs via **NuGet**:
- `Microsoft.AI.Foundry.Local.Core` (1.2.0) — Foundry Local core runtime
- `Microsoft.AI.Foundry.Local.Core` (1.2.1) — Foundry Local core runtime
- `Microsoft.ML.OnnxRuntime.Foundry` (1.26.0) — ONNX Runtime
- `Microsoft.ML.OnnxRuntimeGenAI.Foundry` (0.14.0) — ONNX Runtime GenAI
- `Microsoft.ML.OnnxRuntimeGenAI.Foundry` (0.14.1) — ONNX Runtime GenAI

NuGet packages are cached in `out/build/<preset>/_native_deps/` and only downloaded on first configure. Runtime DLLs are automatically copied next to executables via post-build steps.

Expand Down
6 changes: 3 additions & 3 deletions sdk/deps_versions.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"foundry-local-core": {
"nuget": "1.2.0",
"python": "1.2.0"
"nuget": "1.2.1",
"python": "1.2.1"
},
"onnxruntime": {
"version": "1.26.0"
},
"onnxruntime-genai": {
"version": "0.14.0"
"version": "0.14.1"
}
}
6 changes: 3 additions & 3 deletions sdk/deps_versions_winml.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"foundry-local-core": {
"nuget": "1.2.0",
"python": "1.2.0"
"nuget": "1.2.1",
"python": "1.2.1"
},
"windows-ai-machinelearning": {
"version": "2.1.1"
Expand All @@ -10,6 +10,6 @@
"version": "1.26.0"
},
"onnxruntime-genai": {
"version": "0.14.0"
"version": "0.14.1"
}
}
4 changes: 2 additions & 2 deletions sdk/python/requirements-winml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ pydantic>=2.0.0
requests>=2.32.4
openai>=2.24.0
# WinML native binary packages from the ORT-Nightly PyPI feed.
foundry-local-core-winml==1.2.0
foundry-local-core-winml==1.2.1
onnxruntime-core==1.26.0
onnxruntime-genai-core==0.14.0
onnxruntime-genai-core==0.14.1
8 changes: 4 additions & 4 deletions sdk/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ openai>=2.24.0
# - Linux x86_64: onnxruntime-gpu / onnxruntime-genai-cuda (CUDA-enabled wheels).
# - Linux aarch64: onnxruntime / onnxruntime-genai (the CUDA variants do not ship aarch64 binaries).
# - Other platforms: onnxruntime-core / onnxruntime-genai-core (cross-platform variants).
foundry-local-core==1.2.0
foundry-local-core==1.2.1
onnxruntime-core==1.26.0; sys_platform != "linux"
onnxruntime-gpu==1.26.0; sys_platform == "linux" and platform_machine == "x86_64"
onnxruntime==1.26.0; sys_platform == "linux" and platform_machine == "aarch64"
onnxruntime-genai-core==0.14.0; sys_platform != "linux"
onnxruntime-genai-cuda==0.14.0; sys_platform == "linux" and platform_machine == "x86_64"
onnxruntime-genai==0.14.0; sys_platform == "linux" and platform_machine == "aarch64"
onnxruntime-genai-core==0.14.1; sys_platform != "linux"
onnxruntime-genai-cuda==0.14.1; sys_platform == "linux" and platform_machine == "x86_64"
onnxruntime-genai==0.14.1; sys_platform == "linux" and platform_machine == "aarch64"
Loading