AI Engineer World's Fair 2026
How Evals and Prompts Shape Agent Behavior — Preetika Bhateja & Daniel Bump, YouTube Ads
Read the talk
How Evals and Prompts Shape Agent Behavior
Reliable agents need more than better prompts: they need focused tools, shared rating criteria, trace inspection, and launch decisions grounded in recurring behavior.
From a talk by Preetika Bhateja and Daniel Bump
Before you start: Familiarity with LLM prompts, tool-using agents, and basic machine-learning evaluation will help.
Reliability starts with the agent’s foundation
How do you make an agent reliably do what you intended once real users begin interacting with it? For Preetika Bhateja and Daniel Bump, working on image and video models for YouTube Ads, building an agent is only the beginning. The harder problem is anticipating how it will use its capabilities and whether its behavior will remain acceptable in production. Evaluations provide a way to examine that behavior systematically.
Start with a focused set of LLM-friendly tools, and optimize those tools before expanding into comprehensive agent evaluations. Once that foundation works, an independent critique agent can inspect results and feed problems into a remediation loop. This gives the system a way to correct shortcomings that its base tools do not handle on their own.
With the basic structure in place, evaluations make changes assessable: did a modification help, and does an ablation—removing a component or change—show that it contributed value? Reliability depends on capabilities, guardrails, and evaluations together. An evaluator measures the system; it does not replace the tools and constraints that make good behavior possible.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Define success, then learn from the outputs
A generative system can succeed on a task in one run and fail in another. That variability makes a few successful demonstrations insufficient evidence of reliable behavior. Evaluation begins by defining the target output and making the criteria for success strict enough to measure across many runs.
Those criteria need not begin as a comprehensive evaluation system. Bump recommends inspecting outputs manually early on: explore the agent’s capabilities, notice obvious failures, change something, and see what happens. This informal work is not scalable, but it builds familiarity with the system while iteration is cheap. Prompt changes can matter substantially at this stage, and the architecture may still need radical revision.
The purpose of early inspection is to discover failure patterns that will later become evaluation cases. Moving to scaled raters too soon can create an evaluation rollercoaster: the team keeps recalibrating the evaluator while also changing the agent underneath it. The slide illustrates that churn, rather than reporting a measured performance curve. Stabilize your understanding of the task before investing heavily in its measurement.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Collect explanations for each quality dimension
A pass or fail tells you the judgment, but not what to improve. Ask raters to explain their decisions. This applies both when judging an output on its own and when comparing two models side by side: the explanation reveals why one result worked or why another was preferred.
Ads make the limitation of a single verdict especially clear. The team asked raters about several dimensions:
| Dimension | Rating question |
|---|---|
| Accuracy | Is the ad accurate? |
| Brand safety | Is the ad safe for the brand? |
| Expected behavior | Did the agent do what was expected? |
An ad can satisfy brand safety while failing accuracy. Preserving separate judgments and explanations makes that distinction available for diagnosis and subsequent training.
A small TypeScript record can preserve this structure without forcing every concern into one Boolean. Each dimension carries both a verdict and its explanation; an unresolved judgment remains visible instead of silently becoming a pass or fail.
typescript
type Verdict = "pass" | "fail" | "unknown";
type Dimension = "accuracy" | "brandSafety" | "expectedBehavior";
type Judgment = {
verdict: Verdict;
explanation: string;
};
type AdEvaluation = {
caseId: string;
judgments: Record<Dimension, Judgment>;
};
function needsReview(evaluation: AdEvaluation): Dimension[] {
return (Object.keys(evaluation.judgments) as Dimension[]).filter(
(dimension) => {
const judgment = evaluation.judgments[dimension];
return judgment.verdict !== "pass" ||
judgment.explanation.trim().length === 0;
},
);
}
This is a way to represent the evaluation feedback, not an automatic rule for deciding whether an ad is ready to launch.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Calibrate automated judges against people
When an LLM judge enters the evaluation process, its judgments also need evaluation. Bhateja describes monitoring agreement or disagreement through a sampling pipeline: have a human rater or expert and the automated judge assess the same cases, then track whether their agreement is trending within the team’s expected range.
Agreement monitoring should be paired with spot checks. Inspect the explanations behind pass/fail decisions, and look at agent traces when the final verdict leaves the behavior unclear. The reference data must also be broad enough to cover diverse use cases and consistent enough that humans agree on its labels. Otherwise, a disagreement with the judge may reflect an unstable reference judgment rather than a judge failure.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
The agent detected the disclaimer—and removed it
The team had a concrete preservation requirement: for legal reasons, the agent must never remove disclaimers. They repeated that instruction in the prompt, and behavior initially appeared satisfactory. Then edge cases emerged in which the agent recognized a disclaimer and removed it anyway.
An aggregate pass rate did not explain what had gone wrong. Inspecting the trace exposed the sequence: the agent detected a disclaimer, then indicated that it would remove it. That distinction matters for debugging. The visible failure was not simply an inability to detect the text; detection was followed by an action that violated the instruction. A trace is a diagnostic record, not direct access to the model’s underlying causal reasoning.
Bhateja made the failure concrete with a public-parks ad she created. Its headline reads “America, we can do better,” and the input includes a small paid-by disclaimer near the bottom right. After processing, the disclaimer is absent despite the instruction to retain it. The side-by-side frame shows the actual preservation failure; the account does not include a successful remediation.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Keep a test set outside the iteration loop
Agents inherit a familiar machine-learning problem: the data used to develop them does not guarantee generalization. Maintain cases that exercise edge conditions and broader capabilities, rather than testing only the situations the team has already optimized.
The traditional distinction between development, validation, and test data remains useful. Keep a test set, consult it sparingly, and refresh it with production data. Using it sparingly preserves its value as a check on generalization; refreshing it keeps that check relevant as actual usage changes.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Improve the evaluator and the agent together
Bump describes a quality-improvement loop that begins with human evaluation:
- Check the quality bar. If the result meets it, that iteration can finish.
- Diagnose the shortfall. Review the evaluation set and relevant measures, such as precision and recall.
- Change the appropriate component. Revise evaluation cases or the rating guide when the measurement is wrong; adjust the model, agent, or tools when behavior needs improvement.
- Evaluate again. Use the increasingly well-defined evaluator to assess changes and run ablations.
The evaluator and the agent can both evolve, but the evaluator needs to become dependable enough to tell whether an agent change helped.
As launch approaches, improvement alone is not the question. Identify where performance degraded and why. A change may introduce an acceptable trade-off, or it may cause a critical failure. The evaluation needs enough detail to distinguish those outcomes instead of hiding them inside an overall score.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Optimize patterns, not isolated runs
A tempting response to one failed run is to inspect its trace and immediately patch the prompt. But a nondeterministic system can make that patch look effective on the next run without resolving the underlying problem. Use an isolated failure to investigate a pattern, not as sufficient evidence for a prompt change.
Include multiple examples of important patterns in the golden set, then examine how often the agent fails across those examples. The unit of improvement is the recurring behavior, not one memorable output. Online evaluations extend that discipline to actual usage, checking that the data being evaluated still represents the real world.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Let evaluation mature with the product
The right evaluation system depends on what the product must do well and how mature the agent is. An MVP needs a different breadth of evidence from a production rollout. The product goal stays central while the cases, coverage, and evaluation operations become more demanding.
Keeping that system useful requires ongoing work: online evaluations, sampling pipelines, test sets refreshed with production data, and curated golden sets that change with the use cases. It also requires training the people doing the ratings, whether they belong to cross-functional product teams or a scaled rating operation. Templates and rubrics need clear examples so raters understand what is expected and can handle difficult cases consistently.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Define launch criteria before deciding to launch
Unclear expectations can leave many cases marked unknown, weakening the evidence available for a launch decision. Choose launch metrics deliberately, compare model variants through A/B differences or ablations, and inspect the regressions those comparisons reveal. Decide which degradations are acceptable and which block release.
The gatekeeping rule should be explicit early. Precision and recall may be appropriate for some judgments, while other model evaluations need different measures. The requirement is to connect the chosen metric to the behavior the product needs and specify what constitutes sufficient evidence to launch.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
How much judging should be automated?
The audience’s closing question asks whether all evaluations are performed by humans, whether LLM judges are also used, and how those judges are calibrated. Bhateja’s answer is use-case dependent: the team works across many systems, so there is no single judging arrangement that describes them all.
She does not disclose the detailed benchmarking setup or numerical calibration targets. The practice she does reaffirm is to maintain sampling pipelines and monitor disagreement between human and automated judgments. Automated evaluation therefore remains connected to human assessment as the cases and systems change.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Resources
Further reading
Google Cloud guidance on human-reference benchmarks, autorater calibration, customized rubrics and agent trajectory evaluation, with links to implementation tutorials.
Research testing whether changing a model's expressed reasoning changes its answers, showing that reasoning faithfulness depends on the model and task.
Read the complete timestamped transcript
- 0:00
[upbeat music] Hi, everyone. Uh, sounds like everybody came back from lunch, so hope everybody is recharged and not sleepy at all. [laughs]
- 0:20
It's always interesting to do a talk right after lunch, 'cause you never know. It's a mixed crowd. Uh, but we're very happy to be here, happy to see you all.
- 0:27
Our talk is gonna be about evals, of course. We're in the evals track. We're gonna talk you through what are some things that worked for us while we were building evals, uh, especially for YouTube Ads.
- 0:36
We work on the YouTube Ads team as part of the... We do image and video models for YouTube Ads.
- 0:42
So building an agent is hard. I think anybody who is here in the audience probably has built an agent as a side project or as part of production systems.
- 0:50
It's a very hard thing to do. It's laborious. It takes a lot of time. Uh, making it re- reliable is harder. So having it do things that you actually want it to do in production, understanding the different kind of things that it can play with, w- how it's gonna react when you launch it to your end users,
- 1:07
that's always a very hard thing to do, which is why evals are a pretty handy way to manage that.
- 1:14
Uh, yeah. And then, um, basically, uh, the first step when you're doing this is, of course, you need to have your agent foundation. So, um, when you're building, uh, your agent, you know, you will want to have a focused and strong set of LLM-friendly tools to give your agent a very good foundation.
- 1:34
Um, so yeah, I would say it's important to first optimize these tools and make sure they're the best they can be before just jumping onto, um, larger agent evals.
- 1:46
Um, so once your tools are optimized, uh, you can also take some other steps like making an independent critique agent, right, with a remediation loop. And this can fill more gaps as far as, um, having a self-correction mechanism and filling those gaps where, uh, maybe your base tool set, uh, has limitations.
- 2:09
Uh, and then once your base structure is defined, uh, you can have a... You can then go to, um, having an eval. And having a strong eval is very important as this gives you, um, like, a way of proving the value of changes you make, as well as, uh, running ablation experiments on any changes you make.
- 2:27
So I would say this is a very essential tool for climbing the quality ladder. Uh, but again, it's very important to have that, uh, good foundation to begin with.
- 2:38
Um, so yeah, the, the reliability of your, uh, agent is basically a function of the capabilities of the agent, uh, the guardrails and the evals.
- 2:52
Um, so understanding, uh, what your agents do in the real world. Uh, basically, uh, generative AI outputs, as I'm sure you're all familiar, are not exactly deterministic, right? So it can, uh, often fail in certain areas, or, uh, one time it can succeed, one time it can fail.
- 3:11
So we can't really guarantee how it will behave in the wild, and for some use cases, this is extremely important, right? W- and we need a way to, uh, measure its scale and make sure that it is, uh, getting the output we want, uh, despite the nondeterminism of these models.
- 3:28
So we need to define, um, what's good here, and evals allow us to basically understand and improve, um, how the models behave in the real world by defining what good looks like.
- 3:43
Uh, it's basically just setting, this is, uh, you know, our target output. Uh, so to build evals that actually scale, they really need to be strict and measurable.
- 3:58
And, uh, so an interesting, uh, thing here that I think might be somewhat counterintuitive is that early on, vibing can actually be kind of good for you. Uh, and what I mean here by vibing is basically, um, doing things that are not exactly scalable to begin with.
- 4:15
Um, so when you're first, uh, starting out, it may be that, uh, y- you know, you could, uh, take a track of basically just going ahead and making this super comprehensive eval, right?
- 4:27
Um, but we found it actually works better to first do intuition-based approach where you kind of, um, first see the capabilities and look at the outputs. And at this stage it's pretty easy to tell what the issues actually are, right?
- 4:42
Uh, so even though this is non-scalable, it will still give you, like, a very good idea of when you change this, what happens. Um, and like, uh, it allows you to more quickly iterate as well.
- 4:54
So at this stage, prompt tweaks can also have, like, large performance gains. You can make a radical change to the architecture, um, and your eval is not kind of like hindering you in this way.
- 5:04
So it's like a very good way, kind of, you know, like an early-stage company of just like first, you know, doing something, making more radical changes quickly. Um, so yeah, this way I think you can also get very familiar with what you're building, what the failure patterns are, and, uh, it gives you more of a, a sense
- 5:23
of depth and understanding it, uh, which allows you to hill climb in a targeted way. And these will basically be very useful learnings when you're actually, like, building a more comprehensive eval.
- 5:34
Uh, yeah, and then w- there's a trait here showing kind of, uh, you know, if, if you, uh, jump to scale to, um, these scaled raters like too early, uh, it can cause you to kind of have like very big ups and downs as you might be iterating and calibrating the eval as you are struggling with, uh,
- 5:52
changing the model radically. Um, so another thing here is, um, you can- You should start early and start small. So, um, you don't, as I said before, you don't need to have like a massive golden set on day one.
- 6:10
Um, you can just kind of start with a few core tasks. So you can look through your agent and define what are the primary things that you want to target, right?
- 6:19
Um, and just, uh, basically start with those like high-level things, and can slowly come to a more detailed representation as you move on. Um, and so here it's important to also test the negatives, checking if the model like didn't do something as bad, uh, something bad, is just as critical as checking if it did the task.
- 6:42
Um, so yeah, and, uh, yeah, [laughs] there's a funny visual here about, uh, writing the evals can be a very small point in humans arguing over what the rubric should be is, uh, is kind of like a very large task here. [laughs]
- 7:00
Uh, cool. So we've established that we wanna start small, and we wanna wipe code at the start. Not wipe code, but like why eval at the start and try to get a sense of like what our model's doing good, where the agents are falling, find out all the patterns.
- 7:12
Eventually, you'll get at a stage where you will try to involve more teams. So if it's just a core team of like PM and UX working at the start, then you'll bring in more team.
- 7:20
You'll have a bigger golden set, a bigger data set that you wanna test out. So you'll think about scale raters, LLM raters, all of that. So we'll get a little bit more into what that looks like.
- 7:30
So just a couple of things on like working with scale raters and things that worked for us. Uh, one was that providing them with a clear rubric of what they were actually rating with very clear examples.
- 7:43
So we had a lot of situations, especially early on when you're building things, of course, like there are so many edge cases and difficult cases that we've not tested out that a rater might encounter.
- 7:53
So they're coming back to you saying, "Oh, well, what should, what should I do in this case?" And then sometimes we as a team are like disagreeing on like should th-this be a pass, should be th- this be a fail, things like that.
- 8:03
So I think that's very important to do early on, as much as clarity and examples you can give the raters, that would be super helpful. So yeah, to that point, like human-human agreement should be strong within your team of what you consider a good use case and a good pass case for an eval.
- 8:18
Uh, the second things that we noticed that helped us a lot was getting explanations from raters. So when you do have your teams or other scale members rate evals, it's good to not just anchor on if it's a pass or a fail.
- 8:32
That doesn't really tell you much about where should the agent improve, what was the thinking that went behind coming to that conclusion. So it's helpful to get explanations of why they're rating something a certain way.
- 8:44
And this is true for like if you do single side evals or side-by-side evals, like when you're testing two models at the same time. Having explanations of why one thing failed or one thing worked can be super helpful.
- 8:55
Uh, other things to keep in mind is that you could also do, like in our case, it was multi-output. So we were asking scale raters, um, when we were building ads like, "Are these ads accurate?"
- 9:06
Like, "Did we do the right things for it? Is it brand safe? Is it like something that we expected it to be?" Things of that nature. So we had like almost like a multi-turn eval system.
- 9:15
If you're building those kind of cases, it can get a little tricky because it's not exactly a pass fail. Your, your raters could be like, "Oh, well, it does very well in, well in brand safety, but it does not do r-really good in like accuracy or things of that nature."
- 9:28
So explanations really help you like get to the bottom of like, where is it that the agent's actually like missing things. And then you can also use that input to train your agent better.
- 9:38
Okay, so now we talked a little bit more about involving cross-functional teams and human agents, but what about if you're using LLM raters, auto raters, LLMs judges? So we ended up going down that path also.
- 9:51
Few things that we tried to do to kinda set this, set a more, uh, comprehensive structure for ourselves is, one, we, we monitored disagreements, or in some cases, teams monitored agreements.
- 10:02
So basically, if you can have a sample pipeline of sorts that is monitoring how a human rater or some expert would rate an eval versus how an LLM would rate it, you can get a sense of like how it's trending and if the agreement rates are in the ballpark that you would expect it to be.
- 10:21
Uh, the second thing was we went a little bit beyond pass and fail, so we also looked at Agent traces, which we'll get to later. But when we were doing pass-fail evals and trying to understand how things were getting rated, we did a couple of spot checks to understand the reasoning behind those logic, so we could really
- 10:39
see what was going on, how did it come to the conclusion that something was a final pass or a no. Uh, and like again, like just reinforcing the high quality ground truth point that Daniel made earlier.
- 10:50
So we wanna give a golden set that's like super expansive, it covers a broad range of use cases, and it also has very high human-human agreement within your team.
- 11:02
Okay, so this is a quick example of what we had seen in the agent. I'll walk you folks through it. So, uh, it basically says, "If you kn- if you wanna know what it's doing, look at it, at its thinking."
- 11:14
Uh, we had given the agent one of the prompts, and it was that for legal reasons, disclaimers can never be removed. And we'd mentioned that to the agent a couple of times in the prompt.
- 11:23
We had like trained it on that, and it was all going fine. But then we started seeing that there were edge cases in which the agent was seeing the prompt, and it was seeing that there's a disclaimer present in the ad and then still removing it.
- 11:36
And we could not find that if we were just doing a categorical like the, this X percent pass rate or not. So we'd already had to look at the traces to see what was going on.
- 11:44
And in this example, you can see in the initial trace, it actually detects that there is a disclaimer in what it's searching for, and it says, "Okay, I found a disclaimer, and now I'm gonna go ahead and remove it," which was not what we asked it to do.
- 11:57
Uh, this is a sample image that I created that I ran through the agent that says, "America, we can do better." It's a public parks ad. And if you'll see at the bottom right, it says, "Paid by the Community of Parks, of Keep Parks Clean."
- 12:10
And we sent it to the agent, and it just removed it when we told it explicitly not to. [laughs] So those kind of things will happen, so it's really important to like check the reasoning and how it's like getting to the things that you care about.
- 12:21
Uh, cool. One other thing. So like all ML systems, some things still are applicable, which is my favorite part. So agents will not generalize very well depending on the kind of like datasets that you've trained it on.
- 12:35
It's usually a good idea to have some sort of dataset to test for like edge cases, like broader capabilities. Uh, also a very good practice to have a test set of sorts.
- 12:46
If some of you worked in like traditional ML systems, it was always good to have test-validation sets of that sort. Same concept applies here. Uh, if you have a test set, use it sparingly, and also refresh it with prod data.
- 12:59
Daniel.
- 13:01
Yes. Um, so then, um, yeah, this slide is basically, uh, talking about hill climbing and how it can be quite rewarding. So, um, yeah, you might find that, uh, after human eval, right, uh, you can, uh...
- 13:18
This, this gr- this diagram basically shows like the, uh, kind of stack of what you can do. So after, um, human eval, if it meets the bar, obviously you can finish there.
- 13:27
But, um, it probably won't, and then, uh, when it doesn't meet the bar, uh, you can first review your eval set, uh, and find numbers like precision and recall.
- 13:38
Um, and then you can, um, iterate and basically, uh, you know, make changes to the eval or adjust your, uh, rating guide, things like this. Uh, or just adjusting the model itself or the agent, uh, adjusting its cooling.
- 13:54
Um, and then through all of these things, you can both, uh, iterate on your eval as along with, um, iterating on the agent. And this loop, uh, once you have a, a very good eval defined, it works quite well for iterating on your agent, um, and doing, uh, quality hill climbing, as I mentioned before, doing ablations and
- 14:12
whatnot. And then, um, so as far as, uh, launch readiness, you, uh, basically need to understand, um, regression. So identify where and why the model performance is, uh, degrading so that you can distinguish between acceptable trade-offs and critical failures.
- 14:34
Um, so yeah, this is basically just saying like it's very important to understand from these evals, right, what is the exact issue that you're having, and figure out, um, the trade-offs here.
- 14:45
And then, um, you should also... This is a very important point. So you should focus on patterns rather than isolated runs. So a tempting thing is to hyper-fixate on very small examples from the model, right?
- 14:58
So you might have, uh, one run that you do with your agent, and then you find, uh, it fails on this case, and you might think to yourself, "Okay.
- 15:06
Well, I should update the prompt based on my eval and, uh, the, the trace of the agent," right? But, um, if you do this, this is kind of a trap because, as I said before, these are non-deterministic systems.
- 15:17
So what's more important is that you actually rely on patterns. So in your golden set, it's important to have multiple examples that can cover these kind of, uh, patterns that you might want to see, and you basically want to look at the entire picture of how often is it failing on that pattern, not that specific individual example.
- 15:38
Um, and yeah, it's important here also to invest in online evals, uh, and, and making sure that your data is matching the real-world representation.
- 15:51
Okay. Awesome. So we talked a bunch about like what worked for us while we were building evals. Of course, your mileage may vary. Depending on your application, things can, uh, things can differ.
- 16:02
Uh, some of the things that we wanted to recap here was, uh, it's like what, what we think makes a good eval system generally is like it should be representative of what you want your product to be great at, and that will differ depending on the state at which your agent is.
- 16:16
When you're building MVP cases, it would look differently versus when you're doing production rollout. So that would differ, uh, but it still needs to be very much, uh, centered around what do you want your product to be good at and optimizing for that.
- 16:28
Uh, important to, of course, keep it evolving. That's why we talked about having your online evals, having test sets that are refreshed with production data, having sampling pipelines, all sorts of things.
- 16:38
Uh, highly curated golden sets, which will also evolve as your use cases evolve. So training teams, whether it's scale raters or your cross-functional teams, on how to rate things, how, what are you expecting out of them, that's also very important.
- 16:52
That's, uh, spe- I think now it's getting more mainstream, so hopefully it's less, less controversial. But like six months ago, our teams were like still figuring out, "Okay, how do we like do this?
- 17:03
What's expected out of it?" So I think investing in those trainings can be helpful. Uh, and then rater templates and rubrics with clear set of examples, so you don't have scale raters coming back to you saying, "I'm not sure how to rate this."
- 17:15
Um, lots of like things getting marked as like unknowns or I don't know, things like that. Also choosing the right launch metrics. So some of the launch metrics, launch slides that we showed you, this is a very high level of generally how you would do a launch readiness.
- 17:28
You would like check it. You'll do bunch of iterations on the model. You'll do an A/B diff or ablation, and you'll try to see, okay, where is the regression happening?
- 17:36
What's an acceptable regression versus not? Things like that. As you're doing these systems, it's important to like, uh, get some clarity early on on what is your gatekeeping rule.
- 17:45
Like what's your launch criteria? Is there a certain precision recall number that you're looking at? Is there some other metric that you look at? If you're doing a model eval, then probably that metric looks different than just the usual precision recall.
- 17:55
So those things can also be important to keep in mind. Uh, yeah, those are all the tips that we have to build production-grade evals. Thank you. [audience applauding]
- 18:09
We're on time.
- 18:14
Awesome. Thank you very much. Uh, do we have time for questions, staff?
- 18:20
One? Do we have time for questions? Just one. All right. You went up first, sir. Go ahead.
- 18:25
Are, uh, all your eval judgments being performed by humans, or are you als- also using LLM as a judge? Um, and if so, what's your calibration process look like for calibrating that judge to provide good evaluations?
- 18:41
Yeah, I think that's a good question. I think, I wouldn't say all. I think it depends on varied use cases. Like depending on like what kind of systems you're trying to build, we have, of course, like a plethora of use cases.
- 18:50
So I won't say all. I co- can't go into details about what the benchmarking and all of that system looks like, but some of the things that we talked about in terms of disagreement rates and ma- monitoring like sampling pipelines, those things hold true generally.
- 19:02
Yeah.
- 19:03
That's perfect.
- 19:03
Happy to chat more offline. Yeah.
- 19:05
Awesome. Great. Thank you very much, uh, Daniel and Preetika. Please give them a round of applause. You can always ask them questions in the back. Thank you. [outro music]