class BaseRuntime(ABC):
An abstract base class for all CAMEL runtimes.
def __init__(self):
def add(
self,
funcs: Union[FunctionTool, List[FunctionTool]],
*args: Any,
**kwargs: Any
):
Adds a new tool to the runtime.
def reset(self, *args: Any, **kwargs: Any):
Resets the runtime to its initial state.
def get_tools(self):
Returns a list of all tools in the runtime.