Skip to content

Commit 77a465c

Browse files
Update nextpy/ai/agent/userproxy_agent.py
added doc strings Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent fde6c63 commit 77a465c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

nextpy/ai/agent/userproxy_agent.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33

44

55
class UserProxyAgent(AssistantAgent):
6+
"""
7+
Initializes a UserProxyAgent instance.
8+
9+
:param async_mode: Indicates if the agent should operate in asynchronous mode.
10+
:param functions_before_call: A tuple of functions to be called before the main function call.
11+
:param functions_after_call: A tuple of functions to be called after the main function call.
12+
:param description: A brief description of the agent's capabilities.
13+
:param kwargs: Additional keyword arguments.
14+
"""
615

716
def __init__(self,
817
async_mode: bool = False,

0 commit comments

Comments
 (0)