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