mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
19 lines
288 B
Python
19 lines
288 B
Python
class MemoryChat(object):
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def memory_retrieve(self):
|
|
pass
|
|
|
|
def memory_summary_short(self):
|
|
pass
|
|
|
|
def memory_summary_long(self):
|
|
pass
|
|
|
|
def chat(self):
|
|
pass
|
|
|
|
def chat_with_memory(self):
|
|
pass
|