Views
No views yet
multiagent-orchestrator is a small planning & coordination model built on Llama3.2:1b that acts as a conductor for your AI agents and tools.1{
2 "action": "call_agent" | "call_tool" | "ask_user" | "finish",
3 "target": "agent_or_tool_name_or_null",
4 "arguments": { "any": "json" },
5 "final_answer": "string or null",
6 "reason": "short natural language rationale"
7}1action = orchestrator(agents=agent_registry, state=task_state)
2
3if action["action"] == "call_agent":
4 result = call_agent(action["target"], action["arguments"])
5elif action["action"] == "call_tool":
6 result = call_tool(action["target"], action["arguments"])
7...
8
9task_state = update_state(task_state, action, result)
10