Agent behaviour is non-deterministic
Systems that plan, call tools, retry, and delegate fail unpredictably under long-horizon and ambiguous workflows.
Local-first evaluation, observability, and control-plane infrastructure for agentic AI workflows that need evidence before production deployment.
What the control plane captures and produces
Organisations are moving from AI pilots to agentic workflows, but many systems still fail in ways that are hard to observe, reproduce, price, or control. The next bottleneck is not access to models. It is knowing which AI systems are reliable enough, private enough, cost-effective enough, and auditable enough to deploy.
Systems that plan, call tools, retry, and delegate fail unpredictably under long-horizon and ambiguous workflows.
Every tool call, retry, and delegation introduces failure modes that generic application logs never capture.
Multi-step and multi-model workflows have nonlinear token, runtime, and latency behaviour that must be measured.
Private workflows cannot always send data to external model APIs during early experimentation.
Standard model benchmarks do not predict how a system behaves in a real, tool-using, production workflow.
Reliability, privacy, cost, and auditability need to be captured as evidence before deployment decisions scale.
A research and prototype platform for evaluating, observing, and constraining agentic AI systems under controlled conditions. It turns uncertain AI ideas into measured experiments, benchmark evidence, and deployment-readiness signals.
Tests model and workflow reliability against domain-specific benchmarks, with reliability targets, failure-mode capture, and repeatable, seeded test runs.
1from entropella.assure import Suite, Task, reliability2 3suite = Suite(4 name="support-triage",5 tasks=load_tasks("tasks/triage.jsonl"),6 target=reliability(pass_rate=0.95, max_variance=0.03),7 runs=20, # repeated, seeded runs for variance8)9 10report = suite.evaluate(11 system=agent,12 scorers=[exact_match, tool_call_valid, safe_refusal],13)14 15report.assert_meets_target() # fails the run if below target16report.save("evidence/triage_eval.parquet")Assurance is only as good as what it can measure. The control plane captures the signals that determine whether an agentic workflow is ready for a real environment.
Does it behave, run after run
What it costs to run at speed
What leaves the boundary, and can it be traced
How it holds up in production
Local compute supports private, reproducible, cost-bounded experimentation where model weights, data handling, latency, quantisation, and GPU-memory constraints are part of the research question. Cloud infrastructure supports managed model comparison, experiment storage, scalable APIs, observability, collaboration, and deployment sandboxes.
Test open-weight models on sensitive data with offline-capable, private inference.
A controlled hardware and software environment for repeatable baselines.
Local benchmarks define which workloads actually deserve cloud scale.
Compare model sizes, quantisation methods, and GPU-memory constraints.
Cloud services compare managed models, run scalable benchmarks, and host deployment sandboxes.
Cloud stores experiment evidence, exposes prototype APIs, and supports observability and collaboration.
Focused technical tracks that map directly to the control plane: reliability, observability, privacy boundaries, local/cloud economics, and evidence infrastructure.
Measuring consistency, robustness, predictability, and safe failure behaviour in tool-using AI systems.
Testing open-weight and managed models across sensitive data workflows with controlled privacy boundaries.
Measuring when workloads should stay local, move to managed services, or scale through cloud infrastructure.
Benchmark and failure taxonomies for data-intensive workflows such as geospatial and environmental intelligence.
Trace requirements, escalation paths, and evidence capture for regulated and data-sensitive industries.
Experiment records that support technical decisions, customer trust, and reproducible review.
A preview of the full research library: technical notes on agent reliability, observability, privacy boundaries, RAG evaluation, and evidence infrastructure. Each note states the question, method, limitations, and current maturity.
Open research libraryEntropella Labs studies AI systems as workflows, not demos. Each assurance cycle starts with a technical uncertainty, turns it into a testable hypothesis, runs controlled experiments, records failures, and produces evidence that can be reviewed before deployment.
Entropella Labs is an Australian AI assurance lab developing local-first infrastructure for agentic and high-stakes applied AI systems. We build evaluation harnesses, agent observability layers, benchmark protocols, and reproducible evidence systems that help determine whether AI workflows are reliable, private, cost-effective, auditable, and ready for deployment.