firehose/app/priv/blog/engineering/2026/03-20-llm-simple-play.md
Firehose Bot 76255c7641 Revert "Fix dashboard dark mode readability by using theme-aware text colors"
This reverts commit 2a0634b82036cd2945c09de5da27116df4e9a8a6.
2026-07-06 11:54:56 +01:00

892 B

%{ title: "Coding agent from scratch - a loop with tools, not that complicated", author: "Willem van den Ende", published: true, tags: ~w(llm coding-agent python exercise), description: "Coding agents are not that complicated. A loop with some tools. I found an interactive tutorial that lets you experience it" }

I had started on a "Write your own coding agent" exercise. Four iterations in, actually. And then I found Tiny Agents, a set of interactive exercises that let you experience how agents work, from a simple chat request, through a tool, more tools etc. It has a live graph, that visualises of the flow of data and actions.

It is good fun to play with, it starts simple and builds up. It lets you inspect the messages between the 'agent' loop code and the large language model server (which is just HTTP and some JSON).