Agents
Agents with tools: definition, step-by-step execution, and call history.
Updated on Aug 09, 2026
An agent is a model with tools and a step limit. You declare what it can call, and the platform handles the loop: the model asks for a tool, you return the result, it decides the next step — until it answers or hits the limit.
- 1
Define
A
POST https://api.hinow.ai/v1/agentswith the tools, the model, and the step limit. - 2
Run
A
POST https://api.hinow.ai/v1/agents/{id}/runswith the user message. - 3
Respond to the tools
The run stops at
requires_actionwith the requested calls; you return the results. - 4
Read the result
The run goes back to
completedand brings the final answer and the step history.
Was this page helpful?

