"매 LLM agent 의 heartbeat". 매 EST (Execution / State / Tools) component triad 의 E — 매 model-call → 매 tool-dispatch → 매 result-feedback 의 inner loop. 매 Claude Agent SDK / OpenAI Assistants / LangGraph 매 same primitive.
매 핵심
매 mechanism
Send messages + tool definitions to LLM.
LLM 매 returns text + (optional) tool_use blocks.
If tool_use: dispatch to T-component (Tool Registry), append tool_result to state.
Loop until 매 stop_reason == "end_turn" or max_iterations.
매 components
E (this): orchestrator — message-pump.
S (State Store): conversation history, scratch state.
T (Tool Registry): handler dispatch, schema validation.