简体中文
Appearance
语言: 中文 | English | 日本語 | 四川话
不是对话历史,是你自己维护的备注列表,需要时拼进 prompt(pagent.memory,实验性)。
pagent.memory
from pagent.memory import Memory from pagent import Session notes = Memory() notes.add("用户偏好公制单位。") session = Session(f"你是助手。\n\n备注:\n{notes.as_text()}")
不会自动挂进 Agent。存盘:notes.save_to_file("notes.json"),Memory.load_from_file(...)。
Agent
notes.save_to_file("notes.json")
Memory.load_from_file(...)