diff --git a/README.md b/README.md
index 0df8946d..f08340b2 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
English | [**中文**](./README_ZH.md)
# MemoryScope
-
-
-
+
+
+
Equip your LLM chatbot with a powerful and flexible long term memory system.
[](https://pypi.org/project/memoryscope/)
-[](https://pypi.org/project/memoryscope/)
+[](https://pypi.org/project/memoryscope/)
[](./LICENSE)
[](https://modelscope.github.io/memoryscope/#welcome-to-memoryscope-tutorial-hub)
[](https://modelscope.github.io/memoryscope/)
@@ -16,7 +16,7 @@ Equip your LLM chatbot with a powerful and flexible long term memory system.
----
## 📰 News
-- **[2024-09-10]** We release MemoryScope v0.1.1 now, which is also available in [PyPI](https://pypi.org/simple/memoryscope/)!
+- **[2024-09-10]** We release MemoryScope v0.1.1.0 now, which is also available in [PyPI](https://pypi.org/simple/memoryscope/)!
----
## 🌟 What is MemoryScope?
MemoryScope provides LLM chatbots with powerful and flexible long-term memory capabilities, offering a framework for building such abilities.
@@ -24,10 +24,14 @@ It can be applied to scenarios like personal assistants and emotional companions
This allows users to gradually experience a sense of "understanding" when using the LLM.
### Demo
-
+
+
+
### Framework
-
+
+
+
💾 Memory Database: MemoryScope is equipped with a vector database (default is *ElasticSearch*) to store all memory fragments recorded in the system.
diff --git a/README_ZH.md b/README_ZH.md
index 1e108c90..cc975cd5 100644
--- a/README_ZH.md
+++ b/README_ZH.md
@@ -1,9 +1,9 @@
[**English**](./README.md) | 中文
# MemoryScope
-
-
-
+
+
+
为您的大语言模型聊天机器人配备强大且灵活的长期记忆系统。
[](https://pypi.org/project/memoryscope/)
@@ -21,7 +21,7 @@
----
## 📰 新闻
-- **[2024-09-10]** 我们现在发布了 MemoryScope v0.1.1,该版本也可以在 [PyPI](https://pypi.org/simple/memoryscope/) 上获取!
+- **[2024-09-10]** 我们现在发布了 MemoryScope v0.1.1.0,该版本也可以在 [PyPI](https://pypi.org/simple/memoryscope/) 上获取!
----
## 🌟 什么是MemoryScope?
@@ -29,10 +29,15 @@ MemoryScope可以为LLM聊天机器人提供强大且灵活的长期记忆能力
MemoryScope可以用于个人助理、情感陪伴等记忆场景,通过长期记忆能力来不断学习,记得用户的基础信息以及各种习惯和喜好,使得用户在使用LLM时逐渐感受到一种“默契”。
### Demo
-
+
+
+
+
### 核心框架:
-
+
+
+
💾 记忆数据库: MemoryScope配备了向量数据库(默认是*ElasticSearch*),用于存储系统中记录的所有记忆片段。
diff --git a/memoryscope/__init__.py b/memoryscope/__init__.py
index c5be9bb2..a5d21147 100644
--- a/memoryscope/__init__.py
+++ b/memoryscope/__init__.py
@@ -1,5 +1,5 @@
""" Version of MemoryScope."""
-__version__ = "0.1.0.10"
+__version__ = "0.1.1.0"
import fire
from memoryscope.core.config.arguments import Arguments # noqa: F401
diff --git a/setup.py b/setup.py
index 4803d1fc..a5a39d8a 100644
--- a/setup.py
+++ b/setup.py
@@ -54,7 +54,7 @@ def package_files(directory):
setuptools.setup(
name="memoryscope",
- version="0.1.0.10",
+ version="0.1.1.0",
author=', '.join([author['name'] for author in authors]),
author_email=', '.join([author['email'] for author in authors]),
description="MemoryScope is a powerful and flexible long term memory system for LLM chatbots. It consists of a "