| ▲ | kordlessagain 6 months ago | |
Agents are LLM responses that are feed with tools, like calculate(expression). When it encounters a thing it needs to do to meet desired output, it will run the tool. That is defining a simple agentic workflow. A complicated workflow may involve other tools. For example, the input to the LLM may produce something that tells it to set the user-agent to such and such as string:
Other tools could be clicking on things in the page, or even injecting custom JavaScript when a page loads. | ||