def executor_agent(step: Dict(str, Any), context: Dict(str, Any)) -> StepResult: step_id = int(step.get(“id”, 0)) title = step.get(“title”, f”Step {step_id}”) tool = step.get(“tool”, “llm”) ctx_compact = { “goal”: context.get(“goal”), “assumptions”: context.get(“assumptions”, ()), …
Tag:
