Skip to content

Commit 230e69d

Browse files
committed
fix typo
1 parent 05ba090 commit 230e69d

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

oasis/social_agent/agent.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,13 @@ def __init__(self,
103103
]
104104
]
105105
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
106+
super().__init__(
107+
system_message=system_message,
108+
model=model,
109+
scheduling_strategy='random_model',
110+
tools=all_tools,
111+
)
112+
self.max_iteration = max_iteration
112113
self.interview_record = interview_record
113114
self.agent_graph = agent_graph
114115
self.test_prompt = (

0 commit comments

Comments
 (0)