Quick Start
1
Simple Usage
Run the built-in benchmark from the CLI:
2
With Configuration
Add a CI gate that fails on regressions:
Performance Targets
How It Works
CLI commands
Python benchmark scripts
From the SDK repo:Configuration Options
Typical results on a modern system:
Best Practices
Use silent output in production
Use silent output in production
output="silent" is the default — zero Rich overhead on the hot path. Keep it for APIs and batch jobs.Import only what you need
Import only what you need
Prefer
from praisonaiagents import Agent over star imports to minimise load time.Gate CI on import time
Gate CI on import time
Add the 300 ms assert to your pipeline so lazy-loading regressions fail early.
Use LiteAgent for minimal footprint
Use LiteAgent for minimal footprint
For embedded or high-volume use,
from praisonaiagents.lite import LiteAgent reduces memory further.Related
Lazy Imports
How lazy loading keeps startup fast
Performance CLI
CLI commands for benchmarking and regression checks

