From e2f6ffcace32f24b183a325e641d991c524ee8d4 Mon Sep 17 00:00:00 2001 From: DABH Date: Thu, 10 Sep 2026 00:56:49 -0500 Subject: [PATCH 1/2] Deep Agents: install from the released extra temporalio 1.32.0 shipped the deepagents extra, so the page no longer needs the install-from-main instructions (source build, Rust core warning, transition prose). Plain uv add / pip install of temporalio[deepagents] is the whole story now. --- docs/develop/python/integrations/deepagents.mdx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/docs/develop/python/integrations/deepagents.mdx b/docs/develop/python/integrations/deepagents.mdx index 633f048244..57c39052c8 100644 --- a/docs/develop/python/integrations/deepagents.mdx +++ b/docs/develop/python/integrations/deepagents.mdx @@ -42,22 +42,19 @@ samples for the complete code. ## Install the plugin -The plugin lives on the Temporal Python SDK's `main` branch and ships as the `temporalio[deepagents]` extra in the -next SDK release. Until that release is on PyPI, install it from `main`: +Install the Temporal Python SDK with Deep Agents support (`temporalio` 1.32.0 or later): ```bash -uv add "temporalio[deepagents] @ git+https://github.com/temporalio/sdk-python.git" +uv add "temporalio[deepagents]" ``` or with pip: ```bash -pip install "temporalio[deepagents] @ git+https://github.com/temporalio/sdk-python.git" +pip install "temporalio[deepagents]" ``` -This builds the SDK from source, including its Rust core, so expect a few minutes on first install. Once the next -release is available, a plain `uv add "temporalio[deepagents]"` (or `pip install "temporalio[deepagents]"`) is all -you need. +Requires Python 3.11 or newer, the same floor that `deepagents` sets. ## Hello World From 35c57c253057e023d0106e7b571dba49be6ace9b Mon Sep 17 00:00:00 2001 From: DABH Date: Thu, 10 Sep 2026 01:33:55 -0500 Subject: [PATCH 2/2] Pin the 1.32.0 floor in the install commands; sentence-case the heading --- docs/develop/python/integrations/deepagents.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/develop/python/integrations/deepagents.mdx b/docs/develop/python/integrations/deepagents.mdx index 57c39052c8..5cff67670b 100644 --- a/docs/develop/python/integrations/deepagents.mdx +++ b/docs/develop/python/integrations/deepagents.mdx @@ -42,21 +42,21 @@ samples for the complete code. ## Install the plugin -Install the Temporal Python SDK with Deep Agents support (`temporalio` 1.32.0 or later): +Install the Temporal Python SDK with Deep Agents support: ```bash -uv add "temporalio[deepagents]" +uv add "temporalio[deepagents]>=1.32.0" ``` or with pip: ```bash -pip install "temporalio[deepagents]" +pip install "temporalio[deepagents]>=1.32.0" ``` Requires Python 3.11 or newer, the same floor that `deepagents` sets. -## Hello World +## Hello world A Deep Agent becomes durable without changing the agent code itself. The Workflow below builds a vanilla `create_deep_agent(...)` and drives it with `await agent.ainvoke(...)` — exactly the code you would write outside