Files
letta-server/memgpt/agent_base.py
Charles Packer 257c3998f7 init commit
2023-10-12 18:48:58 -07:00

8 lines
145 B
Python

from abc import ABC, abstractmethod
class AgentAsyncBase(ABC):
@abstractmethod
async def step(self, user_message):
pass