The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

A low-cost PPO controller can match most of the accuracy of frontier LLM co‑scientists in a protein-characterization task while being faster, deterministic and cost-free; expert-prompted LLMs edge out accuracy but at materially higher token cost and lower consistency, and federated deployment imposes almost no performance penalty.

Federation Is Nearly Free, Reasoning Is Not: Tradeoffs for AI Co-Scientists in Protein Characterization Workflows
Maia Kapur, Timothy Boe, Abby Jerger, Paul Rigor · August 25, 2026
arxiv quasi_experimental medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Maia Kapur unresolved corpus identity
  2. Timothy Boe unresolved corpus identity
  3. Abby Jerger unresolved corpus identity
  4. Paul Rigor unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Maia Kapur provider ID
  2. Timothy Boe provider ID
  3. Abby Jerger provider ID
  4. Paul Rigor provider ID
In a controlled protein-characterization benchmark on a federated orchestration platform, a deterministic PPO controller delivered near-frontier accuracy (~88%) with zero token cost, faster latency and perfect consistency, while expert-prompted LLMs achieved the highest accuracy (~92–94%) at substantially higher token cost and lower consistency, and federation topology had negligible impact.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Natural language driven autonomous co-scientist workflows involve a fundamental trade-off between flexibility and reasoning at the expense of determinism, reproducibility, and observability. Such agents increasingly must communicate across institutional boundaries, where federation topology can shape latency and cost. We systematically evaluated these tradeoffs using a controlled ablation on a production agentic platform for science. We use a verifiable task: given a protein sequence, we ask an agent to confidently characterize its function by routing across common tools. We compare federation topology, classic RL vs LLM-driven harnesses, language model, and prompt expertise. We also stratify results by protein novelty. We find that the choice of LLM dominated prediction quality far more than topology or prompting (Opus ~92%-94% vs o4-mini ~40%-50%). The PPO policy was nearly as accurate as the best LLM (88%) at zero token cost, fastest latency, and perfect consistency, but yields no reasoning trace. Expert prompted LLMs reached the highest accuracy but were high-cost and less consistent; prompt dependence was largest when the task was hardest. Federation imposed a negligible penalty on performance. These results offer actionable guidance for deploying agents for scientific workflows: for routine, verifiable tasks, a cheap deterministic policy delivers near-frontier accuracy with complete reproducibility, while flexible LLM reasoning is best reserved for open-ended discovery.

Summary

Main Finding

Federation topology has negligible impact on scientific-agent performance, but the choice of controller drives the dominant tradeoffs: a cheap, deterministic PPO policy delivers near-frontier accuracy (≈88%), perfect reproducibility, and minimal latency/cost, whereas LLM-driven harnesses (especially expert-prompted frontier models) give higher peak accuracy (Opus ≈92–94%) at substantially greater token cost and lower consistency; low-cost LLMs (o4-mini) performed much worse (~40–50%). Prompt sensitivity grows when proteins are novel (low BLAST confidence).

Key Points

  • Controller choice dominated outcomes. Model selection (Opus vs o4-mini) mattered far more than federation or prompt style.
    • Claude Opus 4.8 (expert prompt): ≈92–94% accuracy (highest), but high token cost and lower trial-to-trial consistency.
    • o4-mini (zero/weak prompt): ≈40–50% accuracy (worst).
    • PPO (classical reinforcement learning, off-the-shelf stable-baselines3): ≈88% accuracy, zero token cost (no LLM calls), fastest latency, perfect determinism/consistency, but provides no language reasoning trace.
  • Cost structure and tokens are material. Example pricing used: o4-mini $3.43 / 1M tokens; Opus 4.8 $18.97 / 1M tokens. Tool costs modeled as $5 per BLAST call, $10 per AlphaFold call.
  • Federation topology (monolithic vs federated across labs) imposed a negligible penalty on task performance in this setup; orchestration and telemetry made cross-site deployments feasible without large accuracy loss.
  • Prompt engineering matters, especially for hard/novel items: expert prompts increased LLM accuracy but also increased token usage and produced less consistent outputs across rollouts.
  • PPO learned a near-universal AlphaFold-escalation strategy (often calling structure prediction), while expert-prompted Opus rarely called AlphaFold yet maintained high accuracy—different emergent strategies can reach similar accuracy with different costs.
  • Observability vs reasoning tradeoff: deterministic controllers (PPO) give full reproducibility and stable decisions but no natural-language chain-of-thought; LLM harnesses provide reasoning traces useful for interpretability and discovery but are stochastic and more expensive.

