Skip to content

Commit 850f781

Browse files
committed
Fix tutorial SDK version pinning to allow latest agentex-sdk
The 00_sync tutorials were pinned to agentex-sdk==0.4.28 which doesn't have the convert_openai_to_agentex_events function that the streaming tutorial imports. Removing the version pin allows the tutorials to use the latest SDK that includes all required exports.
1 parent 31ecd6c commit 850f781

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/tutorials/00_sync/010_multiturn/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "An AgentEx agent"
99
readme = "README.md"
1010
requires-python = ">=3.12"
1111
dependencies = [
12-
"agentex-sdk==0.4.28",
12+
"agentex-sdk",
1313
"scale-gp",
1414
]
1515

examples/tutorials/00_sync/020_streaming/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "An AgentEx agent that does multiturn streaming chat"
99
readme = "README.md"
1010
requires-python = ">=3.12"
1111
dependencies = [
12-
"agentex-sdk==0.4.28",
12+
"agentex-sdk",
1313
"scale-gp",
1414
]
1515

0 commit comments

Comments
 (0)