Handoffs are where promising projects quietly become expensive.
A biologist identifies a plausible target. A chemistry team designs a molecule that appears to bind it. Weeks later, pharmacology discovers that the molecule is poorly absorbed, rapidly cleared, or inconveniently toxic. The result travels back upstream as a report, perhaps accompanied by a meeting, several caveats, and the medicinal-chemistry equivalent of “please try again.”
The problem is not that any individual specialist failed. The problem is that each specialist optimised a different part of the system before learning what the next specialist needed.
OrchestRA approaches this coordination problem as an executable feedback loop rather than a sequence of isolated AI tools.1 It links target discovery, molecular generation, docking, ADMET prediction, and physiologically based pharmacokinetic modelling under a shared orchestrator. When a candidate fails a downstream pharmacology check, the failure becomes an input to another design cycle.
That feedback topology is the paper’s main contribution. The individual tools are mostly familiar. The more interesting question is what happens when they stop behaving like separate software products and begin behaving like departments required to respond to one another.
OrchestRA does not remove the pipeline; it gives the pipeline a return path
Drug-discovery diagrams usually move obediently from left to right:
Disease → Target → Molecule → Binding Evaluation → ADMET and PK
Reality is less cooperative. Potency improvements can increase molecular weight or lipophilicity. A chemically attractive scaffold can prove difficult to absorb. A molecule that survives one predictive model can fail another.
OrchestRA preserves an initial sequence but adds a structured route back:
Disease question
↓
Knowledge-graph target discovery
↓
Pocket detection and molecular generation
↓
Docking, ADMET prediction, and PBPK simulation
↓
Approve ───────────────→ Candidate output
│
└─ Reject + diagnosis → Molecular redesign → Re-evaluation
This distinction matters. Calling the system “end-to-end” can make it sound like a very long automated checklist. Its more consequential feature is that downstream evaluation is allowed to modify upstream design.
The Pharmacologist Agent does not merely attach a score to the final molecule. It can reject a candidate for reasons such as poor permeability, undesirable clearance, or toxicity risk. The Chemist Agent then begins another optimisation cycle. The paper describes a mechanism that converts qualitative pharmacological feedback into quantitative penalties within the molecular objective, such as constraints related to LogP or drug-likeness.
In operational terms, OrchestRA turns a pharmacology report from an endpoint into a control signal.
The orchestrator is a control plane, not simply a chat interface
The natural-language interface is the most visible part of OrchestRA, but it is not the part that makes the system reliable enough to be interesting.
Behind the conversation sits a stateful workflow implemented as a directed graph. A central Orchestrator Agent maintains shared state containing the original request, target information, pocket coordinates, candidate SMILES strings, intermediate results, and accumulated feedback. It routes work among three specialist agents:
| Agent | Primary responsibility | Representative tools and data |
|---|---|---|
| Biologist | Identify and rank potential therapeutic targets | Curated biomedical knowledge graph, multi-hop graph queries |
| Chemist | Detect pockets, generate molecules, and assess binding | P2Rank, DiffSBDD, AutoDock Vina, Boltz-2 |
| Pharmacologist | Evaluate drug-like properties and predicted behaviour in the body | ADMET-AI, five-compartment PBPK simulation |
Several workflow decisions are deliberately less “agentic” than the marketing vocabulary might suggest. The orchestrator checks whether generated SMILES strings are syntactically valid. It uses predefined approval flags to decide whether optimisation should continue. It stops after an iteration limit. Routing after pharmacological evaluation is deterministic rather than left entirely to an LLM’s interpretation.
That is sensible engineering. A system coordinating expensive scientific tools should not improvise every transition simply because improvisation looks impressive in a demonstration.
The agents use GPT-4o and the ReAct pattern to interpret tasks, invoke tools, and respond to outputs. Yet the workflow’s stability depends on conventional software controls: typed shared state, validity checks, explicit transitions, logged execution traces, and termination rules.
The agents may be presented as little specialists in lab coats. The orchestrator is closer to a workflow engine with unusually articulate operators.
Knowledge-graph grounding reduces invention, not uncertainty
The Biologist Agent operates over a biomedical knowledge graph assembled from 13 public sources and updated with data available in 2025. The graph contains 147,814 nodes and approximately 13.96 million relationships covering genes, proteins, diseases, drugs, phenotypes, pathways, anatomy, exposures, and related entities.
Rather than asking an LLM to recall plausible disease–target relationships from its parameters, the agent converts a user question into graph-search plans and executable Cypher queries. It can traverse paths of up to three hops, apply negative conditions such as excluding proteins already linked to approved drugs, and return a traceable chain of evidence.
This is considerably more defensible than unconstrained biological brainstorming. It is not, however, literally “hallucination-free,” despite the paper’s preferred phrase.
Grounding changes the type of error. The system is less likely to invent a nonexistent relationship, but it can still inherit incomplete evidence, outdated associations, disputed biological interpretations, inconsistent source mappings, or biased graph coverage. Candidate ranking also passes through a GPT-4o-based critic that evaluates relevance and novelty.
A graph-backed answer is traceable. Traceability makes errors easier to inspect; it does not make the graph omniscient.
The diabetes case reveals another important constraint. From an initial set of diabetes-related candidates, the Biologist Agent narrowed the field to five contextually relevant proteins. Four—ZBTB20, RETN, WFS1, and MAGEL2—were skipped because the system could not find suitable Protein Data Bank structures. HNF1B had an available structure and proceeded to human review.
HNF1B was therefore not selected solely because it was the biologically superior target. It was also the target that the downstream structural toolchain could act upon.
This is not necessarily a flaw. Businesses routinely prioritise opportunities that are both valuable and executable. But it means the platform’s definition of a promising target is partly shaped by the availability of machine-readable structural evidence.
The Chemist and Pharmacologist create the actual feedback loop
Once a target structure is available, the Chemist Agent retrieves and prepares the protein, detects a likely binding pocket, and explores two routes.
The first is de novo generation using the structure-conditioned diffusion model DiffSBDD. The second searches existing compounds from sources such as ChEMBL and DrugBank, enabling benchmarking and repositioning. Candidate molecules are screened using AutoDock Vina before selected compounds receive higher-fidelity structural evaluation with Boltz-2.
The Pharmacologist Agent then predicts ADMET properties from each molecule’s SMILES representation and converts selected outputs into inputs for a five-compartment PBPK model covering the gut, liver, kidney, central plasma, and non-eliminating tissue.
This arrangement matters because molecular quality is not represented by one score. A candidate may bind well yet be poorly absorbed. Improving permeability may disturb potency. Reducing lipophilicity may alter distribution. Drug discovery is an optimisation problem in which the objectives frequently disagree.
OrchestRA uses a hybrid of genetic algorithms and Bayesian optimisation to search this space. Fragment-level mutations generate possible descendants. A Gaussian-process model and acquisition function determine which candidates deserve more expensive docking evaluation. Pharmacological concerns can add penalties to the objective used in later cycles.
The critical mechanism is therefore not “three agents discuss a molecule.” It is:
- a downstream tool produces a diagnosis;
- the diagnosis changes the optimisation criteria;
- the upstream search generates a revised candidate;
- the candidate returns to the downstream evaluator.
That is the part of OrchestRA that turns integration into a scientific process rather than a software bundle.
What the experiments actually test
The paper presents several evaluations, but they do not all support the same claim. Treating every figure as proof of the entire platform would be convenient and wrong.
| Evaluation | Likely purpose | What it supports | What it does not establish |
|---|---|---|---|
| Pancreatic-cancer target queries | Component demonstration | The Biologist Agent can retrieve known targets and perform constrained multi-hop searches | That proposed novel targets are biologically valid |
| ABL1 generation and screening | Chemistry-stack benchmark and comparison | Generated molecules score competitively under the selected in-silico pipeline and occupy distinct chemical space | Experimental binding, cellular activity, or clinical suitability |
| FDA-library ABL1 screening | Screening implementation check | Known ABL1 inhibitors can be enriched near the top of the ranked library | General screening performance across diverse targets |
| Paracetamol PBPK comparison | Implementation validation | The PBPK engine can approximately reproduce one observed concentration profile | Broad predictive accuracy across drugs, doses, and populations |
| HNF1B agent-optimised versus randomly modified molecules | Main evidence for the optimisation loop | Directed optimisation improves selected predicted drug-like properties relative to random modification | Superiority to strong medicinal-chemistry or multi-objective optimisation baselines |
| Toxicity comparison between HNF1B groups | Robustness check | Improved physicochemical properties were not accompanied by a statistically detected increase in two predicted toxicity scores | That the molecules are safe |
| Final HNF1B pose and PBPK profile | Exploratory mechanistic hypothesis | The candidate has a plausible predicted binding mode and simulated exposure profile | That it modulates HNF1B or treats diabetes |
The difference between these categories is more important than the number of figures. The paper is strongest when showing that its components can be connected into a functioning loop. It is much less conclusive when moving from computational plausibility to therapeutic claims.
ABL1 validates the chemistry stack under its own modelling assumptions
ABL1 is a useful benchmark because it is a well-characterised kinase with known active compounds and approved drugs that can serve as references.
For the de novo experiment, the Chemist Agent produced 682 chemically valid generated molecules. These were compared with 198 known ABL1 actives from ChEMBL and 1,304 FDA-approved compounds from DrugBank. All three groups were redocked using the same AutoDock Vina procedure, avoiding the obviously unfair comparison of predicted scores against experimental measurements obtained under different conditions.
The generated molecules shifted toward stronger predicted binding than the broad FDA-drug library, with the paper reporting a statistically significant difference at $p < 0.001$. Their score distribution was closer to that of known ABL1 actives.
The result is meaningful, but its meaning is narrow: the generator produced molecules that the same docking pipeline regarded as plausible ABL1 binders.
It does not show that those compounds bind ABL1 experimentally. Docking functions are useful ranking tools, not miniature clinical trials.
The surrounding analyses address common failure modes of generative chemistry. Most generated molecules had a maximum Tanimoto similarity below 0.4 relative to known ABL1 actives, suggesting substantial scaffold novelty rather than minor analogue production. Their molecular-weight and QED distributions were not significantly different from the FDA-drug group, while ligand-efficiency analysis suggested that strong docking scores were not obtained merely by making molecules larger.
This supports the paper’s claim that the system avoided obvious “molecular obesity” within the chosen metrics.
The FDA-library repositioning experiment provides another implementation check. OrchestRA recovered clinically validated ABL1 inhibitors including Axitinib and Dasatinib near the top of the ranking and reported an Enrichment@1% value of 50%.
Together, these experiments show a competent structure-based generation and screening stack. They do not yet show that multi-agent orchestration itself improves chemistry performance. A comparison against the same tools operated through a fixed non-agentic workflow would have made that distinction clearer.
HNF1B shows the loop working—and exposes what “approved” means
The HNF1B case is the paper’s central end-to-end demonstration.
A user begins with a broad natural-language request to find a drug for diabetes. The Biologist Agent searches the knowledge graph and presents candidate targets. After the user selects HNF1B, the Chemist Agent identifies a structural pocket and begins generating molecules.
The first selected candidate reaches the Pharmacologist Agent and is rejected because predicted rapid clearance and poor permeability could limit effectiveness. A revised molecule is again rejected, this time partly because of predicted clearance and toxicity concerns. The optimisation loop then produces the final candidate:
COC1CC(O)(c2ccncc2)CON1CC(=O)O
The system reports a molecular weight of 268.27, LogP of approximately -0.04, QED of 0.791, and a Boltz-2 predicted binding free energy of -5.85 kcal/mol. It predicts interactions with Gln41, Gln47, and Ser62 in HNF1B’s POU-specific domain, leading the authors to propose a possible mechanism involving modulation of DNA recognition.
This is an interesting hypothesis. It is still a hypothesis.
The word “Approved” in the workflow means that the candidate crossed the Pharmacologist Agent’s internal decision threshold. It does not mean that the molecule has been approved by a medicinal chemist, validated in a biochemical assay, shown to alter HNF1B activity, tested in cells, evaluated in animals, or accepted by a regulator.
Software approval is a routing decision.
Scientific approval remains stubbornly less conversational.
The HNF1B comparison supports directed optimisation, not therapeutic discovery
To test whether the loop improves molecules rather than merely generating different ones, the authors compare 20 agent-optimised candidates with 100 molecules produced through random modifications of initial de novo designs.
Relative to this random baseline, the agent-optimised group shifts toward higher predicted bioavailability and QED while maintaining reasonable LogP. The paper also traces candidate selection across generations, showing that molecules selected for later optimisation tend to possess more favourable properties than discarded candidates.
This is the paper’s clearest evidence that pharmacological evaluation can guide the chemistry search in a useful direction.
Its boundary is the baseline. Random molecular modification is deliberately weak. Beating it shows that directed optimisation is better than unguided perturbation, which is reassuring but not surprising. The experiment does not compare OrchestRA against an experienced medicinal-chemistry team, a strong non-agentic multi-objective optimisation system, or alternative agent architectures.
The toxicity analysis is similarly easy to misread. The predicted carcinogenicity and drug-induced liver-injury distributions were not significantly different between the agent-optimised and random groups, with reported $p$-values of 0.416 and 0.359.
That supports a limited robustness claim: the observed gains in selected physicochemical properties were not accompanied by a statistically detected increase in those two predicted toxicity metrics.
It does not prove equivalent safety. A non-significant result, particularly with 20 optimised molecules, is not a safety certificate wearing a statistics hat.
Natural language lowers interface cost, not scientific responsibility
OrchestRA’s third contribution is accessibility. The workflow can be steered through requests such as selecting a target, asking for improved metabolic stability, or requesting another optimisation round. Users do not need to write the scripts that connect graph databases, molecule generators, docking software, ADMET predictors, and differential-equation solvers.
That can materially lower the interface barrier for researchers who understand the science but do not maintain computational pipelines.
However, “no code required from the user” is not the same as “little infrastructure required by the organisation.”
The platform depends on a manually curated knowledge graph, licensed or restricted data sources, multiple specialised models, separate execution environments, protein structures, computational resources, and ongoing maintenance. The supplementary execution logs include invalid SMILES strings, parsing errors, deprecation warnings, and candidates with physically questionable predicted values such as negative clearance estimates.
The system handles some of these issues and continues operating, which demonstrates active execution. It also demonstrates that tool orchestration does not make tool brittleness disappear.
The interface is conversational. The infrastructure is not.
The near-term business value is coordination before it is discovery
The paper directly demonstrates an integrated in-silico workflow. Moving from that observation to a business case requires a separate layer of reasoning.
| Interpretation level | Defensible conclusion |
|---|---|
| What the paper directly shows | Specialised agents can execute a connected target-to-candidate workflow and route pharmacological rejection back into molecular redesign |
| What Cognaptus infers for practical use | Such a control layer could reduce manual handoffs, preserve decision context, and eliminate some unattractive candidates before synthesis |
| What remains uncertain | Whether the system improves wet-lab hit rates, lowers total programme cost, shortens discovery timelines, or generalises across targets and organisations |
The most plausible early deployment is not an autonomous virtual pharmaceutical company. It is an operating layer for computational triage.
A small biotech or academic laboratory could use the system to explore targets, generate candidates, expose obvious predicted liabilities, and preserve the reasoning and artefacts produced across the workflow. Experts would remain responsible for defining objectives, choosing among targets, reviewing model outputs, and deciding which hypotheses deserve physical experiments.
For larger pharmaceutical organisations, the value may lie less in access to individual tools—many already possess more sophisticated ones—and more in controlling the flow among them. A shared agent state can reduce context loss. Explicit feedback routes can make redesign criteria visible. Execution logs can improve reproducibility and reveal where a candidate was rejected.
The business claim should therefore be tested through operational measures rather than impressive molecule renderings:
- time from target question to reviewable candidate set;
- expert hours required per iteration;
- proportion of candidates rejected before synthesis;
- reproducibility of runs and decisions;
- false-negative rate for candidates later found valuable;
- wet-lab confirmation rate;
- cost of maintaining models, data, and execution environments.
The paper reports none of these economic outcomes. OrchestRA offers a credible mechanism through which they might improve, not evidence that they already have.
The platform’s limits define the work still left for businesses
Three boundaries materially affect how OrchestRA should be used.
First, every substantive result remains in silico. The final HNF1B molecule has not been shown to bind or modulate HNF1B experimentally, much less improve diabetes outcomes. The proposed interaction with the POU-specific domain is a computationally generated mechanistic hypothesis.
Second, the loop compounds tool errors as efficiently as it compounds useful feedback. Knowledge-graph gaps affect target choice. Pocket detection shapes molecular generation. Docking scores shape selection. ADMET predictions feed PBPK parameters. If an early model is systematically wrong, orchestration may turn the error into a confidently optimised design objective.
Third, the evaluation does not isolate the contribution of orchestration from the contribution of the underlying tools. The paper demonstrates that the complete system runs and produces promising outputs. It does not yet show how much performance is lost when the agents, natural-language control, shared memory, or pharmacology feedback are removed.
For adoption, these are not decorative academic caveats. They determine governance.
Organisations will need versioned data, validated model scopes, explicit approval criteria, expert review checkpoints, and audit trails focused on tool inputs and outputs rather than persuasive agent explanations. They will also need a policy for deciding when the system should stop optimising and admit that its modelling assumptions may be wrong.
The end of linear discovery is really the beginning of managed iteration
OrchestRA does not discover a validated diabetes medicine. It does something more modest and, for now, more useful: it demonstrates how specialised scientific tools can be arranged so that downstream failure changes upstream action.
The ABL1 results show that the chemistry pipeline can generate and rank plausible, structurally novel candidates under established computational models. The HNF1B case shows the complete workflow moving from a disease-level request to target selection, molecular generation, pharmacological rejection, redesign, and internal approval. Natural-language control makes that process accessible to users who would otherwise need to assemble and operate each computational component themselves.
The unresolved questions are substantial. Wet-lab validation is absent. The optimisation baseline is weak. Business savings are inferred rather than measured. Model and data errors can propagate throughout the loop.
Still, the architectural lesson survives those boundaries.
A drug-discovery pipeline does not become intelligent merely because every department acquires an AI model. It becomes more coherent when each stage can observe the consequences of earlier decisions, return a precise diagnosis, and alter what happens next.
OrchestRA’s most credible promise is therefore not autonomous discovery. It is the replacement of disconnected computational handoffs with managed, traceable iteration.
For an industry accustomed to discovering downstream problems after upstream commitments, that would already be a meaningful change.
Cognaptus: Automate the Present, Incubate the Future.
-
Takahide Suzuki, Kazuki Nakanishi, Takashi Fujiwara, and Hideyuki Shimizu, “Democratizing Drug Discovery with an Orchestrated, Knowledge-Driven Multi-Agent Team for User-Guided Therapeutic Design,” arXiv:2512.21623, 2025. https://arxiv.org/abs/2512.21623 ↩︎