From a3dc4a423e3504efbadae9525874f66d7d22c05b Mon Sep 17 00:00:00 2001 From: "jinli.yl" Date: Tue, 30 Jul 2024 18:30:25 +0800 Subject: [PATCH] modify version --- memoryscope/__init__.py | 2 +- memoryscope/core/config/config_manager.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/memoryscope/__init__.py b/memoryscope/__init__.py index ee5bcc8f..7e00e717 100644 --- a/memoryscope/__init__.py +++ b/memoryscope/__init__.py @@ -1,5 +1,5 @@ """ Version of MemoryScope.""" -__version__ = "0.1.0.2" +__version__ = "0.1.0.3" import fire diff --git a/memoryscope/core/config/config_manager.py b/memoryscope/core/config/config_manager.py index d6aa3e42..313d929c 100644 --- a/memoryscope/core/config/config_manager.py +++ b/memoryscope/core/config/config_manager.py @@ -47,7 +47,7 @@ class ConfigManager(object): else: raise RuntimeError("can not init config manager without kwargs!") - self.logger.info(self.dump_config()) + self.logger.info("\n" + self.dump_config()) def _init_logger(self) -> Logger: global_config = self.config["global"] diff --git a/pyproject.toml b/pyproject.toml index 52b43693..ffb5525f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ skip = "./examples,*.csv,*.html,*.json,*.jsonl,*.pdf,*.txt,*.ipynb" [tool.poetry] name = "memoryscope" -version = "0.1.0.2" +version = "0.1.0.3" description = "MemoryScope for LLM Agentic Application." authors = ["Your Name "] license = "MIT"