Duplicated from MathematicalModelingAgent/MathematicalModelingAgent
8496edd
1
2
3
4
5
6
7
8
from abc import ABC, abstractmethod class BaseAgent(ABC): def __init__(self, llm): self.llm = llm