Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoLjl committed Nov 21, 2024
1 parent 6727a2a commit a963b9f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions autogen/agentchat/contrib/captainagent.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,7 @@ def __init__(
if nested_config["group_chat_llm_config"] is None:
nested_config["group_chat_llm_config"] = llm_config.copy()

self.assistant = ConversableAgent(
name="CaptainAgent",
system_message=system_message,
llm_config=llm_config,
agent_config_save_path=agent_config_save_path,
)
self.assistant = ConversableAgent(name="CaptainAgent", system_message=system_message, llm_config=llm_config)
self.assistant.update_tool_signature(self.AUTOBUILD_TOOL, is_remove=False)

self.executor = CaptainUserProxyAgent(
Expand Down

0 comments on commit a963b9f

Please sign in to comment.