mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-06 08:16:00 +00:00
14 lines
244 B
Python
14 lines
244 B
Python
from abc import ABCMeta, abstractmethod
|
|
|
|
|
|
class BaseMemoryChat(metaclass=ABCMeta):
|
|
|
|
@abstractmethod
|
|
def chat_with_memory(self, query: str):
|
|
"""
|
|
:param query:
|
|
:return:
|
|
"""
|
|
|
|
def run(self):
|
|
pass
|