自然进化

1.优化记忆清除机制;
2.优化prompt。
This commit is contained in:
guo zebin
2025-11-12 22:29:08 +08:00
parent da05cd73e6
commit 7567fd4248
9 changed files with 149 additions and 76 deletions

View File

@@ -22,7 +22,55 @@ class ChromaService:
"""
ChromaDB向量数据库操作服务
"""
@staticmethod
def check_and_clear_database_on_startup() -> bool:
"""
启动时检查并清除ChromaDB数据库
如果存在.memory_cleared标记文件则删除chroma_db目录
Returns:
bool: 是否执行了清除操作
"""
import shutil
try:
# 标记文件路径
marker_file = os.path.abspath("./memory/.memory_cleared")
# 检查标记文件是否存在
if not os.path.exists(marker_file):
return False
logger.info("检测到记忆清除标记文件准备删除ChromaDB数据库...")
# ChromaDB数据库路径
chroma_db_path = os.path.abspath("./memory/chroma_db")
# 删除chroma_db目录
if os.path.exists(chroma_db_path):
try:
shutil.rmtree(chroma_db_path)
logger.info(f"成功删除ChromaDB数据库目录: {chroma_db_path}")
except Exception as e:
logger.error(f"删除ChromaDB数据库目录失败: {e}")
# 即使删除失败,也继续尝试删除标记文件
else:
logger.info(f"ChromaDB数据库目录不存在跳过删除: {chroma_db_path}")
# 删除标记文件
try:
os.remove(marker_file)
logger.info(f"成功删除记忆清除标记文件: {marker_file}")
except Exception as e:
logger.error(f"删除标记文件失败: {e}")
return True
except Exception as e:
logger.error(f"启动时清除数据库失败: {e}")
return False
def __init__(self,
client_type: str = None,
path: Optional[str] = None,

View File

@@ -1207,7 +1207,7 @@ class LongShortTermMemorySystem:
7. 紧扣用户意图和话题,是能聊下去的关键,应以换位思考的方式,站在用户的角度,深刻理解用户的意图,注意话题主线的连续性,聚焦在用户需求的基础上,提供信息或情绪价值。
8. 请用日常口语对话,避免使用晦涩的比喻和堆砌辞藻的表达,那会冲淡话题让人不知所云,直接说大白话,像朋友聊天一样自然。
9. 以上说明都是作为背景信息告知你的,与用户无关,回复用户时聚焦用户问题本身,不要包含对上述内容的回应。
10. 回复尽量简洁。
"""