หน่วยความจำสำหรับเอเจนต์เชิงรุก 24/7 — เก็บความทรงจำระยะยาว ดัชนีเนื้อหา และเรียกคืนบริบทเมื่อจำเป็น เหมาะสำหรับการสร้าง chatbot, assistant และการผสานรวมกับ workflow อื่น ๆ
- เก็บความทรงจำ (persisted memories)
- ค้นหาเชิงความหมาย (semantic search / embeddings) หากเปิดใช้งาน
- ตัวอย่างและเอกสารพร้อมใช้งานในโฟลเดอร์
examples/และdocs/
git clone https://github.com/gittisak-go/memU.git
cd memU
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txtfrom memu import MemoryStore
store = MemoryStore()
store.save("พบลูกค้าชื่อสมชาย ชอบสีฟ้า")
results = store.search("ลูกค้าที่ชอบสีฟ้า")
for r in results:
print(r.text, r.score)- เปิด Issue: https://github.com/gittisak-go/memU/issues
- ส่ง Pull Request สำหรับการปรับปรุง
ดูไฟล์ LICENSE ในรีโป