Skip to main content
Large outputs stay outside the context window — agents explore them with artifacts, delegation, and escalation instead of stuffing everything into one prompt.
The user requests analysis on huge data; the agent stores artifacts and delegates instead of overfilling context.

How It Works

Quick Start

1

Simple Usage

Enable autonomy — artifacts, escalation, and doom-loop protection activate automatically:
2

With Configuration

Tune iteration limits, doom-loop threshold, and code execution:

How It Works

Instead of loading entire documents into the LLM window, PraisonAI stores large outputs as artifacts and lets agents peek, grep, and chunk them on demand. When tasks grow complex, escalation increases capability stage-by-stage; sub-agent delegation handles focused subtasks with scoped budgets.

Configuration Options

AutonomyConfig

Artifact queueing

Large tool outputs above inline_max_bytes (default 32 KB) are stored as artifacts automatically when queueing is enabled on the agent’s tool configuration.

Common Patterns

Explore a large artifact

Agents with autonomy enabled can inspect stored outputs without loading the full content:

Delegate a subtask


Best Practices

Set autonomy=True or AutonomyConfig(level="full_auto") when inputs exceed a few pages or require tool loops. Simple one-shot questions do not need it.
Keep doom_loop_threshold at 3–5 so agents stop when repeating the same tool call instead of burning tokens indefinitely.
level="full_auto" enables iterative mode, filesystem tracking, and sub-agent delegation — appropriate for code and data analysis over large corpora.
Pair ExecutionConfig(code_execution=True) with autonomy so agents can run Python over artifact contents rather than reasoning over raw text alone.

Autonomous Loops

Run agents in iterative loops with completion signals and escalation

Context Compaction

Automatically trim context when the window fills up