From 850f7818c8cc092b4ba53e80d2e96b39b18b7967 Mon Sep 17 00:00:00 2001 From: Daniel Miller Date: Wed, 10 Dec 2025 10:30:29 -0800 Subject: [PATCH] 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. --- examples/tutorials/00_sync/010_multiturn/pyproject.toml | 2 +- examples/tutorials/00_sync/020_streaming/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/tutorials/00_sync/010_multiturn/pyproject.toml b/examples/tutorials/00_sync/010_multiturn/pyproject.toml index b1d299a18..d6ec48d20 100644 --- a/examples/tutorials/00_sync/010_multiturn/pyproject.toml +++ b/examples/tutorials/00_sync/010_multiturn/pyproject.toml @@ -9,7 +9,7 @@ description = "An AgentEx agent" readme = "README.md" requires-python = ">=3.12" dependencies = [ - "agentex-sdk==0.4.28", + "agentex-sdk", "scale-gp", ] diff --git a/examples/tutorials/00_sync/020_streaming/pyproject.toml b/examples/tutorials/00_sync/020_streaming/pyproject.toml index 5ee3dc184..b215db076 100644 --- a/examples/tutorials/00_sync/020_streaming/pyproject.toml +++ b/examples/tutorials/00_sync/020_streaming/pyproject.toml @@ -9,7 +9,7 @@ description = "An AgentEx agent that does multiturn streaming chat" readme = "README.md" requires-python = ">=3.12" dependencies = [ - "agentex-sdk==0.4.28", + "agentex-sdk", "scale-gp", ]