This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-d17bf088cb
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit b596330f3b6 chore(deps-dev): bump the
ui-plugin-template-package-updates group across 1 directory with 21 updates
add 318bb25ffc7 AIP-99: Add `AgentOperator` and `@task.agent` for agentic
LLM workflows (#62825)
add fe9bc5b2fd3 Add toolset design guidance to common AI AGENTS.md (#62870)
add 45df4e5aeab Remove some CODEOWNER entries for `kaxil` (#62871)
add 5cfb58c7de3 Fix backfill permissions (#62856)
add dba47277f30 fix: correct airflowignore negation pattern handling for
directory-only patterns (#62860)
add 0474a936eae chore(deps-dev): bump the
ui-plugin-template-package-updates group across 1 directory with 21 updates
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (b596330f3b6)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/dev/react-plugin-tools/react_plugin_template/ui-plugin-template-package-updates-d17bf088cb
(0474a936eae)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/CODEOWNERS | 16 +-
.../src/airflow/api_fastapi/core_api/security.py | 9 +-
.../unit/api_fastapi/core_api/test_security.py | 6 +-
docs/spelling_wordlist.txt | 1 +
providers/common/ai/AGENTS.md | 15 ++
providers/common/ai/docs/operators/agent.rst | 138 ++++++++++++++++
providers/common/ai/docs/operators/index.rst | 40 +++++
providers/common/ai/provider.yaml | 4 +
.../common/ai/decorators/{llm.py => agent.py} | 56 +++----
.../common/ai/example_dags/example_agent.py | 178 +++++++++++++++++++++
.../providers/common/ai/get_provider_info.py | 3 +
.../common/ai/operators/{llm.py => agent.py} | 35 ++--
.../tests/unit/common/ai/decorators/test_agent.py | 131 +++++++++++++++
.../tests/unit/common/ai/operators/test_agent.py | 138 ++++++++++++++++
.../module_loading/file_discovery.py | 18 ++-
.../tests/module_loading/test_file_discovery.py | 41 +++++
16 files changed, 768 insertions(+), 61 deletions(-)
create mode 100644 providers/common/ai/docs/operators/agent.rst
copy providers/common/ai/src/airflow/providers/common/ai/decorators/{llm.py =>
agent.py} (67%)
create mode 100644
providers/common/ai/src/airflow/providers/common/ai/example_dags/example_agent.py
copy providers/common/ai/src/airflow/providers/common/ai/operators/{llm.py =>
agent.py} (74%)
create mode 100644
providers/common/ai/tests/unit/common/ai/decorators/test_agent.py
create mode 100644
providers/common/ai/tests/unit/common/ai/operators/test_agent.py