This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-0cb9e08c6d
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 1ac59bc99ce chore(deps): bump the core-ui-package-updates group across 
1 directory with 52 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 536392121d0 chore(deps): bump the core-ui-package-updates group across 
1 directory with 52 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   (1ac59bc99ce)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-0cb9e08c6d
 (536392121d0)

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

Reply via email to