|
@@ -7,13 +7,11 @@ class BaseAgent(ABC):
|
|
|
r"""An abstract base class for all agents."""
|
|
|
|
|
|
@abstractmethod
|
|
|
- def run(self, user_input: str, **kwargs) -> Any:
|
|
|
+ def run(self, user_input: str) -> Any:
|
|
|
"""Run the agent with the given user input.
|
|
|
|
|
|
Args:
|
|
|
user_input (str): The input from the user.
|
|
|
- **kwargs: Additional keyword arguments.
|
|
|
-
|
|
|
Returns:
|
|
|
Any: The output from the agent.
|
|
|
"""
|