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