Data & Methods

  • Task and benchmark:
    • Verifiable protein function characterization: given UniProt accession/sequence, agent predicts functional annotations (Gene Ontology terms for Molecular Function and Biological Process).
    • Dataset: 314 unique proteins sampled to cover BLAST-confidence regimes (well-characterized bacteria for high BLAST identity; divergent eukaryotes N. gruberi and H. vulgaris for low BLAST identity). Dataset split (paper reports multiple splits; training/test subsets used for experiments and prompt tuning).
    • Evaluation: 5 rollouts per protein; metrics aggregated across 10 ablation experiments.
  • Tools and signals:
    • BLAST (sequence homology) returns percent identity (treated as BLAST confidence) and supports GO-term transfer; AlphaFold returns pLDDT structural confidence (used to shape reward but not for GO transfer).
    • Tool costs and latencies explicitly modeled in reward.
  • Experimental variables (ablation):
    • Two federation topologies: monolithic (all tools local) vs federated (tools hosted at separate lab instances, cross-gateway auth via Keycloak).
    • Two harness classes: classical PPO RL controller vs prompt-driven LLM harness.
    • Two prompt configurations: minimal (zero-shot) vs augmented/expert (explicit thresholds and routing strategy).
    • Two LLMs tested: o4-mini (low-cost) and Claude Opus 4.8 (frontier).
  • PPO agent:
    • Observation: 9-dim numerical vector (seq length, BLAST conf, AlphaFold conf, accumulated cost, tool-called indicators).
    • Action space: Discrete(3) — call BLAST, call AlphaFold, STOP. Episodes ≤5 steps.
    • Training: stable-baselines3 PPO, default hyperparameters, trained quickly (~15 minutes on CPU), three seeds per condition.
    • Reward combined accuracy, per-tool cost penalties ($5 BLAST, $10 AlphaFold), wall-clock penalty, and bonuses (pLDDT, BLAST confidence).
  • LLM harness:
    • Single-pass inference per protein via ADEPT orchestration, temperature 0.0 (greedy decoding).
    • Prompt templates refined on training data to ensure formatted ROUTING_SUMMARY traces; no gradient updates to models.
    • Token usage and cost estimated from traces (system prompt ~11k tokens excluded).
  • Metrics:
    • Accuracy (binary per protein if any predicted GO term overlaps ground truth).
    • Consistency (agreement across 5 rollouts; 0.5–1.0 scale).
    • Tool efficiency (accuracy + confidence normalized over cost ratio).
    • Token/inference cost and wall-clock speed.

