Fix MangenticAgentExecutor producing repr str for tool call content (#2566)

This commit is contained in:
Evan Mattson
2025-12-02 17:40:11 +09:00
committed by GitHub
Unverified
parent cb343dd707
commit c2d285e614
2 changed files with 2 additions and 2 deletions
@@ -1274,7 +1274,7 @@ class MessageMapper:
"trace_type": "magentic_orchestrator",
"orchestrator_id": orchestrator_id,
"kind": kind,
"text": text or str(message),
"text": text or "",
"timestamp": datetime.now().isoformat(),
},
span_id=f"magentic_orch_{uuid4().hex[:8]}",