Here are 6 factors that interact to determine whether automation is viable, sustainable, and worth the trust you place in it:
1. Task volume & frequency: How often does this task occur, and at what scale?
Volume determines the economic ceiling of automation. A task performed 1,000 times per month has fundamentally different ROI potential than one performed twice. High-volume tasks amplify both the benefits of automation (massive time savings) and the risks (errors at scale).
Low-volume tasks are harder to justify because prompt tuning, edge-case handling, and monitoring costs don’t amortize. That said, low volume can still work when tasks are extremely time-intensive, block critical workflows, or require continuous availability.
Questions to ask:
How many times does this task run per week or per month?
Is the volume stable, growing, or seasonal?
Is this task repeated across teams or isolated to one function?
Examples:
High priority: Daily ticket routing handling 500+ requests.
Low priority: Quarterly strategy memo summarization.
2. Task structure: How well-defined is the work?
LLMs perform best when tasks have standard inputs (support tickets include specific fields), predictable outputs (extract these 5 fields, classify them into these 10 categories), or can be explained as a sequence of steps or conditional logic. Unstructured tasks require interpretation, judgment calls, or navigating ambiguity that varies case by case.
Questions to ask:
Are inputs consistent or highly variable?
Do outputs follow a recognizable pattern or template?
Can the task be explained as a sequence of steps or rules?
Are there edge cases, and can you enumerate them?
Examples:
Highly structured: Extract invoice number, date, vendor, and total. Clear fields, clear checks.
Poorly structured: Judge whether a contract clause is “fair.” Requires legal and contextual interpretation.
3. Time cost per task: How much time does the task currently consume?
A 5-min task automated 100 times per month saves ~8 hours. A 2-hour task automated 20 times saves ~40 hours. Time saved compounds when tasks are parallelizable, AI can handle multiple instances simultaneously while humans process sequentially.
This is where cognitive overhead matters. Tasks that interrupt deep work, force context switching, or create handoff delays impose hidden costs that don’t show up on a stopwatch. A 5-minute interruption can easily cost 20 minutes of lost focus. Automating these friction-heavy tasks often delivers disproportionate gains, even when raw time savings look modest.
Questions to ask:
How long does a human take to complete this task?
What's the opportunity cost of the person doing this work?
Does this task create workflow bottlenecks or interrupt focused work?
Economic checks:
Inference cost vs labor saved
Latency tolerance (batch vs real time)
Usage patterns (steady vs bursty)
Examples:
Strong ROI: Batch invoice processing. High volume (500/month), moderate time per task (15 minutes), and tolerates latency (overnight processing is fine).
Questionable ROI: Real-time fraud detection with expensive models and sub-second SLAs.
4. Error tolerance: What happens when the task is done incorrectly?
Error tolerance determines how much human oversight is required and whether automation is viable at all. Errors fall on a spectrum. Some are trivial: a meeting summary with a minor omission is inconvenient but easily corrected. Others are severe: misrouting a support ticket loses a customer, or miscalculating a financial model costs money and credibility.
More so, context matters in such scenarios. The same task can have different error tolerance in different contexts: Summarizing customer feedback for internal review vs summarizing legal testimony for court filings.
Questions to ask:
What's the impact of an incorrect output? Are there regulatory, compliance, or legal implications?
What's the worst-case scenario if automation fails catastrophically?
Does failure lead to inconvenience, financial loss, reputational damage, or legal exposure?
Examples:
High tolerance: Misclassifying a support ticket into "billing question" instead of "technical issue." Can be corrected when reviewed.
Medium tolerance: Extracting contract renewal dates incorrectly. Creates risk of missed deadlines, but can be caught during review before action is taken.
Low tolerance: Misreading a medical dosage in patient records. Irreversible harm potential, and not automatable without multiple layers of verification.