-
Book Overview & Buying
-
Table Of Contents
Building Natural Language and LLM Pipelines
By :
This epilogue explores three distinct agentic architectures. We start with a monolithic model, where agents decide and execute tools, and then examine two supervisor-based variations: with and without guardrails, retry policies, and persistence. All architectures use the microservices developed in Chapter 8 for the Yelp Navigator mini-project. While the accompanying code allows for hands-on experimentation, executing these exercises is not required; the primary focus is on understanding the architectural patterns and the evolution of the three versions and how they fit within context engineering and sovereign agentic applications.
The chapter’s code can be found in the book’s accompanying GitHub repository: https://github.com/PacktPublishing/Building-Natural-Language-and-LLM-Pipelines/tree/main/epilogue
As in previous chapters, we’ll continue using uv (Python 3.11+) for dependency management. The code for this advanced section...