This is an automated email from the ASF dual-hosted git repository. xtsong pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/flink-agents.git
from cc46f29 [plan][python] Add built-in actions for processing chat and tool call. new c2b0d60 [infra] Fix: lint.sh no longer modifies files during code style check new 350c0bc [infra] Add license check tool and integrate with CI new 57c4446 [hotfix] fix: format code with lint.sh to resolve style issues The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .github/CONTRIBUTING.md | 2 +- .github/workflows/ci.yml | 2 +- python/flink_agents/api/agent.py | 2 +- python/flink_agents/api/metric_group.py | 2 +- python/flink_agents/api/runner_context.py | 3 +- python/flink_agents/api/tests/test_decorators.py | 18 +++-- python/flink_agents/api/tests/test_event.py | 17 +++-- python/flink_agents/api/tests/test_prompt.py | 2 +- python/flink_agents/api/tools/utils.py | 5 +- python/flink_agents/examples/my_agent.py | 2 +- python/flink_agents/plan/function.py | 14 ++-- python/flink_agents/plan/tests/test_action.py | 38 +++++----- python/flink_agents/plan/tests/test_function.py | 3 +- .../plan/tests/test_resource_provider.py | 4 +- python/flink_agents/runtime/agent_runner.py | 1 - python/flink_agents/runtime/flink_metric_group.py | 11 ++- .../flink_agents/runtime/flink_runner_context.py | 19 ++--- .../runtime/local_execution_environment.py | 4 +- python/flink_agents/runtime/local_memory_object.py | 2 +- python/flink_agents/runtime/local_runner.py | 26 +++---- python/flink_agents/runtime/python_java_utils.py | 2 + .../runtime/remote_execution_environment.py | 4 +- .../tests/test_local_execution_environment.py | 42 ++++++----- .../runtime/tests/test_local_memory_object.py | 2 +- tools/.rat-excludes | 16 ++++ tools/check-license.sh | 88 ++++++++++++++++++++++ tools/lint.sh | 8 +- 27 files changed, 238 insertions(+), 101 deletions(-) create mode 100644 tools/.rat-excludes create mode 100755 tools/check-license.sh