diff --git a/README.md b/README.md index 9f223710..ddcc6361 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@

Python Version - PyPI Version + PyPI Version License GitHub Stars

@@ -28,7 +28,7 @@ Personal memory helps "**understand user preferences**", task memory helps agent ## 📰 Latest Updates -- **[2025-10]** 🚀 ReMe v0.1.10.6 released! Core enhancement: direct Python import support. You can now use ReMe without starting an HTTP or MCP service - simply `from reme_ai import ReMeApp` and call methods directly in your Python code. +- **[2025-10]** 🚀 ReMe v0.1.10.7 released! Core enhancement: direct Python import support. You can now use ReMe without starting an HTTP or MCP service - simply `from reme_ai import ReMeApp` and call methods directly in your Python code. - **[2025-10]** 🔧 Tool Memory support is now available! Enables data-driven tool selection and parameter optimization through historical performance tracking. Check out the [Tool Memory Guide](docs/tool_memory/tool_memory.md) and [benchmark results](docs/tool_memory/tool_bench.md). - **[2025-09]** 🎉 ReMe v0.1.9 has been officially released, adding support for asynchronous operations. It has also been integrated into the memory service of agentscope-runtime. diff --git a/docs/index.md b/docs/index.md index c56177a1..d7a85f59 100644 --- a/docs/index.md +++ b/docs/index.md @@ -17,7 +17,7 @@ kernelspec:
Python Version - PyPI Version + PyPI Version License GitHub Stars
diff --git a/pyproject.toml b/pyproject.toml index 1d6e58c1..59d28743 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "reme_ai" -version = "0.1.10.6" +version = "0.1.10.7" description = "Remember me" authors = [ { name = "jinli.yl", email = "jinli.yl@alibaba-inc.com" }, @@ -24,7 +24,7 @@ classifiers = [ keywords = ["llm", "memory", "experience", "memoryscope", "ai", "mcp", "http"] dependencies = [ - "flowllm[reme]>=0.1.11.5", + "flowllm[reme]>=0.1.11.6", ] [project.optional-dependencies] diff --git a/reme_ai/__init__.py b/reme_ai/__init__.py index 1fc69579..259835c3 100644 --- a/reme_ai/__init__.py +++ b/reme_ai/__init__.py @@ -2,7 +2,7 @@ import os os.environ["FLOW_APP_NAME"] = "ReMe" -__version__ = "0.1.10.6" +__version__ = "0.1.10.7" from reme_ai.app import ReMeApp from . import agent