Skip to content

Commit d1cf434

Browse files
authored
Update ort-genai to 0.13.1 (#606)
1 parent a5bae06 commit d1cf434

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.pipelines/templates/build-python-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ steps:
104104
}
105105
106106
- ${{ if eq(parameters.isWinML, true) }}:
107-
- script: pip install onnxruntime-core==1.23.2.3 onnxruntime-genai-core==0.12.1
107+
- script: pip install onnxruntime-core==1.23.2.3 onnxruntime-genai-core==0.13.1
108108
displayName: 'Install ORT native packages (WinML)'
109109
- ${{ else }}:
110-
- script: pip install onnxruntime-core==1.24.3 onnxruntime-genai-core==0.12.1
110+
- script: pip install onnxruntime-core==1.24.4 onnxruntime-genai-core==0.13.1
111111
displayName: 'Install ORT native packages'
112112

113113
- script: pip install "pydantic>=2.0.0" "requests>=2.32.4" "openai>=2.24.0"

.pipelines/templates/test-python-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@ steps:
9999
}
100100
101101
- ${{ if eq(parameters.isWinML, true) }}:
102-
- script: pip install onnxruntime-core==1.23.2.3 onnxruntime-genai-core==0.12.1
102+
- script: pip install onnxruntime-core==1.23.2.3 onnxruntime-genai-core==0.13.1
103103
displayName: 'Install ORT native packages (WinML)'
104104
- ${{ else }}:
105-
- script: pip install onnxruntime-core==1.24.3 onnxruntime-genai-core==0.12.1
105+
- script: pip install onnxruntime-core==1.24.4 onnxruntime-genai-core==0.13.1
106106
displayName: 'Install ORT native packages'
107107

108108
- script: pip install "pydantic>=2.0.0" "requests>=2.32.4" "openai>=2.24.0"

sdk/js/script/install-standard.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const { NUGET_FEED, ORT_NIGHTLY_FEED, runInstall } = require('./install-utils.cj
1111
const ARTIFACTS = [
1212
{ name: 'Microsoft.AI.Foundry.Local.Core', version: '0.9.0-dev-202603310538-f6efa8d3', feed: ORT_NIGHTLY_FEED },
1313
{ name: os.platform() === 'linux' ? 'Microsoft.ML.OnnxRuntime.Gpu.Linux' : 'Microsoft.ML.OnnxRuntime.Foundry', version: '1.24.4', feed: NUGET_FEED },
14-
{ name: 'Microsoft.ML.OnnxRuntimeGenAI.Foundry', version: '0.13.0', feed: NUGET_FEED },
14+
{ name: 'Microsoft.ML.OnnxRuntimeGenAI.Foundry', version: '0.13.1', feed: NUGET_FEED },
1515
];
1616

1717
(async () => {

sdk/js/script/install-winml.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const binDir = path.join(sdkRoot, 'node_modules', '@foundry-local-core', platfor
2121
const ARTIFACTS = [
2222
{ name: 'Microsoft.AI.Foundry.Local.Core.WinML', version: '0.9.0-dev-202603310538-f6efa8d3', feed: ORT_NIGHTLY_FEED },
2323
{ name: 'Microsoft.ML.OnnxRuntime.Foundry', version: '1.23.2.3', feed: NUGET_FEED },
24-
{ name: 'Microsoft.ML.OnnxRuntimeGenAI.Foundry', version: '0.13.0', feed: NUGET_FEED },
24+
{ name: 'Microsoft.ML.OnnxRuntimeGenAI.Foundry', version: '0.13.1', feed: NUGET_FEED },
2525
];
2626

2727
(async () => {

sdk/python/requirements-winml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ openai>=2.24.0
44
# WinML native binary packages from the ORT-Nightly PyPI feed.
55
foundry-local-core-winml==1.0.0rc1
66
onnxruntime-core==1.23.2.3
7-
onnxruntime-genai-core==0.13.0
7+
onnxruntime-genai-core==0.13.1

sdk/python/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ openai>=2.24.0
55
foundry-local-core==1.0.0rc1
66
onnxruntime-core==1.24.4; sys_platform != "linux"
77
onnxruntime-gpu==1.24.4; sys_platform == "linux"
8-
onnxruntime-genai-core==0.13.0; sys_platform != "linux"
9-
onnxruntime-genai-cuda==0.13.0; sys_platform == "linux"
8+
onnxruntime-genai-core==0.13.1; sys_platform != "linux"
9+
onnxruntime-genai-cuda==0.13.1; sys_platform == "linux"

sdk/rust/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const ORT_NIGHTLY_FEED: &str =
99

1010
const CORE_VERSION: &str = "0.9.0.8-rc3";
1111
const ORT_VERSION: &str = "1.24.4";
12-
const GENAI_VERSION: &str = "0.13.0";
12+
const GENAI_VERSION: &str = "0.13.1";
1313

1414
const WINML_ORT_VERSION: &str = "1.23.2.3";
1515

0 commit comments

Comments
 (0)