AI Engineer World's Fair 2026
Agents Are Where Microservices Were in 2015 — Roberto Milev & Uday Kanagala, Navan
Read the talk
Agents Are Where Microservices Were in 2015
Roberto Milev and Uday Kanagala explain Navan’s emerging production-agent stack: persistent sessions, layered memory, progressively loaded skills, tool-call controls, trajectory evaluation, and fine-grained authorization—plus the costs and debugging problems that remain open.
From a talk by Roberto Milev and Uday Kanagala
At a glance
Ideas worth remembering
Establish a reliable single agentic loop before adding multi-agent orchestration; the speakers recommend avoiding that extra complexity until it solves a real need.
Production agents require persistent, isolated sessions and recovery through rehydration, even when a managed runtime supplies the basic execution environment.
Treat skills as reusable units that combine domain instructions with execution capabilities, then load them progressively to protect context focus.
Instrument pre- and post-tool boundaries so the system can block actions, emit structured traces, and route inferred decisions to human review.
For nondeterministic multistep agents, evaluate trajectory progress, efficiency, and completeness rather than requiring every successful run to follow an identical sequence.
Authorization must represent delegated action explicitly. A user’s earlier instruction does not by itself settle which identity and permissions govern a later purchase.
Runtime and tool invocation may be maturing, but predictable cost, replay, debugging, observability semantics, and agent-to-agent standards remain open work.
Start with one reliable agentic loop
The talk opens with an architectural warning borrowed from the rise of microservices. That shift eventually produced useful machinery—Kubernetes, service meshes, circuit breakers, and container orchestration—but teams needed time to learn how to use it well. Splitting a poorly structured application into services did not fix its underlying design. Milev applies the same test to agents: establish a working single agentic loop before taking on the added complexity of multi-agent orchestration.
Navan’s production experience suggests that a reference architecture is nevertheless taking shape. The speakers organize it around runtime, memory, context management, cross-cutting operational controls, and orchestration. The rest of the talk walks up this stack, distinguishing components that have become usable from those that still need engineering work.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Agents turn stateless infrastructure into a state-management problem
Traditional API services often scale by keeping instances stateless. Agents invert that assumption: they carry an ongoing session, need isolation, and may live much longer than a request-response handler. A production runtime therefore has to preserve session state and restore it when execution moves or restarts. AWS, GCP, and Azure all offer agent-oriented runtimes, but adopting one does not necessarily finish the job.
Navan runs on AWS and uses its agent runtime while supplying its own session persistence and rehydration. Rehydration is the operationally important step: the runtime must reconstruct enough of an earlier session for work to continue rather than treating a recovered process as a fresh agent. The talk does not describe the stored representation, consistency model, or recovery procedure, so this is an architectural requirement rather than a complete implementation recipe. Navan also uses multiple agent SDKs; the speakers characterize managed runtimes as broadly framework-agnostic even when each provider favors its own framework.
Memory starts from the same constraint as retrieval-augmented generation: an agent cannot carry unlimited information in its active context. The memory pipeline described here ingests material, extracts useful information, consolidates it, and later retrieves selected pieces. Retrieval is only the last stage; the system must first decide what deserves to become memory and how separate observations should be combined.
The speakers distinguish three useful timescales: short-term conversational memory preserves the current interaction, managed long-term memory carries information across interactions, and episodic memory records examples of attempts that worked or failed. Navan uses its cloud provider’s memory service but adapts it to its own use case. No retention policy, consolidation algorithm, or measured quality gain is given, leaving memory selection and lifecycle management as implementation-specific work.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Package context and execution together as skills
Larger context windows do not remove context management. Too little context leaves an agent uninformed; too much can dilute the instructions and evidence that matter for the current task. Navan’s answer is to make a skill the unit of context rather than loading every domain’s material into every run.
A skill has two sides. It contains instructions and setup for a domain or task, and it contains the tool-execution capability used to perform that work. Navan composes an agent’s context dynamically from these packages, treating them as pluggable units that can be reused and tested independently. This moves context selection closer to software composition: a task receives the capability and instructions it needs without inheriting the whole system’s knowledge.
Progressive disclosure keeps the initial context small. The agent begins with limited information about available skills, then follows included metadata to load more detail as the task develops. The tradeoff is explicit: selective loading protects focus, but the system must reliably recognize which skill to load and when. The talk says skills are independently testable, though it does not show the triggering tests or an evaluation of skill-selection accuracy.
The agent begins with a domain or use case to navigate.
Navan composes task context from modular skills and expands it only as the agent needs more detail.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Ordinary logs give way to structured tool-call traces
Kanagala makes the operational problem concrete with an agent that fails halfway through a 20-step or 30-step process. Conventional logs may contain the evidence, but an agent can emit too much reasoning and intermediate activity for an engineer to consume efficiently. The useful question changes from “What did the process print?” to “At which action did its progress diverge?”
Hooks at tool-call boundaries create structured interception points. Before or after a tool call, the surrounding system can block an operation, record an audit event, or emit a metric. Navan sends these events to Braintrust and examines traces and spans to locate where an agent became stuck. This is described as a day-two concern: frameworks make an initial agent relatively easy to build, while operating and diagnosing it later remains the harder job.
Navan’s traces include the current goal, reasons associated with operations, belief status, and tool calls. Decisions also carry a confidence score and signals indicating whether an answer was inferred or supported through multiple paths. An inferred result can be routed to a human for guidance. The speakers do not explain how confidence is calculated, calibrated, or converted into an escalation threshold, so these fields should be understood as review signals rather than proven probabilities.
The trace records the current goal, reasons, belief status, and confidence-related signals.
The same hooks can enforce policy, emit structured traces, and route uncertain decisions to a person.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Evaluate progress without requiring an identical path
Testing exposes the same nondeterminism from another direction. A conventional program has an expected sequence of operations that an engineer can explain. An agent may choose different intermediate steps on separate runs, and a change that fixes one failure can introduce another. An assertion over one final string therefore says little about whether the agent reached a goal efficiently or by an acceptable route.
Navan relies heavily on trajectory evaluations for multistep work. Instead of demanding one deterministic 30-step graph, an evaluation observes movement from the initial intent toward the destination. It can then assess how far the run progressed and use that progress to reason about completeness and efficiency while allowing the chosen path to vary.
Trace signals connect diagnosis to evaluation. If a result depends on an inferred answer, that fact can help classify a behavioral change as a regression and guide the next fix. The talk does not provide a trajectory-distance formula, reference path, weighting scheme, or passing threshold. The mechanism is therefore a testing direction—score the path and its progress—not a fully specified evaluation standard.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Use one master agent until a real boundary demands another
The opening microservices analogy returns when the speakers compare single-agent and multi-agent orchestration. Navan chose a single master agent that progressively loads sub-skills and decides what belongs in context for the current use case. The speakers also mention sub-agents within this arrangement, but do not define precisely where a skill ends and a sub-agent begins. The supported design principle is centralized navigation with modular capabilities, not an absolute ban on internal delegation.
Agent-to-agent communication becomes more compelling when it reflects an organizational boundary. Two teams may own separate agents and need an explicit way to communicate without collapsing their systems into one implementation. The speakers present A2A as an emerging protocol for expressing contracts in terms of skills across that boundary. This is a narrower justification for multiple agents than orchestration for its own sake: separate ownership creates the interface.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
The stack is crystallizing, but cost and replay remain open
Milev closes by grading the stack unevenly. In his assessment, runtime and scaling are largely solved, while memory is maturing through better models, operating practices, and cloud services. He also sees tool calling and MCP as points of industry convergence. These are the speaker’s production judgments, not guarantees that managed runtimes or memory services cover every reliability requirement.
Observability remains less settled. OpenTelemetry can be adapted to agentic calls, but the speakers question how naturally it represents them. Testing patterns are becoming more usable despite agent unreliability, and orchestration now offers recognizable large-agent and small-agent patterns. Their recommendation stays conservative: use the simplest arrangement that works and avoid overengineering while these patterns continue to change.
Cost is the clearest unresolved production problem. Navan finds agent spending difficult to predict and control. Reliable fallbacks and routing selected tasks to cheaper models are possible directions, but the talk does not present either as a finished strategy. Milev also points out an incentive mismatch: major AI vendors benefit when customers consume more tokens, while application teams must make that consumption economically predictable.
Replay and debugging remain difficult because engineers must reconstruct long, variable runs from large volumes of agent activity. The speakers suggest using agents to help analyze other agents’ traces and reduce that cognitive load, but no replay mechanism or measured debugging improvement is demonstrated. Standards such as OpenTelemetry and Agent2Agent are still evolving, with the latter described as young and influenced by particular vendors. The ending is pragmatic rather than triumphant: the industry increasingly knows which capabilities it needs, but engineers still have to build the dependable operating layer around them.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Resources
From the talk
The recording’s official page with video playback, chapters, transcript, and a concise reading version.
Related talks
- 12-Factor Agents: Patterns of reliable LLM applications
A complementary production-oriented argument for keeping agent systems modular, controlling orchestration explicitly, and surrounding probabilistic model behavior with deterministic software.
- Don't Build Agents, Build Skills Instead
Develops the skill abstraction in greater depth, including progressive disclosure, reusable procedural knowledge, and the separation between runtime, connectivity, and expertise.
- How to Secure Agents using OAuth
Extends the flight-purchase authorization problem with concrete delegated-access concepts including OAuth clients, scopes, access tokens, consent, and agent-specific security questions.
Read the complete timestamped transcript
- 0:01
[music]
- 0:13
>> Right. Hello, everybody. Um welcome to
- 0:16
our talk. My name is Roberto Milev. I am
- 0:19
the chief architect at Navan.
- 0:21
And I have Uday here, who's also part of
- 0:23
the architecture team.
- 0:25
Uh Navan is a travel and expense
- 0:28
management company.
- 0:30
And we'll share with you some of our
- 0:31
learnings around how you run an AI and
- 0:34
what have we
- 0:35
uh discovered.
- 0:37
So,
- 0:39
uh if you've been long enough um in this
- 0:42
industry, you remember that
- 0:44
over time there are a few paradigm
- 0:46
shifts.
- 0:47
And we all tend to jump on a bandwagon
- 0:49
and try to uh kind of do things, all
- 0:52
right?
- 0:53
Last time was when we all jumped on the
- 0:56
microservices bandwagon. And out of
- 0:58
that, a lot of good things came out,
- 1:00
like container orchestration,
- 1:02
Kubernetes.
- 1:04
Then we had service mesh,
- 1:07
uh circuit breakers, all of those good
- 1:10
things.
- 1:10
But it didn't happen overnight. Like it
- 1:12
took a long time. It took some time for
- 1:15
us to learn how to do these things.
- 1:18
So, one of the quotes from there is, "If
- 1:20
you can't build a well-structured
- 1:21
monolith, why even try to build
- 1:23
microservices?"
- 1:25
Uh it kind of translates today because
- 1:28
if you can't build a single agentic
- 1:30
loop, why go in and try to build a
- 1:33
multi-agent orchestrated system?
- 1:37
So, over time, just like previously,
- 1:41
uh a reference architecture is emerging.
- 1:44
So, we
- 1:46
have learned a few things by by doing in
- 1:49
production. We have a
- 1:51
lot of agents, a lot of tokens per day
- 1:53
being used.
- 1:55
And as I said, there are few layers that
- 1:58
have standardized, that have
- 1:59
crystallized around what do we need to
- 2:02
run agentic flows
- 2:05
reliably in production.
- 2:07
Runtime memory, context management, all
- 2:11
around operational
- 2:12
cross-cutting concerns, and around
- 2:14
orchestration as well. So, today we'll
- 2:16
go over some of these layers, all of
- 2:18
these layers actually, and we will show
- 2:22
kind of where the industry is, what we
- 2:24
have done, what we have learned, and and
- 2:26
so on.
- 2:28
So, starting at the runtime layer,
- 2:32
we've talked a lot and we've built a lot
- 2:34
of services
- 2:35
in order to scale them
- 2:38
statelessly
- 2:39
before.
- 2:40
And now we're in a new world where, you
- 2:42
know, agents are stateful by nature.
- 2:44
They need to have persistent sessions.
- 2:48
They need to have isolation. Their life
- 2:51
cycle is different than the life cycle
- 2:53
of a traditional API service, and so on.
- 2:57
So,
- 2:58
the cloud providers have jumped in and
- 3:01
try to fill this gap.
- 3:03
Um, you know, AWS, GCP, Azure, they all
- 3:08
have a
- 3:10
some incarnation of a agentic runtime.
- 3:13
If you scan the QR code for this slide
- 3:15
and for the following slides,
- 3:17
you will see a comparison of some of the
- 3:19
features and how different cloud
- 3:20
providers try to try to
- 3:23
approach this.
- 3:25
At Nvono, we run everything on AWS. AWS
- 3:29
has an agent core runtime. We heavily
- 3:31
use that, but we have filled some gaps
- 3:33
around that, like the
- 3:36
session persistence and rehydration
- 3:39
is something that we have built.
- 3:41
And we also run a bunch of other
- 3:44
bunch of SDKs for writing agents. And
- 3:47
part of
- 3:48
these runtimes is typically they are
- 3:50
framework agnostic, although they all
- 3:52
prefer their
- 3:53
native framework in a way.
- 3:57
Um the next
- 3:59
layer in the stack is around memory.
- 4:03
Um
- 4:04
we started with rag. Rag was kind of a
- 4:06
big thing for a while. We were
- 4:10
kind of driven to that out of necessity
- 4:12
because you cannot fit an unlimited
- 4:15
amount of context into an agent.
- 4:18
And over time um all of these cloud
- 4:21
providers and the industry has
- 4:23
implemented a pipeline where memory is
- 4:26
kind of automatically generated by
- 4:28
following a workflow of ingestion,
- 4:31
extraction, and then consolidation and
- 4:33
retrieval.
- 4:34
And there are parts of rag that are
- 4:37
built in things like a long-term memory
- 4:40
that inherently has some semantic
- 4:42
characteristics. But memory is built up
- 4:44
over time from short-term conversational
- 4:47
memory
- 4:48
to long-term memory that you kind of
- 4:50
manage yourself. Uh then episodic
- 4:52
memories about kind of instances that
- 4:55
worked well and didn't work well.
- 4:57
Uh and so on. We at Navan again being a
- 5:01
AWS shop, um
- 5:03
utilize their agent core memory.
- 5:06
But we are also kind of doing it in a
- 5:07
way that
- 5:09
uh matches matches our our use case.
- 5:14
And then the next thing is context
- 5:16
management. You know, it's a hot topic.
- 5:18
It was a hot topic and it's still a hot
- 5:19
topic. Context windows are growing
- 5:21
bigger, but there's never enough context
- 5:24
or if there is too much context again,
- 5:27
agents struggle with that cuz you lose
- 5:28
focus and so on. Um
- 5:32
what we found working is that
- 5:35
uh focusing on skills as a unit of
- 5:38
context. And I'll explain what I mean by
- 5:39
that.
- 5:40
Uh we look at skills as both having
- 5:43
context, meaning instructions and uh
- 5:46
setup about a certain domain or a task.
- 5:49
And there's also the
- 5:51
the second part of the skill, which is
- 5:52
the tool execution and you know, the
- 5:55
agentic part.
- 5:56
And we compose context dynamically out
- 6:01
of skills that we
- 6:03
use as units of work that are
- 6:06
pluggable, that we can test
- 6:07
independently, and that we can reuse.
- 6:11
So, for example, when we are
- 6:14
we have an agent, we have skills that
- 6:16
are
- 6:17
that are specific to a domain.
- 6:19
And based on that, we compose them. And
- 6:21
we rely on the
- 6:25
you know, the progressive disclosure,
- 6:26
which is a feature of the skills itself
- 6:29
to start with a limited scope of context
- 6:31
and then
- 6:32
expand by included metadata
- 6:36
further down the the line.
- 6:39
I'll hand it over to Uday Uday now to
- 6:42
kind of walk us through the rest of
- 6:43
this.
- 6:44
>> Thanks, Rudra.
- 6:46
All right. Can I have a quick show of
- 6:48
hands
- 6:49
here who have who had built an agent uh
- 6:52
which failed halfway through multi 20 20
- 6:56
step or 30 step process and be able to
- 6:59
figure out quickly or reason about why
- 7:01
the agent failed.
- 7:05
So, again, logs we've generally been
- 7:08
traditionally with microservices, we all
- 7:10
are familiar with logs. There's logs out
- 7:12
there and then we go check out the logs.
- 7:13
But this changes everything the moment
- 7:16
we switch to agents.
- 7:17
Agents
- 7:19
output a lot of thinking. There's too
- 7:20
much to consume. So, that's not the
- 7:22
right way to do it, right? So,
- 7:24
traditionally, that was the way, but our
- 7:26
thought has to be changed right now.
- 7:28
In the in the way they
- 7:30
Claude as an example, when we take
- 7:32
Claude as an example for an agent,
- 7:34
there is hooks and we can intercept
- 7:37
everything that Claude as an agent that
- 7:38
does at that level. So, what kind of
- 7:41
tool it calls, right? What kind of
- 7:43
decision it's making? So, before
- 7:45
pre-tool and post-tool call or a
- 7:47
pre-decision or a post-decision, so all
- 7:48
of that are a
- 7:50
point point in time for us to intercept
- 7:53
and make a decision
- 7:54
and either block
- 7:56
to do a
- 7:58
blocking operation or to log in metric
- 8:00
or emit a metric, right? So, this is a
- 8:02
critical
- 8:04
place where we can emit auto traces.
- 8:06
At Nvone, we use one of our provider to
- 8:10
interest to emit these auto traces and
- 8:13
through these traces we should be able
- 8:14
to figure out the spans, the traces and
- 8:17
at what point in time where the agent is
- 8:19
stuck, which gives much more confidence
- 8:22
into
- 8:23
how we operate and build the agent. This
- 8:26
is
- 8:27
day-to-day operational challenge.
- 8:29
Building agent these days there's so
- 8:31
many frameworks, but how do you navigate
- 8:34
building and operating an agent later is
- 8:36
primary concern. Um
- 8:39
And moreover, the reasoning chain, the
- 8:41
thought process and critical signals
- 8:43
that we emit
- 8:45
here as part of the trace captures, we
- 8:47
emit a few primary signals here. What is
- 8:50
the current goal the agent is going
- 8:52
through, the reasons behind its
- 8:54
operations and the belief status and
- 8:56
the tool calls that it's making. So,
- 8:58
this kind of gives us a judgment
- 8:59
pointers. Um
- 9:01
Um in the traces. And when we make when
- 9:04
the agent makes a decision, there is a
- 9:07
confidence score, how confident it is
- 9:10
when it makes the judgment, right? So,
- 9:12
whether there are multiple paths that it
- 9:14
leads to this choice
- 9:16
or whether this is an inferred answer.
- 9:18
So, basically these are signals that
- 9:20
gives us confidence later to review. If
- 9:23
this is an inferred answer, there could
- 9:24
be a human in the loop to guide through
- 9:26
and tweak the agent to perform a little
- 9:28
better.
- 9:32
Again, um
- 9:34
Can I have a raise of hands again to see
- 9:36
how confident are you like 100%
- 9:39
confident in testing pipelines with your
- 9:41
agents?
- 9:43
Right. So, this is one of the other um
- 9:47
critical aspect today. Um
- 9:51
Because agents are non-deterministic.
- 9:53
We've all been used to program and write
- 9:55
much more deterministic flows.
- 9:57
And
- 9:58
we know how it works. The Can I ask an
- 10:01
engineer? Engineer can come and tell me
- 10:02
how this the algorithm, the sequence of
- 10:04
operations. Everything is programmed in
- 10:06
our mind. Everything is expectations.
- 10:08
But now the agents come into a
- 10:09
non-deterministic way. And how do we
- 10:11
test them, right? So, that is very
- 10:12
criticality here.
- 10:14
And yeah. We are also struggling. Um
- 10:17
we've uh started
- 10:19
doing building agents. We the day to
- 10:21
operations was challenging and then we
- 10:22
failed in a lot of steps. How do we
- 10:24
course correct? The moment we change
- 10:26
something, something else broke breaks,
- 10:28
right? So, how do we do that? Um one one
- 10:31
approach that we took uh this is from um
- 10:33
research papers uh around the
- 10:38
in a multi-step
- 10:40
uh orchestration, when an agent makes uh
- 10:42
30 steps or decisions to make to reach
- 10:45
to a goal,
- 10:46
if that is a program or that's a
- 10:49
different story. But this is not a
- 10:50
program. This is non-deterministic way
- 10:52
of It makes up its own steps every time
- 10:56
uh differently.
- 10:58
So, how can we
- 11:00
chart a deterministic graph here?
- 11:03
Is it possible? No.
- 11:05
Can we have a trajectory of its starting
- 11:08
from an end to a goal and then see how
- 11:10
much how far it went in the trajectory
- 11:14
and how far it went from the source to
- 11:15
the destination is what we can compute
- 11:18
to evaluate the efficiency or the
- 11:22
completeness of the
- 11:23
agent
- 11:24
agent evaluation.
- 11:26
So, we we heavily rely on um trajectory
- 11:29
vals um
- 11:30
and uh
- 11:32
this
- 11:33
There are few other signals uh as I
- 11:35
briefly spoke around uh in the previous
- 11:36
slide around the inferred signal. Um
- 11:39
If the answer is from an in in inferred
- 11:41
answer, uh how can we uh
- 11:44
loop that into uh and make a
- 11:48
signals around uh how can we classify
- 11:50
that this is a regression and make fixes
- 11:52
towards the agent?
- 11:59
Uh
- 12:03
So, the next is the uh guardrails. Um
- 12:07
Where
- 12:11
Is this the one? Yeah.
- 12:15
So, guardrails and authorization, um
- 12:18
this is uh critical
- 12:21
displays a critical role in enterprise
- 12:22
AI.
- 12:24
A lot of information is being piped to
- 12:27
models. Um there could be sensitive
- 12:29
information that goes into it uh without
- 12:32
our knowledge. And
- 12:34
we as uh uh leaders, how can we put in
- 12:36
this governance layer um
- 12:39
to stop this um is very uh critical
- 12:42
here.
- 12:43
And and the concept of uh authentication
- 12:45
and authorization um is
- 12:49
taking up a different approach here. Um
- 12:51
traditionally, we've seen um a user or a
- 12:54
service account, but now what is an
- 12:56
agent? Agent can be
- 12:58
acting as on behalf of users. There is
- 13:00
so much of things uh so many of use
- 13:02
cases there. Hey, book me a flight
- 13:05
whenever it's cheaper than $200, right?
- 13:07
So, we just tell this assertion and then
- 13:09
agent go figures out and does this
- 13:11
action on behalf of me. So, is it me
- 13:13
making this
- 13:14
purchase or is it agent me making on
- 13:17
behalf of me? So, there is
- 13:20
Agent acts as a on behalf of user or
- 13:22
agent uses a service account as well.
- 13:24
So,
- 13:25
the line is being blurred here and we
- 13:27
need to make fine-grained authorization
- 13:29
decisions here, and the policy layer
- 13:32
that's where the guardrails and
- 13:33
authentication authorization plays a
- 13:34
critical role.
- 13:36
And in the one what we employ here is
- 13:39
before every tool call
- 13:41
pre-tool and post-tool, we have this
- 13:43
guardrails to check and block
- 13:46
and make a informed decisions.
- 13:52
And
- 13:53
this single agent versus multi-agent,
- 13:56
again, this is kind of a
- 13:58
orchestration wars you can think of
- 14:00
with it to build a single agent or a
- 14:01
multi-agent.
- 14:03
Again, as Roberto briefly hinted
- 14:05
if you can't perfect and build a
- 14:08
single agent, why go towards
- 14:11
multi-agent, right? So, learn from our
- 14:13
uh
- 14:14
failures, experiences, and build towards
- 14:17
that.
- 14:18
At Navan, yeah.
- 14:20
What the approach that we have taken is
- 14:22
single master, and then we adopted
- 14:25
sub-skills. Um
- 14:27
There are sub-agents within it.
- 14:29
So, it's a single agent that can
- 14:32
progressively load the skills and
- 14:34
understand decisively what needs to be
- 14:37
loaded into the context, and then
- 14:39
make this
- 14:40
navigation
- 14:41
through the use case.
- 14:44
But there are
- 14:45
other patterns that are also emerging.
- 14:48
There are different class of use cases
- 14:49
here. One is um
- 14:52
agent-to-agent communication. So, there
- 14:53
are If you take a large scale
- 14:55
organization, and there are so many of
- 14:56
these teams that are
- 14:59
that are acting as the boundaries, and
- 15:00
they don't talk to each other, let's
- 15:01
say.
- 15:02
How do we communicate? There are two
- 15:04
agents on either of the side, right? How
- 15:06
do we do it? So, there is A2A protocol
- 15:09
which can help us establish the
- 15:12
contracts in terms of skills.
- 15:14
And we can use A2A as a protocol there,
- 15:17
which kind of
- 15:19
is a boundary between the teams.
- 15:22
Yeah, over to you, Uday.
- 15:29
>> All right. So, as we went through the
- 15:30
stack,
- 15:32
it's obvious that um some components of
- 15:34
the stack are in a more mature state and
- 15:38
we already have good answers for them.
- 15:40
As Uday said, the runtime, I think it's
- 15:43
pretty much solved. We are so advanced
- 15:44
in orchestration and we are running LLMs
- 15:47
in kind of uh a very
- 15:49
uh brute-force way. So, scaling is not a
- 15:52
not a problem. Also, memory, I think uh
- 15:55
as
- 15:56
uh the frontier LLMs get better and as
- 16:00
our practices get better,
- 16:02
we will uh find a way to cover the
- 16:05
majority of the use cases and there is
- 16:06
good maturity around the the cloud
- 16:09
providers.
- 16:10
Uh MCP has emerged as the de facto
- 16:13
protocol and tool calling is now a
- 16:16
feature that everybody supports. So, we
- 16:18
are seeing some industry convergence
- 16:21
around that as well and MCP as a
- 16:24
standard is also evolving. Now, it's
- 16:25
becoming stateless. It's uh we are
- 16:28
reaching a point where kind of we know
- 16:30
how to invoke uh services and and and
- 16:33
tools with agents.
- 16:35
Uh in some areas, things are happening,
- 16:39
but you know, there's still a lot of
- 16:40
unknown. Around observability, there is
- 16:43
a push towards OTEL, but does OTEL
- 16:46
really work for agentic calls?
- 16:49
Uh yeah, you can make it work as Uday
- 16:51
was saying.
- 16:52
Um also, we are getting more comfortable
- 16:55
around um around that the the the the
- 16:58
testing patterns. It's very hard to
- 16:59
test, but we have found a way to give
- 17:02
customers um quality experiences even
- 17:05
with the unreliability of agentic system
- 17:07
and I think that's kind of
- 17:09
uh getting in a in a state that is uh
- 17:12
that is more better defined.
- 17:15
Orchestration is another one
- 17:17
um,
- 17:18
where, you know, we have a
- 17:21
uh, we have patterns, uh, we can build,
- 17:24
you know, bigger agents, smaller agents.
- 17:27
Uh, as we said previously, probably the
- 17:30
right answer is to not over-engineer.
- 17:34
Uh, so we're learning there and and and
- 17:36
uh,
- 17:37
a pattern of school thought is also
- 17:40
emerging. Uh, where we're all struggling
- 17:43
with and the previous talk was about
- 17:45
this for the developer, um,
- 17:47
AI assistant development perspective,
- 17:49
but also we're seeing these issues from
- 17:52
our production agents. It's very hard to
- 17:55
predict cost and it's very hard to
- 17:57
manage cost, uh, and put guardrails and
- 18:01
solve this in a way where there is
- 18:02
reliable, maybe fallback or have agents
- 18:06
be, uh, using cheaper models for certain
- 18:10
tasks. Uh,
- 18:11
uh, this is all driven by kind of the
- 18:14
big AI vendors who, I think, their
- 18:17
interest is for us all to spend more
- 18:20
tokens. Um, replay and debugging, Woody
- 18:23
talked about that, that's also a big big
- 18:25
issue. It's very hard
- 18:28
to understand, but I think
- 18:30
this is also something that that is
- 18:32
going to be solved because we can now
- 18:35
use, uh, agents to
- 18:37
uh, get over the cognitive overload of
- 18:40
trying to debug what they do.
- 18:43
And then standards, um, standards are
- 18:46
emerging uh, by,
- 18:49
you know, the community. Uh, Hotel, as I
- 18:51
mentioned, agent to agent is young, it's
- 18:53
kind of pushed by certain vendors, but I
- 18:56
think over time we will we will get, uh,
- 18:58
there.
- 19:00
Uh, with all of this said, you know, we
- 19:03
know what we need and it's up to us to
- 19:06
write and build it.
- 19:07
Thank you, everybody.
- 19:09
>> [applause]
- 19:27
>> I