MCPcopy Create free account
hub / github.com/FSoft-AI4Code/HyperAgent / load_agent_planner

Function load_agent_planner

src/hyperagent/agents/plan_seeking.py:194–204  ·  view source on GitHub ↗
(system_plan, llm_config)

Source from the content-addressed store, hash-verified

192 return executor
193
194def load_agent_planner(system_plan, llm_config):
195
196 planner = ConversableAgent(
197 "Planner",
198 system_message=system_plan,
199 llm_config={"config_list": llm_config},
200 code_execution_config=False,
201 human_input_mode="NEVER",
202 )
203
204 return planner
205
206def load_manager(user_proxy, planner, navigator, editor, executor, llm_config):
207

Callers 1

SetupFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected