r"""Adds a new tool to the runtime.
(
self,
funcs: Union[FunctionTool, List[FunctionTool]],
*args: Any,
**kwargs: Any,
)
| 27 | |
| 28 | @abstractmethod |
| 29 | def add( |
| 30 | self, |
| 31 | funcs: Union[FunctionTool, List[FunctionTool]], |
| 32 | *args: Any, |
| 33 | **kwargs: Any, |
| 34 | ) -> "BaseRuntime": |
| 35 | r"""Adds a new tool to the runtime.""" |
| 36 | pass |
| 37 | |
| 38 | @abstractmethod |
| 39 | def reset(self, *args: Any, **kwargs: Any) -> Any: |
no outgoing calls
no test coverage detected