From cc11b77b27ca5a6d8ccae62d9939b46f7eb6d3ca Mon Sep 17 00:00:00 2001 From: jinliyl <6469360+jinliyl@users.noreply.github.com> Date: Tue, 24 Mar 2026 22:15:02 +0800 Subject: [PATCH] chore(deps): update version and move litellm to dev dependencies (#176) * chore(deps): update version and move litellm to dev dependencies - Updated package version from 0.3.1.2 to 0.3.1.3 - Removed litellm from main dependencies in pyproject.toml - Added litellm as fixed version dependency in dev group - Maintained litellm requirement while reorganizing dependency structure * chore(deps): move litellm dependency to full extras - Moved litellm==1.80.0 from main dependencies to full extra - Kept litellm as optional dependency for users needing full feature set - Maintains backward compatibility for light installation option * feat(pyproject): add litellm dependency to project configuration - Added litellm==1.80.0 as optional dependency in pyproject.toml - Created new litellm extra group for LiteLLM integration - Updated full dependency group to include the new litellm option --- pyproject.toml | 5 ++++- reme/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4b91b329..5a43f021 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,6 @@ dependencies = [ "fastapi>=0.121.3", "fastmcp>=2.14.1", "httpx>=0.28.1", - "litellm>=1.80.0", "loguru>=0.7.3", "mcp>=1.25.0", "numpy>=2.2.6", @@ -80,6 +79,10 @@ full = [ "reme_ai[dev,ray,light]", ] +litellm = [ + "litellm==1.80.0", +] + light = [ "agentscope==1.0.17", ] diff --git a/reme/__init__.py b/reme/__init__.py index adb4cbe4..28d87f9e 100644 --- a/reme/__init__.py +++ b/reme/__init__.py @@ -6,7 +6,7 @@ from . import extension from . import memory from .reme import ReMe -__version__ = "0.3.1.2" +__version__ = "0.3.1.3" __all__ = [ "config",