Processors are the engines that execute Task Runs. The choice of Processor determines the performance profile and reasoning behavior used. Pricing is determined by which Processor you select, not by the Task Run itself. Any Task Run can be executed on any Processor.
Choose a processor based on the complexity of your task. Use Lite or Base for simple enrichments, Core for reliable accuracy on up to 10 output fields, and Pro or Ultra when reasoning depth is critical.
Each processor varies in performance characteristics and supported features. Use the table below to compare latency, output type, basis features, and more.
ProcessorInput TypeOutput TypeStrengthsLatencyCost ($/1000)Max FieldsBasis Features
LiteText, JSONText or JSONBasic metadata, fallback, low latency5-45s5~2 fieldsCitations, Reasoning
BaseText, JSONText or JSONReliable standard enrichments10-80s10~5 fieldsCitations, Reasoning
CoreText, JSONText or JSONCross-referenced, moderately complex outputs45-160s25~10 fieldsCitations, Reasoning, Confidence, Excerpts
ProText, JSONText or JSONExploratory web research60s-8min100~20 fieldsCitations, Reasoning, Confidence, Excerpts
UltraText, JSONText or JSONAdvanced multi-source deep research5-12min300~20 fieldsCitations, Reasoning, Confidence, Excerpts
Ultra2xText, JSONText or JSONDifficult deep research8-15min600~25 fieldsCitations, Reasoning, Confidence, Excerpts
Ultra4xText, JSONText or JSONVery difficult deep research8-20min1200~25 fieldsCitations, Reasoning, Confidence, Excerpts
Ultra8xText, JSONText or JSONThe most difficult deep research8-20min2400~25 fieldsCitations, Reasoning, Confidence, Excerpts
Cost is measured per 1000 Task Runs in USD. For example, 1 Task Run executed on the Lite processor would cost $0.005.

Examples

Processors can be used flexibly depending on the scope and structure of your task. The examples below show how to:
  • Use a single processor (like Lite, Base, Core, Pro, or Ultra) to handle specific types of input and reasoning depth.
  • Chain processors together to combine fast lookups with deeper synthesis.
This structure enables flexibility across a variety of tasks—whether you’re extracting metadata, enriching structured records, or generating analytical reports.

Sample Task for each Processor

run_result = client.task_run.execute(
    input="Parallel Web Systems (parallel.ai)",
    output="The founding date of the company in the format MM-YYYY",
    processor="lite"
)

Multi-Processor Workflows

You can combine processors in sequence to support more advanced workflows. Start by retrieving basic information with Base:
base_result = client.task_run.execute(
    input="Pfizer",
    output="Who are the current executive leaders at Pfizer? Include their full name and title. Ensure that you retrieve this information from a reliable source, such as major news outlets or the company website.",
    processor="base"
)
Then use the result as input to Core to generate detailed background information:
run_result = client.task_run.execute(
    input={base_result.output.content},
    output="For the executive provided, find their professional background tenure at their current company, and notable strategic responsibilities.",
    processor="pro"
)
This lets you use a fast processor for initial retrieval, then switch to a more capable one for analysis and context-building.