Runtime
ai-engineering agent-design
The component of an AI agent that executes tool calls produced by the model and manages the interaction loop.
↑ ContentsDefinition
The runtime interprets the model’s response, runs the requested tools (file reads, shell commands, API calls), collects the results, and feeds them back as new context for the next turn. The runtime is not the model — the model produces text, the runtime acts on it. In Claude Code, the runtime is the harness that manages tools, permissions, context, and the turn loop.
↑ Contents