Archive

337 posts · Page 22 of 29. ← Blog

Pratik Dhanave · ·1 min read

Code Act

Letting the agent write and run one Python program instead of looping tool-by-tool.

CodeAct adds a single execute_code tool so the agent writes one sandboxed Python program calling tools via call_tool, wired through the Hyperlight provider with a fallback to direct tools.

Pratik Dhanave · ·2 min read

05 · First Workflow

The other primitive: a directed graph of executors wired by edges, running fully offline with no model, no credential, no Foundry.

Wire two executors into an uppercase to reverse pipeline with the fluent workflow builder and run it fully offline via inproc.Default, iterating ExecutorCompletedEvents.

Pratik Dhanave · ·1 min read

Harness

The batteries-included autonomous agent pipeline from create_harness_agent.

Assemble a batteries-included autonomous agent with create_harness_agent: a function-calling loop, todo list, plan/execute modes, and compaction, each individually switchable via disable flags.

Pratik Dhanave · ·2 min read

04 · Memory

A custom ContextProvider gives the agent memory: it reads stored facts before a run and learns new ones after — all through the Session.

A custom ContextProvider wires Provide and Store hooks around every run so the agent reads remembered facts before the call and learns new ones after, all in the Session.