Spaces:
Running
Running
File size: 4,758 Bytes
3193174 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | """
Agent chain β Task β Math Researcher β Math Solver.
Demonstrates:
- Building a two-agent sequential chain
- Streaming execution to capture per-agent prompts and responses
- Saving the communication log to JSON
Configure your LLM via environment variables:
LLM_API_KEY, LLM_BASE_URL, LLM_MODEL
Run:
python -m examples.math_chain_example
"""
import json
import os
from datetime import UTC, datetime
from pathlib import Path
from builder import BuilderConfig, GraphBuilder
from execution import MACPRunner, RunnerConfig, StreamEventType
from tools import create_openai_caller
# ββ Graph construction ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _build_graph():
"""Build: Task β Math Researcher β Math Solver."""
builder = GraphBuilder(BuilderConfig(include_task_node=True, validate=True))
builder.add_task(
query="Solve the equation: 2x - 3xΒ² = 1",
description="Mathematical problem to solve",
)
builder.add_agent(
agent_id="math_researcher",
display_name="Math Researcher",
persona="a mathematical researcher",
description=(
"Outline the steps required to solve the problem but do NOT compute the final answer β only the plan."
),
)
builder.add_agent(
agent_id="math_solver",
display_name="Math Solver",
persona="a mathematics solver",
description="Follow the plan and output the CORRECT ANSWER.",
)
builder.connect_task_to_agents(agent_ids=["math_researcher"], bidirectional=False)
builder.add_workflow_edge("math_researcher", "math_solver")
return builder.build()
# ββ Execution βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main():
graph = _build_graph()
llm_caller = create_openai_caller(
base_url=os.getenv("LLM_BASE_URL", "http://localhost:8000/v1"),
api_key=os.getenv("LLM_API_KEY", "your-api-key"),
model=os.getenv("LLM_MODEL", "gpt-4o-mini"),
temperature=0.7,
)
runner = MACPRunner(
llm_caller=llm_caller,
config=RunnerConfig(
timeout=120.0,
adaptive=False,
update_states=True,
broadcast_task_to_all=False,
),
)
node_data: dict[str, dict] = {}
final_answer = ""
final_agent = ""
total_tokens = 0
total_time = 0.0
execution_order: list[str] = []
print(f"Task: {graph.query}")
print("β" * 50)
for event in runner.stream(graph, final_agent_id="math_solver"):
etype = event.event_type
if etype == StreamEventType.AGENT_START:
aid = getattr(event, "agent_id", "")
name = getattr(event, "agent_name", aid)
print(f" βΆ {name} startingβ¦")
node_data[aid] = {"agent_name": name, "response": ""}
elif etype == StreamEventType.AGENT_OUTPUT:
aid = getattr(event, "agent_id", "")
content = getattr(event, "content", "")
if aid in node_data:
node_data[aid]["response"] = content
execution_order.append(aid)
print(f" β {node_data.get(aid, {}).get('agent_name', aid)}: {content[:120]}β¦")
elif etype == StreamEventType.AGENT_ERROR:
aid = getattr(event, "agent_id", "")
err = getattr(event, "error_message", "unknown")
execution_order.append(aid)
print(f" β {aid}: ERROR β {err}")
elif etype == StreamEventType.RUN_END:
final_answer = getattr(event, "final_answer", "")
final_agent = getattr(event, "final_agent_id", "")
total_tokens = getattr(event, "total_tokens", 0)
total_time = getattr(event, "total_time", 0.0)
print("β" * 50)
print(f"Final answer (from '{final_agent}'):")
print(final_answer)
print(f"\nTokens: {total_tokens} | Time: {total_time:.2f}s")
# Save log
log = {
"timestamp": datetime.now(UTC).isoformat(),
"task": graph.query,
"execution_order": execution_order,
"total_tokens": total_tokens,
"total_time": total_time,
"nodes": node_data,
"final_answer": final_answer,
"final_agent": final_agent,
}
log_path = Path(__file__).parent / "math_chain_log.json"
log_path.write_text(json.dumps(log, ensure_ascii=False, indent=2), encoding="utf-8")
print(f"Log saved β {log_path}")
if __name__ == "__main__":
main()
|