8 lines
145 B
Python
8 lines
145 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class AgentAsyncBase(ABC):
|
|
|
|
@abstractmethod
|
|
async def step(self, user_message):
|
|
pass |