Implications for AI Economics

  • Cost vs performance tradeoffs are actionable and large:
    • Deterministic, low-cost controllers (PPO-style) can achieve near-frontier accuracy for routine, well-specified, verifiable tasks at minimal marginal cost (no LLM tokens) and with perfect reproducibility — strong case for deploying such controllers to reduce operational budgets.
    • Frontier LLMs yield higher peak accuracy on hard tasks but impose significant token costs and produce inconsistent outputs, raising expected per-task costs and the need for repeated runs or human oversight.
    • Low-cost LLMs may be false economy for scientific tasks: o4-mini performed poorly here, so token-price alone is not a reliable proxy for cost-effectiveness.
  • Federation is nearly free (in accuracy terms) but not irrelevant:
    • Cross-institution, federated tool hosting can be supported without major performance degradation; economic planning should therefore focus on controller and token costs rather than assuming federation will drive large accuracy penalties.
    • However, federation introduces modest operational overheads (auth, telemetry, slightly increased latency/calls) that need accounting in budget and SLAs even if accuracy is unaffected.
  • Observability and auditability have economic value:
    • Deterministic policies simplify auditing, reproducibility, and regulatory compliance (lower verification/testing cost). They reduce hidden costs (repeated experiments, investigator time) tied to nondeterministic LLM outputs.
    • LLM reasoning traces are valuable for discovery and human interpretation but increase costs: tokens, human review, and probabilistic validation pipelines.
  • Procurement and system design recommendations:
    • Use deterministic RL or rule-based controllers for routine, verifiable workflows to minimize per-task cost and guarantee reproducible outcomes.
    • Reserve expensive, prompt-engineered LLM reasoning for open-ended discovery, hypothesis generation, or when dealing with low-confidence / highly novel inputs; expect higher marginal cost and invest in prompt engineering and trace capture.
    • Adopt hybrid architectures: cheap deterministic controller by default, with an LLM fallback triggered under high uncertainty (e.g., BLAST confidence < threshold). This captures most economic upside with limited LLM spend.
    • Model and track token costs, tool call costs, and latency in procurement decisions. Large per-token price differences (example: $3.43 vs $18.97 per 1M tokens) multiply across high-throughput workflows.
  • Risk & policy considerations:
    • Deterministic controllers lack natural language reasoning traces — this reduces transparency even as it improves reproducibility; organizations must weigh traceability vs determinism when regulatory auditability is required.
    • Investing in observability (per-tool cost attribution, per-call telemetry) is essential to translate technical tradeoffs into economic decisions and to enforce budget controls in federated deployments.

Limitations to keep in mind (affecting economic generalizability) - The task is narrowly scoped (GO-term transfer via BLAST + optional AlphaFold), so results may not generalize to all scientific domains or more open-ended multi-step discovery tasks. - PPO used was a modest off-the-shelf implementation and observation/action design was simplified; more sophisticated learned controllers might change the tradeoffs. - LLM experiments used temperature 0.0 and no policy fine-tuning—different deployment settings (higher temperature, chain-of-thought prompting, RLHF updates) can change cost/accuracy/consistency profiles.

Actionable takeaway - For routine, verifiable scientific workflows: prioritize cheap deterministic controllers (or hybrid default controllers with LLM fallbacks) to minimize cost and ensure reproducibility. Allocate frontier LLM spend selectively to tasks requiring flexible reasoning or when handling novel data with low-confidence signals.

Assessment

Paper Typequasi_experimental Evidence Strengthmedium — The paper reports systematic, instrumented experiments with repeated trials, multiple seeds, and unified metrics, which credibly show differences across controllers under the studied conditions; however the dataset is modest and domain-specific, reward/accuracy definitions are somewhat coarse (binary GO overlap without hierarchy), and external validity beyond the ADEPT tools, protein selection, and chosen LLM models is limited, so causal generalization beyond this controlled environment is constrained. Methods Rigormedium — The authors use reproducible platform instrumentation, clear ablation structure, repeated rollouts, and multiple seeds; however there are limitations: modest sample size and species coverage, some ambiguity in the text about training/test splits, an accuracy metric that ignores GO hierarchy, AlphaFold cannot directly produce GO terms (so structural calls only affect reward indirectly), and only a few model variants and seeds were tested—reducing robustness for broad claims. SampleBenchmark of 314 unique proteins drawn from UniProt across four organisms (well-characterized bacteria E. coli and P. putida, and divergent eukaryotes N. gruberi and H. vulgaris) assembled via UniProt/BLAST/AlphaFold APIs; data split reported as 80/20 (train/test) though text also references a 120-protein training split and evaluation on 30 held-out proteins for PPO; experiments run with five rollouts per test protein, PPO trained with stable-baselines3 for 500 episodes with three seeds, and LLM harnesses evaluated via ADEPT traces at temperature 0.0 using two prompt strategies and two LLM models (Anthropic Opus 4.8 and OpenAI o4-mini). Themeshuman_ai_collab productivity IdentificationControlled ablation/within-environment comparison: the authors run multiple, fixed experiments (PPO vs LLM harnesses, monolithic vs federated topologies, prompt variants) on the same ADEPT orchestration platform and the same held-out protein test set, using repeated rollouts and multiple seeds to isolate the effect of harness/topology/model on accuracy, cost, latency, and consistency; no random assignment to human subjects or external instruments, identification rests on keeping environment and metrics constant across conditions. GeneralizabilityDataset limited to 314 proteins and four chosen organisms; results may not hold for broader proteomes or other biological domains., Accuracy metric (binary GO term overlap, no hierarchical matching) simplifies functional correctness and may bias reward/learned strategies., AlphaFold cannot directly yield GO annotations, so structural tool use only impacts reward indirectly; different task formulations could change relative performance., PPO observation space uses engineered numeric features (no raw sequence input), restricting applicability to agents that can access similar structured telemetry., Results tied to ADEPT orchestration and specific federation/auth stacks; other orchestration platforms, tool latencies, or authentication overheads could alter cost/latency tradeoffs., Only two LLM models and limited prompt variants tested; different LLMs or prompt-tuning regimes could shift findings., Short episode horizon and discrete action set (BLAST, AlphaFold, STOP) abstract away more complex workflows where reasoning chains or multi-tool synthesis matter.

