We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05ba090 commit 230e69dCopy full SHA for 230e69d
oasis/social_agent/agent.py
@@ -103,12 +103,13 @@ def __init__(self,
103
]
104
105
all_tools = (tools or []) + (self.action_tools or [])
106
- super().__init__(system_message=system_message,
107
- model=model,
108
- scheduling_strategy='random_model',
109
- tools=all_tools,
110
- # max_iteration=max_iteration)
111
- self.max_iteration=max_iteration
+ super().__init__(
+ system_message=system_message,
+ model=model,
+ scheduling_strategy='random_model',
+ tools=all_tools,
+ )
112
+ self.max_iteration = max_iteration
113
self.interview_record = interview_record
114
self.agent_graph = agent_graph
115
self.test_prompt = (
0 commit comments