Kracht Agents
PreviewA model, some tools, one loop
An agent is a model with a prompt, the tools it may call, the skills it has loaded, and a memory of the session. The loop is the simple one: the model decides, a tool runs, the model reads the result and goes again. Build one here and watch that loop as a sample trace. It runs no model.
This agent
This is a definition. Nothing runs until the agent runtime under this executes it. Switch to Run to watch the loop as a sample trace.
How it will runsample trace
- User
- Modelcalls web.search
- web.search3 results{ "results": [ { "title": "...", "url": "https://..." }, ... ] }
A definition worth keeping becomes a skill: the prompt, the tools and the steps, in one folder the next agent can load.
Save a workflow as a skillA real run calls the model, executes the tools, and keeps the session in a store: the agent runtime, which is the platform under this. This page is the interface to it. The model can run locally or on a rented card, which is what the Cookbook already sizes.
Size the model