Scenario
An optimization with many interacting variables is too large for a fixed DOE and too slow for one-at-a-time trials. A self-driving campaign plans the space, lets active learning pick the most informative next experiments, dispatches them to the robot, analyzes the results, and repeats — converging with far fewer runs.
Worked example. A reaction yield must be maximized across temperature, catalyst loading, and solvent ratio within a fixed experiment budget.
Agent workflow
- Experiment campaign planner — define the variables, objectives, and budget; seed an initial design.
- Active-learning loop — fit a surrogate model and propose the next batch of experiments by acquisition value.
- Robotic protocol dispatch — translate the batch into robot instructions and run it.
- Lab result analysis — parse the measured results, update the model, and decide whether to continue or stop.
Demo output
A convergence trace showing the objective improving batch over batch, the proposed-vs-measured values, and the stopping decision. The magic moment: the loop reaches the optimum in a fraction of the runs a full-factorial DOE would need.
Deterministic vs LLM
- Deterministic — the DOE planning, Bayesian optimization, and result analysis.
- LLM — the campaign-strategy narrative and the stop-decision reasoning.
Every proposal and update is a validated calculation. The agent reads and routes; the engine decides.
Limits
Requires a lab that can execute the dispatched protocols; screening-level optimization, not a guarantee of the global optimum. It drives the search; the lab produces the truth.
Skills orchestrated by this use case
This scenario routes an AI agent through the following curated skills.
-
Experiment Campaign Planner
Autonomous LabsPlan an autonomous experimental campaign by translating a research goal and constraints into a concrete experiment set, selecting a design strategy, and defining the design–make–test–analyze (DMTA) loop with clear stop criteria, orchestrating Paramus DOE and planning tools.When to use: a user wants to set up a closed-loop experimental campaign.Multi-tool WORKFLOW with experimental-strategy judgment. -
Active Learning Loop
Autonomous LabsRun a closed-loop active-learning optimization that, given results from completed experiments, updates a surrogate model, proposes the next most informative experiments via an acquisition strategy, and decides whether to continue or stop — orchestrating Paramus ML/optimization tools.When to use: a user wants the system to choose the next best experiments automatically.Multi-tool WORKFLOW with acquisition-strategy judgment. -
Robotic Protocol Dispatch
Autonomous LabsTranslate an experiment design into an executable robotic protocol and dispatch it to lab automation via Paramus OPERATE, validating the protocol against instrument capabilities and safety constraints before submission and tracking execution.When to use: a user wants to run a planned experiment set on lab robots.Multi-tool WORKFLOW with automation-safety judgment. -
Lab Result Analysis
Autonomous LabsIngest raw results from completed lab runs, apply quality control, reduce and analyze the data against the campaign objective, and produce a decision-ready summary that feeds the next loop iteration — orchestrating Paramus analysis and statistics tools.When to use: a user has run experiments and needs analysis plus a recommendation.Multi-tool WORKFLOW with data-quality judgment.
Tools it reaches for
- Experiment campaign planning
- Active-learning / Bayesian optimization (BoFire)
- Robotic protocol dispatch (OpenTrons)
- Result analysis and model update
Browse the full deterministic layer in the tool browser.