Intelligence that learns across sites, reasons with rules, and acts on its own
We build AI for environments where the data cannot be pooled, every decision has to be explainable, and the work has to keep running without a person in the loop.
- Agentic AI
- Multi-Agent Systems
- Federated Intelligence
- Causal AI
- Neuro-Symbolic Reasoning
- Continual Learning
- Knowledge Graphs
- Edge AI
- Trustworthy AI
Federated intelligence: learning from data you are never allowed to move
Operators, plants and research sites all sit on data they cannot share. Sometimes regulation blocks it. Sometimes a contract does. Sometimes the volume simply makes moving it impractical.
Federated learning trains one model without moving any of it. Each site trains locally, on its own hardware, against its own data. Only the learned parameters leave the site. An aggregator merges those updates into a stronger global model and sends it back down.
- Every participant ends up with a model shaped by all the others.
- No participant ever sees another participant's raw data.
It turns competitors and separate jurisdictions into a single training set, without anyone giving up custody of what they hold.
Causal and neuro-symbolic reasoning: a model proposes, a rule layer decides
Neural models are excellent at patterns and poor at guarantees. They will confidently propose an action that breaches a safety limit, a service agreement or a regulatory constraint, and give no warning that they have done so.
So we put a symbolic layer in front of the output. Explicit rules, hard constraints and a knowledge graph check every proposed action before anything executes. Approved actions run. Rejected actions are logged with the reason and the specific rule that caught them.
Causal models sit alongside it, so the system reasons about what an action will cause, not only what has correlated in the past.
You get the adaptability of a learned model with an audit trail a regulator or a customer can actually read.
Agentic AI and multi-agent systems: many specialists, one objective
One large model asked to handle everything is slow, expensive and hard to trust. We split the work instead. Each agent owns a narrow domain and runs its own closed loop: perceive, reason, plan, act, learn.
An orchestrator hands out goals, resolves conflicts between agents and keeps them pointed at the same objective. Where two domains overlap, the agents negotiate directly rather than escalating everything upward.
Adding a capability means adding an agent, not retraining the system. And when something goes wrong, you can see which agent decided what.
Automation that follows a script breaks the moment reality drifts from the script. Agents reason about the situation in front of them.
Components of the architecture
-
Agentic AI
A closed loop per agent: perceive, reason, plan, act, learn.
-
Multi-agent systems
Specialised agents, direct collaboration and distributed decision-making, with multi-agent reinforcement learning where it earns its place.
-
Federated & distributed intelligence
Cross-site learning, privacy and IP preservation, decentralised intelligence and learning at the edge.
-
Causal & neuro-symbolic reasoning
Neural learning combined with causal and structural models, symbolic knowledge and explicit reasoning.
-
Continual & adaptive learning
Models that keep learning after deployment instead of freezing at their training set.
-
Trustworthy AI
Explainability, uncertainty, human oversight, governance, reliability and validation at runtime.
Standards and references
A short, deliberately selective list. Each entry carries the reason it is here.
-
ISO/IEC JTC 1/SC 42 — Artificial Intelligence
(opens in a new tab)
The umbrella committee for AI terminology, governance, trustworthiness and lifecycle. Our reference point for how AI systems should be described and assessed.
-
ISO/IEC 42001:2023 — AI Management Systems
(opens in a new tab)
The management-system standard for governing AI responsibly across its lifecycle, which is what a partner or a regulator will ask us about first.
-
IEEE 2807-2022 — Framework of Knowledge Graphs
(opens in a new tab)
Directly relevant to the structured knowledge layer that sits underneath our neuro-symbolic reasoning work.
-
ETSI — Artificial Intelligence
(opens in a new tab)
Trustworthy AI, AI testing, distributed data and AI-enabled network management — the closest standards work to how we deploy models in operational networks.
Research and resources
For further information, see the selected references, standards and research resources below.
-
AI — overall
Stanford AI Index 2026 (opens in a new tab)
A rigorous, data-driven global view of the state of AI, covering agents, robotics, investment, technical performance and responsible AI.
Stanford HAI -
Trustworthy AI
NIST AI Risk Management Framework (opens in a new tab)
The reference framework behind our emphasis on reliable, trustworthy operational AI. NIST is also developing a critical-infrastructure AI profile.
NIST -
Multi-agent AI
Large Language Model Based Multi-Agents: A Survey (opens in a new tab)
The academic account of the move from single agents to collaborative multi-agent systems.
IJCAI -
Multi-agent AI
Multi-Agent Collaboration Mechanisms: A Survey of LLMs (opens in a new tab)
Directly relevant to our work: cooperation, coordination structures and applications including 5G/6G and Industry 5.0.
arXiv -
Federated AI
Communication-Efficient Learning of Deep Networks from Decentralized Data (opens in a new tab)
The foundational federated learning paper by McMahan et al. — distributed training that keeps source data decentralised.
arXiv -
Federated AI
Flower — a friendly federated AI framework (opens in a new tab)
A practical, state-of-the-art reference for implementing federated AI across distributed nodes and separate organisations.
Flower -
Neuro-symbolic AI
From Statistical Relational to Neurosymbolic AI: A Survey (opens in a new tab)
An open-access survey on combining neural learning with logic and reasoning — the basis of our neuro-symbolic work.
Artificial Intelligence -
Causal AI
DoWhy — causal reasoning and inference (opens in a new tab)
Causal reasoning, intervention analysis and causal graphs: the distinction between correlation-based ML and reasoning about what an action will cause.
Microsoft Research