From b001c060869e4f5c7a36d7ed65aef320c689a4a8 Mon Sep 17 00:00:00 2001 From: jinliyl <6469360+jinliyl@users.noreply.github.com> Date: Mon, 18 May 2026 15:53:27 +0800 Subject: [PATCH] Dev/connect as tool (#243) * refactor(steps): Add job management methods and support registering them as tools Added methods to the `BaseStep` class for retrieving, running, and registering jobs as tools, enhancing the functionality of the step class. * fix doc * chore(pyproject.toml): Update dependency versions and adjust package configuration Bump agentscope version to 1.0.19 and reorganize the core dependency configuration structure. --- pyproject.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 81039167..89d9020e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -93,11 +93,15 @@ litellm = [ "litellm==1.80.0", ] -core = [ - "agentscope==1.0.18", +light = [ + "agentscope==1.0.19", "flowllm[reme]>=0.2.0.10", ] +core = [ + "agentscope==1.0.19", +] + [tool.setuptools.packages.find] where = ["."] include = ["reme_ai*", "reme*", "reme4*"]