Agents

Agents

42 bookmarks
Custom sorting
Agent Engineering: A New Discipline
Agent Engineering: A New Discipline
If you’ve built an agent, you know that the delta between “it works on my machine” and “it works in production” can be huge. Traditional software assumes you mostly know the inputs and can define the outputs. Agents give you neither: users can say literally anything, and the space
·blog.langchain.com·
Agent Engineering: A New Discipline
Agents Should Be More Opinionated | vtrivedy
Agents Should Be More Opinionated | vtrivedy
The best agent products aren't the most flexible, they're the most opinionated. Learn why agents need fewer knobs, not more, and how to design around model intelligence spikes.
·vtrivedy.com·
Agents Should Be More Opinionated | vtrivedy
Practical Guide on how to build an Agent from scratch with Gemini 3
Practical Guide on how to build an Agent from scratch with Gemini 3
A step-by-step practical guide on building AI agents using Gemini 3 Pro, covering tool integration, context management, and best practices for creating effective and reliable agents.
·philschmid.de·
Practical Guide on how to build an Agent from scratch with Gemini 3
Deploy bidirectional streaming agents with Vertex AI Agent Engine and Live API - Build with AI / Agents - Google Developer forums
Deploy bidirectional streaming agents with Vertex AI Agent Engine and Live API - Build with AI / Agents - Google Developer forums
This blog has been co-authored by Hanfei Sun, Vertex AI Agent Engine, Software Engineer, and Huang Xia, Vertex AI Agent Engine, Software Engineer. TL;DR: Vertex AI Agent Engine now integrates with the Live API to enable real-time, bidirectional streaming agents. This allows for low-latency, human-like conversations using text and audio. This post demonstrates how to quickly build a streaming agent with the Agent Development Kit (ADK), leveraging a fully managed, serverless platform that hand...
·discuss.google.dev·
Deploy bidirectional streaming agents with Vertex AI Agent Engine and Live API - Build with AI / Agents - Google Developer forums
Design Patterns for Securing LLM Agents against Prompt Injections
Design Patterns for Securing LLM Agents against Prompt Injections
As AI agents powered by Large Language Models (LLMs) become increasingly versatile and capable of addressing a broad spectrum of tasks, ensuring their security has become a critical challenge. Among the most pressing threats are prompt injection attacks, which exploit the agent's resilience on natural language inputs -- an especially dangerous threat when agents are granted tool access or handle sensitive information. In this work, we propose a set of principled design patterns for building AI agents with provable resistance to prompt injection. We systematically analyze these patterns, discuss their trade-offs in terms of utility and security, and illustrate their real-world applicability through a series of case studies.
·arxiv.org·
Design Patterns for Securing LLM Agents against Prompt Injections
Agent Engineering 101
Agent Engineering 101
A practical guide to Agent Engineering: the intersection of software, systems and security engineering.
·ashpreetbedi.com·
Agent Engineering 101
Agentic Design Patterns
Agentic Design Patterns
Agentic Design Patterns A Hands-On Guide to Building Intelligent Systems, Antonio Gulli Table of Contents - total 424 pages = 1+2+1+1+4+9+103+61+34+114+74+5+4 11 Dedication, 1 page Acknowledgment, 2 pages [final, last read done] Foreword, 1 page [final, last read done] A Thought Leader's ...
·docs.google.com·
Agentic Design Patterns
NirDiamant/agents-towards-production: This repository delivers end-to-end, code-first tutorials covering every layer of production-grade GenAI agents, guiding you from spark to scale with proven patterns and reusable blueprints for real-world launches.
NirDiamant/agents-towards-production: This repository delivers end-to-end, code-first tutorials covering every layer of production-grade GenAI agents, guiding you from spark to scale with proven patterns and reusable blueprints for real-world launches.
This repository delivers end-to-end, code-first tutorials covering every layer of production-grade GenAI agents, guiding you from spark to scale with proven patterns and reusable blueprints for re...
·t.co·
NirDiamant/agents-towards-production: This repository delivers end-to-end, code-first tutorials covering every layer of production-grade GenAI agents, guiding you from spark to scale with proven patterns and reusable blueprints for real-world launches.
Cognition | Don’t Build Multi-Agents
Cognition | Don’t Build Multi-Agents
Frameworks for LLM Agents have been surprisingly disappointing. I want to offer some principles for building agents based on our own trial & error, and explain why some tempting ideas are actually quite bad in practice.
·cognition.ai·
Cognition | Don’t Build Multi-Agents
12 Factor Agents: What are the principles we can use to build LLM-powered software that is actually good enough to put in the hands of production customers?
12 Factor Agents: What are the principles we can use to build LLM-powered software that is actually good enough to put in the hands of production customers?
What are the principles we can use to build LLM-powered software that is actually good enough to put in the hands of production customers? - humanlayer/12-factor-agents
·github.com·
12 Factor Agents: What are the principles we can use to build LLM-powered software that is actually good enough to put in the hands of production customers?
GitHub - business-science/awesome-generative-ai-data-scientist: A curated list of 100+ resources for building and deploying generative AI specifically focusing on helping you become a Generative AI Data Scientist with LLMs
GitHub - business-science/awesome-generative-ai-data-scientist: A curated list of 100+ resources for building and deploying generative AI specifically focusing on helping you become a Generative AI Data Scientist with LLMs
A curated list of 100+ resources for building and deploying generative AI specifically focusing on helping you become a Generative AI Data Scientist with LLMs - business-science/awesome-generative-...
·github.com·
GitHub - business-science/awesome-generative-ai-data-scientist: A curated list of 100+ resources for building and deploying generative AI specifically focusing on helping you become a Generative AI Data Scientist with LLMs
A Visual Guide to LLM Agents
A Visual Guide to LLM Agents
Explore the main components of what makes LLM Agents special.
An agent is anything that can be viewed as perceiving its environment through sensors and acting upon that environment through actuators.
Agents interact with their environment and typically consist of several important components
chain-of-thought
This is where planning comes in. Planning in LLM Agents involves breaking a given task up into actionable steps.
reasoning” and “thinking” a bit loosely as we can argue whether this is human-like thinking or merely breaking the answer down to structured steps.
without any examples (zero-shot prompting)
Providing examples (also called few-shot prompting7)
ReAct
Reflecting
These Multi-Agent systems usually consist of specialized Agents, each equipped with their own toolset and overseen by a supervisor.
three LLM roles
SELF-REFINE
To enable planning in LLM Agents, let’s first look at the foundation of this technique, namely reasoning.
·newsletter.maartengrootendorst.com·
A Visual Guide to LLM Agents