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 .pipelines/templates/build-python-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ steps:
}

- ${{ if eq(parameters.isWinML, true) }}:
- script: pip install onnxruntime-core==1.23.2.3 onnxruntime-genai-core==0.12.1
- script: pip install onnxruntime-core==1.23.2.3 onnxruntime-genai-core==0.13.1
displayName: 'Install ORT native packages (WinML)'
- ${{ else }}:
- script: pip install onnxruntime-core==1.24.3 onnxruntime-genai-core==0.12.1
- script: pip install onnxruntime-core==1.24.4 onnxruntime-genai-core==0.13.1
displayName: 'Install ORT native packages'

- script: pip install "pydantic>=2.0.0" "requests>=2.32.4" "openai>=2.24.0"
Expand Down
4 changes: 2 additions & 2 deletions .pipelines/templates/test-python-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ steps:
}

- ${{ if eq(parameters.isWinML, true) }}:
- script: pip install onnxruntime-core==1.23.2.3 onnxruntime-genai-core==0.12.1
- script: pip install onnxruntime-core==1.23.2.3 onnxruntime-genai-core==0.13.1
displayName: 'Install ORT native packages (WinML)'
- ${{ else }}:
- script: pip install onnxruntime-core==1.24.3 onnxruntime-genai-core==0.12.1
- script: pip install onnxruntime-core==1.24.4 onnxruntime-genai-core==0.13.1
displayName: 'Install ORT native packages'

- script: pip install "pydantic>=2.0.0" "requests>=2.32.4" "openai>=2.24.0"
Expand Down
2 changes: 1 addition & 1 deletion sdk/js/script/install-standard.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const { NUGET_FEED, ORT_NIGHTLY_FEED, runInstall } = require('./install-utils.cj
const ARTIFACTS = [
{ name: 'Microsoft.AI.Foundry.Local.Core', version: '0.9.0-dev-202603310538-f6efa8d3', feed: ORT_NIGHTLY_FEED },
{ name: os.platform() === 'linux' ? 'Microsoft.ML.OnnxRuntime.Gpu.Linux' : 'Microsoft.ML.OnnxRuntime.Foundry', version: '1.24.4', feed: NUGET_FEED },
{ name: 'Microsoft.ML.OnnxRuntimeGenAI.Foundry', version: '0.13.0', feed: NUGET_FEED },
{ name: 'Microsoft.ML.OnnxRuntimeGenAI.Foundry', version: '0.13.1', feed: NUGET_FEED },
];

(async () => {
Expand Down
2 changes: 1 addition & 1 deletion sdk/js/script/install-winml.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const binDir = path.join(sdkRoot, 'node_modules', '@foundry-local-core', platfor
const ARTIFACTS = [
{ name: 'Microsoft.AI.Foundry.Local.Core.WinML', version: '0.9.0-dev-202603310538-f6efa8d3', feed: ORT_NIGHTLY_FEED },
{ name: 'Microsoft.ML.OnnxRuntime.Foundry', version: '1.23.2.3', feed: NUGET_FEED },
{ name: 'Microsoft.ML.OnnxRuntimeGenAI.Foundry', version: '0.13.0', feed: NUGET_FEED },
{ name: 'Microsoft.ML.OnnxRuntimeGenAI.Foundry', version: '0.13.1', feed: NUGET_FEED },
];

(async () => {
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements-winml.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ openai>=2.24.0
# WinML native binary packages from the ORT-Nightly PyPI feed.
foundry-local-core-winml==1.0.0rc1
onnxruntime-core==1.23.2.3
onnxruntime-genai-core==0.13.0
onnxruntime-genai-core==0.13.1
Comment thread
baijumeswani marked this conversation as resolved.
4 changes: 2 additions & 2 deletions sdk/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ openai>=2.24.0
foundry-local-core==1.0.0rc1
onnxruntime-core==1.24.4; sys_platform != "linux"
onnxruntime-gpu==1.24.4; sys_platform == "linux"
onnxruntime-genai-core==0.13.0; sys_platform != "linux"
onnxruntime-genai-cuda==0.13.0; sys_platform == "linux"
onnxruntime-genai-core==0.13.1; sys_platform != "linux"
onnxruntime-genai-cuda==0.13.1; sys_platform == "linux"
Comment thread
baijumeswani marked this conversation as resolved.
2 changes: 1 addition & 1 deletion sdk/rust/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const ORT_NIGHTLY_FEED: &str =

const CORE_VERSION: &str = "0.9.0.8-rc3";
const ORT_VERSION: &str = "1.24.4";
const GENAI_VERSION: &str = "0.13.0";
const GENAI_VERSION: &str = "0.13.1";

const WINML_ORT_VERSION: &str = "1.23.2.3";

Expand Down
Loading