Agents Module
The Agents module provides a framework for building autonomous AI agents that can use tools, maintain conversation memory, perform retrieval- augmented generation (RAG), execute multi-step pipelines, and enforce safety guardrails.
Configuration
Creating an Agent
Tools
Give agents the ability to take actions by defining tools they can call during execution.
Memory
Agents maintain conversation history across interactions. Configure the memory backend and history limit.
RAG (Retrieval-Augmented Generation)
Pipelines
Chain multiple agents and processing steps into ordered pipelines. Each step receives the output of the previous step.
Guardrails
Enforce safety constraints on agent inputs and outputs. Guardrails validate, transform, or reject content before it enters or leaves the agent.