AgentVerse's picture
bump version to 0.1.8
01523b5
raw
history blame
No virus
320 Bytes
from abc import abstractmethod
from typing import Dict, List
from pydantic import BaseModel, Field
from agentverse.message import Message
class BaseMemoryManipulator(BaseModel):
@abstractmethod
def manipulate_memory(self) -> None:
pass
@abstractmethod
def reset(self) -> None:
pass