This is an automated email from the ASF dual-hosted git repository.
kaxil pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 6323bd98d14 Fix dead Managed Agents link and incomplete first-party
note in Anthropic provider docs (#69709)
6323bd98d14 is described below
commit 6323bd98d14252c9853382b6787de13e31701a1d
Author: Wei Lee <[email protected]>
AuthorDate: Tue Jul 14 03:31:00 2026 +0800
Fix dead Managed Agents link and incomplete first-party note in Anthropic
provider docs (#69709)
The Managed Agents docs URL now returns 404, and the connections page note
about first-party-only features omitted Managed Agents even though the hook
enforces the same restriction on it.
---
providers/anthropic/docs/connections.rst | 10 ++++++----
providers/anthropic/docs/operators/anthropic.rst | 2 +-
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/providers/anthropic/docs/connections.rst
b/providers/anthropic/docs/connections.rst
index 961266f0f8c..55725e29ccf 100644
--- a/providers/anthropic/docs/connections.rst
+++ b/providers/anthropic/docs/connections.rst
@@ -100,7 +100,9 @@ Two ways:
.. note::
- The Message Batches API, token counting and the Models API are served only
by the
- first-party Anthropic API (``platform="anthropic"``) and Claude Platform
on AWS
- (``platform="aws"``). They are **not** available on Amazon Bedrock, Google
Vertex AI
- or Microsoft Foundry; the hook raises a clear error if you call them on
those platforms.
+ The Message Batches API, token counting, the Models API and Managed Agents
(including
+
:class:`~airflow.providers.anthropic.operators.agent.AnthropicAgentSessionOperator`)
are
+ served only by the first-party Anthropic API (``platform="anthropic"``)
and Claude
+ Platform on AWS (``platform="aws"``). They are **not** available on Amazon
Bedrock,
+ Google Vertex AI or Microsoft Foundry; the hook raises a clear error if
you call them on
+ those platforms.
diff --git a/providers/anthropic/docs/operators/anthropic.rst
b/providers/anthropic/docs/operators/anthropic.rst
index be0286d43f0..90b288a0c82 100644
--- a/providers/anthropic/docs/operators/anthropic.rst
+++ b/providers/anthropic/docs/operators/anthropic.rst
@@ -117,7 +117,7 @@ AnthropicAgentSessionOperator
-----------------------------
:class:`~airflow.providers.anthropic.operators.agent.AnthropicAgentSessionOperator`
runs a
-`Managed Agents
<https://docs.claude.com/en/docs/agents-and-tools/managed-agents>`__ session:
+`Managed Agents
<https://platform.claude.com/docs/en/managed-agents/overview>`__ session:
Anthropic runs the agent loop server-side while the worker drives a session
and waits for it
to finish. Unlike the ``common.ai`` provider (a *local* pydantic-ai loop), the
loop and its
tool-execution sandbox run on Anthropic's infrastructure; the worker only
orchestrates.