Claims (10)

ClaimDirectionOutcomeConfidence & EvidenceDetails
The choice of language model dominated prediction quality more than federation topology or prompting: Claude Opus achieved approximately 92%–94% accuracy, whereas o4-mini achieved approximately 40%–50% accuracy. Output Quality positive Accuracy of protein-function characterization based on Gene Ontology term overlap
Reading fidelity high
Study strength medium
n=30
Opus ~92%-94% vs o4-mini ~40%-50%
0.48
The PPO policy achieved 88% accuracy, nearly matching the best-performing LLM. Output Quality positive Protein-function prediction accuracy
Reading fidelity high
Study strength medium
n=30
88% accuracy
0.48
The PPO policy incurred zero token cost, had the fastest latency, and produced perfectly consistent predictions. Organizational Efficiency positive Inference cost, latency, and prediction consistency
Reading fidelity high
Study strength medium
n=30
zero token cost; perfect consistency
0.48
Expert-prompted LLMs achieved the highest accuracy but were more expensive and less consistent than the deterministic PPO policy. Output Quality mixed Prediction accuracy, inference cost, and cross-rollout consistency
Reading fidelity high
Study strength medium
n=30
highest accuracy; high-cost and less consistent
0.48
Prompt dependence was greatest for the hardest protein-characterization cases. Output Quality negative Sensitivity of prediction performance to prompt configuration across protein novelty or difficulty levels
Reading fidelity high
Study strength medium
n=30
prompt dependence was largest for the hardest cases
0.48
Federation imposed a negligible penalty on prediction performance. Output Quality null_result Protein-function prediction performance under federated versus monolithic topology
Reading fidelity high
Study strength medium
n=30
negligible penalty
0.48
The PPO policy learned a near-universal strategy of escalating to AlphaFold across BLAST-confidence and sequence-length bins. Task Allocation positive Tool-routing and task-allocation behavior
Reading fidelity high
Study strength medium
n=30
near-universal AlphaFold escalation
0.48
Most LLM harnesses also tended to always escalate to AlphaFold, achieving high accuracy through exhaustive tool use at maximum cost. Task Allocation mixed Tool-use strategy, prediction accuracy, and tool cost
Reading fidelity high
Study strength medium
n=30
high accuracy at maximum cost
0.48
Expert-prompted Opus rarely called AlphaFold while maintaining accuracy above 92%. Output Quality positive Protein-function prediction accuracy and AlphaFold invocation rate
Reading fidelity high
Study strength medium
n=30
>92% accuracy
0.48
Zero-shot o4-mini had low tool invocation and the worst overall accuracy among the evaluated harnesses. Output Quality negative Protein-function prediction accuracy and tool-invocation rate
Reading fidelity high
Study strength medium
n=30
worst accuracy overall
0.48

Notes