File size: 200 Bytes
6bc3db2
 
 
 
 
 
1
2
3
4
5
6
class BaseAgent:
    def __init__(self, name):
        self.name = name

    def process(self, *args, **kwargs):
        raise NotImplementedError("Each agent must implement the process method.")