7 lines
154 B
Python
7 lines
154 B
Python
class AgentEngine:
|
|
def __init__(self, config):
|
|
self.config = config
|
|
|
|
def run(self, prompt, tools=None):
|
|
raise NotImplementedError
|