We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 426e79b commit 9645781Copy full SHA for 9645781
alias/src/alias/agent/agents/_react_worker.py
@@ -54,7 +54,11 @@ def __init__(
54
55
self.max_iters: int = max(self.max_iters, WORKER_MAX_ITER)
56
57
- self.generate_response.__doc__ = """
+ def generate_response(
58
+ self,
59
+ **kwargs,
60
+ ): # pylint: disable=useless-parent-delegation
61
+ """
62
Generate a response summarizing the execution progress of the
63
given subtask.
64
Args:
@@ -69,3 +73,4 @@ def __init__(
69
73
paths of generated files (e.g. '/FULL/PATH/OF/FILE_1.md') and
70
74
the values are short descriptions about the generated files.
71
75
"""
76
+ return super().generate_response(**kwargs)
0 commit comments