Concepts
Concepts
Concepts
A jargo bot is a chain of processors that passes frames to each other. These six pages are that sentence, unpacked.
The engine is small: frames, processor and pipeline are about 2,000 lines
between them. It is worth reading properly once rather than guessing at it
later. Everything else in jargo, transports and services included, is a processor
plugged into it.
Read in order:
- Architecture : the whole system on one page, and a full turn traced end to end.
- Frames : the three categories, why they exist, and what all 62 frame types are for.
- Processors : the two goroutines inside every processor, and the reason there are two.
- Pipeline & Task : building the chain and driving it.
- Interruptions : barge-in as a mechanism rather than a metaphor.
- LLM context : how the conversation accumulates, and what decides when the LLM runs.
If you only read two, read Frames and Interruptions. Frame category is the property that decides everything else, and interruptions are where a design that looks over-engineered turns out not to be.