Skip to main content
Five production-ready agent pipelines built on the SRAO Framework, each targeting a specific industry with typed I/O schemas, SLA targets, and graceful fallback strategies. Five production-ready agent pipelines built on the SRAO Framework, each targeting a specific industry with typed I/O schemas, SLA targets, and graceful fallback strategies.
The user picks an industry template; agents parse the request and return a structured operations report.

Quick Start

1

Pick an industry and run

Each template ships a single workflow function you can call immediately:
2

Customise with IndustryAgentPattern

Every template exposes IndustryAgentPattern — a base class you can mix into any domain:

Which Template Should I Use?


Templates at a Glance


How It Works

All five templates share the same SRAO architecture — only the domain logic differs. Every step includes a fallback strategy — if an agent fails, the workflow degrades gracefully rather than crashing.

Cross-Industry Reuse with IndustryAgentPattern

IndustryAgentPattern provides four factory methods that power ~70 % of every template:

Pydantic I/O Schemas

Every template uses Pydantic models to enforce typed data between agents:

Common Patterns

Add a custom tool to any agent
Override the fallback strategy

Best Practices

Call manufacturing_workflow(), energy_monitoring_workflow(), etc. before customising. These functions already wire up all agents and fallbacks in the correct order.
Pass structured Pydantic objects (e.g. OrderDetails, VitalSigns) between agents instead of raw strings. This catches type errors early and makes pipelines easier to test.
Each agent declares its SLA in its instructions. Keep custom tools within those bounds — e.g. inventory checks must complete in ≤ 5 seconds to not block downstream agents.
These templates are based on the SRAO Framework (MIT). The IndustryAgentPattern class provides the shared 70 % reuse layer.

Manufacturing Template

Order processing, inventory, scheduling, and quality control agents.

Energy Template

Wind-farm monitoring, vibration analysis, and predictive maintenance agents.

Healthcare Template

Emergency triage, EMR retrieval, and resource allocation agents.

Agriculture Template

Multispectral analysis, disease detection, and yield prediction agents.