← All AI Engineer talks

AI Engineer Europe 2026

Does GenAI "belong" to data scientists?

Read the talk

Does GenAI belong to data scientists?

Building agents requires more than model expertise: product engineering, domain judgment, and evaluation each address a different part of the gap between a convincing prototype and a useful product.

From a talk by Phil Hetzel

Who gets an agent into production?

Does agent development belong to data scientists and machine learning engineers? The practical question is who can turn an experiment into a working product. Phil Hetzel introduces himself as the leader of Braintrust’s solutions engineering team, with twelve years in consulting and systems implementation behind him. While leading Slalom’s global Databricks business unit, he repeatedly saw customers produce generative AI proofs of concept but struggle to bring them into production. That gap led him to use Braintrust and, eventually, join the company.

The quality problem has two connected parts. In Braintrust’s evaluation framing, evals help a team assess changes during experimentation and build confidence before release. Observability helps maintain that confidence once real users confront the agent with real usage. These are complementary activities, not a rule that evaluation stops at deployment. A convincing prototype still needs evidence that its behavior holds up in the product.

Slide titled “What is Braintrust?” with three quality questions and a diagram connecting AI in an app, scores, and prompts A, B, and C.
Braintrust’s overview connects AI evaluation, production monitoring, and prompt improvement.
0:001:04
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

0:00 · section reference included

Inherited ownership versus proximity to the problem

Hetzel describes two organizational patterns he has observed. In a traditional enterprise, an executive decides the company needs agents. The mandate passes down to an existing ML or data science platform team: that team already has tooling, and generative AI has “AI” in its name. The assignment feels natural because it follows the existing organization.

Smaller AI-native companies often start from a different position. Their offering was built around agents, so they may have no inherited AI platform boundary. A small engineering team spans product and AI development, and individual builders remain close to the problem the agent is supposed to solve. These are observed patterns, not universal categories, but they expose an important distinction: owning the relevant technology does not necessarily mean understanding the intended outcome.

2:543:06
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

2:54 · section reference included

The model is already built

Integrating a pretrained LLM changes what the application team must build. Much traditional ML work revolves around a data pipeline: prepare data, train and test a model, control overfitting, and deploy the result for a downstream product team. Natural-language inputs introduce another way to add value, with a different set of contributors able to influence behavior.

For a hosted LLM, providers such as Anthropic, OpenAI, and Mistral have already developed the underlying model and exposed it through an endpoint. Their testing does not establish that a particular application works. The application team still needs product-specific evals after integrating the API. The responsibility moves from reproducing the foundation-model pipeline to assessing what the product does with the model.

The available ways to change behavior also shift:

ApproachChange mechanismAssessment
Traditional MLMore training data or feature engineeringTest whether changes produce lift, including A/B tests
Pretrained LLM applicationChange prompts and supplied contextEvaluate the resulting application behavior

Prompts and context can change behavior without fine-tuning. Hetzel characterizes fine-tuning as relatively rare in the work he is discussing, rather than unnecessary in every application. This makes proximity to users especially valuable: someone who understands the task can improve the information and instructions supplied to the model.

5:135:27
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

5:13 · section reference included

Testing expertise still needs a product target

There is a strong case for giving data scientists responsibility for agents. Agents use models, and many organizations already place model governance with data science. Knowledge of neural networks supports an appreciation of the risks. Established release processes and a rigorous testing mindset can protect the company and its users from poorly understood behavior.

But the application team is not necessarily repeating model training and cross-validation. The harder question becomes whether it knows what to test for. Hetzel has seen teams fixate on precision, recall, and F1 because those metrics served them well in traditional ML. An agent has a broader surface of behavior: evaluation must address its functional performance in the task, not only familiar technical measures. Knowing how to measure a model is different from knowing whether an agent accomplishes its purpose.

7:528:08
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

7:52 · section reference included

APIs, distributed execution, and domain judgment

The case for involving other disciplines starts with the application boundary. Product engineers routinely send payloads to APIs, retrieve information, and turn responses into useful behavior for users. Consuming an LLM endpoint fits that part of their work.

A complex agent can also be a distributed system. A supervisor may call child agents running on different infrastructure, and those children may call different systems in turn. Making that arrangement work is a systems engineering problem as well as a model problem. Statistical expertise alone does not cover the full execution environment.

Subject matter experts and product managers contribute another essential skill: they understand what success should look like. They can shape the prompts supplied to the agent and review its behavior. In a human annotation workflow, a domain expert examines an agent trace, judges whether it performed well, and explains why. That explanation makes the judgment useful for improving the product, rather than merely recording approval or disapproval.

Slide titled “Agents belong to non-data scientists” with three pink boxes discussing product engineers using APIs, complex distributed agents, and product managers or SMEs assessing success or failure.
Three arguments for agent development beyond data science: APIs, distributed systems, and domain expertise.
9:5510:08
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

9:55 · section reference included

Where data science adds distinctive value

Broadening the team does not require data scientists to discard their skills or step away from implementation. They can contribute directly to the product while working with other technical and nontechnical specialists. The point is to bring more relevant expertise into development.

Beyond implementation, Hetzel identifies three contributions:

  • Technical risk guidance. Statistical knowledge can temper overconfidence in LLM behavior. His reminder that the model predicts tokens is a caution against treating fluent output as evidence of understanding or reliability.
  • Validating LLM judges. A judge is itself a prompt-and-model system. It should not be trusted merely because it returns an evaluation. A labeled dataset provides a basis for checking its judgments with measures such as precision, recall, and F1.
  • Use-case-specific fine-tuning. When an application needs a fine-tuned open-source model, data scientists and ML engineers can contribute directly to that specialized work.

The judge example gives familiar classification metrics a specific target: assessing the evaluator against labeled examples. That is a narrower, appropriate use of those metrics, distinct from treating them as a complete description of agent quality.

12:0012:11
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

12:00 · section reference included

Connect implementation to the feedback loop

Product, application, and systems engineers turn domain requirements into working behavior. They also make sure the infrastructure on which agents execute supports a good user experience. Together with data scientists, they can implement evaluation and observability pipelines that connect what happens in production with what the team tests during experimentation.

Nontechnical experts need an active role in that process through human annotation, prompt development, and context engineering. Their proximity to the problem helps keep the agent relevant to its intended use. The proposed team therefore preserves data science expertise while giving other contributors meaningful influence over both behavior and assessment.

14:1314:30
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

14:13 · section reference included

Start with the problem, not ownership of the tool

The first audience question challenges the ownership framing itself. If agents are tools, anyone in the organization might build or own one, especially when that person has the relevant domain expertise. Why begin with which team owns the technology instead of the problem it is meant to solve?

Hetzel agrees: the agent is a product built by a diverse team. The organizational mistake he is criticizing is treating it as another predictive-model project and isolating it within ML engineering or data science. Starting from the problem changes whom the team needs to involve.

15:4615:53
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

15:46 · section reference included

When the evaluator may be wrong

The second audience exchange asks how tooling can help domain experts close the improvement loop and update the system. Hetzel initially points to Braintrust’s human labeling tools and agent and prompt playground: interfaces where contributors can provide judgments, experiment with prompts, and send them to the underlying agents.

The question then becomes more precise: how does a team keep both the evaluator and the agent up to date, and determine whether an error comes from the evaluator or the system being evaluated? Improving one does not automatically establish the correctness of the other.

Hetzel proposes continually gathering production examples and adding them to the offline evaluation dataset. Along the way, the team needs grounded judgments against which it can check its evals. The test is whether those evaluations increasingly agree with human judgment—or begin to diverge. This is a feedback process for checking and recalibrating evaluation, not an automatic method for attributing every error. Production data supplies new cases; human agreement remains something to examine, not something the loop guarantees.

16:5117:19
Suggest correction

This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.

16:51 · section reference included

Resources

From the talk

Read the complete timestamped transcript
  1. 0:00

    [upbeat music] What we're gonna do today is we're gonna talk about whether agents or agentic development really belong to, uh, data science or machine learning engineers.

  2. 0:24

    How many people here would describe themselves as either, A, a data scientist, or two, or, or B, a machine learning engineer? Okay. This is gonna be awesome. I'm glad that no one has brought any rotten tomatoes because the, the answer that I'm gonna give is, is probably not gonna be exactly to your liking.

  3. 0:41

    But give me a chance to justify why. Um, what we're gonna do today is talk through, uh, these couple things. I'll introduce myself, introduce the company that I work for, and then, um, we'll get in, in- into the topic.

  4. 0:55

    I'll probably rip through the, the slides pretty quickly and hopefully give some time for, uh, for Q&A. Um, but before I do that, I'll introduce myself. My name's Phil Hetzel.

  5. 1:04

    I lead the solutions engineering team at Braintrust. Um, Braintrust, uh, well, I'll, I'll, I'll go over that in a second, but, uh, the solutions engineering team is basically, um ...

  6. 1:14

    I think there's a, there's a seat, uh, right there. Yeah. Um, solutions engineering team is basically the people that allow our customers to get the most value out of the platform as quickly as possible.

  7. 1:25

    Uh, prior to Braintrust, I spent 12 years in consulting and systems implementation. Um, my last role in consulting was leading the global Databricks business unit at a company called Slalom Consulting, and I noticed that a lot of my customers were really prolific at creating generative AI proofs of concepts, but not nearly as good at bringing those proofs

  8. 1:44

    of concepts to production. So I started using Braintrust as a user first, and I liked the product so much that I applied for a job, and I've been here for about a year, uh, since, since that happened.

  9. 1:55

    Outside of work, I like to play chess, but I'm not very good at it, and I like to spend time with my wife and my dachshund, Pistol Pete. Uh, he's, he's pictured over there.

  10. 2:02

    He's the one in brown and not the one in black. The one in black is me. The one in brown is him.

  11. 2:07

    Uh, what is Braintrust? Braintrust is a, um, agent quality platform. The way that we perform agent quality is, uh, two different pillars, evals and observability. Evals, those are the things that you're doing, um, in experimentation as you're tweaking and building your agent to become confident in your agent's execution once you push it to production.

  12. 2:30

    Obser- agent observability to us means that once it is in production, that you remain confident in its execution once it's confronted with real usage and real users. There are other some, uh, other ancillary things that the platform does, but in general, that's what we do.

  13. 2:44

    Uh, I'm really not gonna talk about the product today. If you're interested about the product, uh, you can find me at, uh, at the booth downstairs. But other than that, very happy to get in, into the content.

  14. 2:54

    Um, just some observations that, that I've seen, uh, through, through the last year of, of watching some of the top, uh, teams building agents a- a- across many different industries.

  15. 3:06

    I think there are, there are, like, two different types of organizations that we work with. There's the traditional enterprise and there is the AI natives. Traditional enterprise approach agent, a- uh, agentic development a little bit differently than AI natives.

  16. 3:21

    Traditional enterprise, the, uh, a person in charge, a person of note, CEO or CIO, will read something in the CIO or CEO monthly magazine that says that they need to be building agents, and then they'll tell their delegate that, "You need to be building agents because that's the thing that's going to take us to the, to the

  17. 3:38

    AI promise land." And then that will get further delegated to an existing ML or data science platform team who already have a lot of the tooling in place, and since generative AI has AI in the name, it's a pretty natural fit to hand over that capability to an existing AI or, or data science team.

  18. 3:58

    Is anyone kind of in the, in that bucket today where they just got ... They were machine learning platform engineers previously, and they just kind of got handed generative AI because that's kind of seemed like the be- best fit?

  19. 4:09

    Yeah, got it. And I, and there, there's no judgment or connotation here. Uh, d- just, just something that, uh, that, that I've, that I've observed. Uh, there's an, a whole other set of companies that are, that are more AI native that think less about, uh, what already exists because nothing really existed before generative AI, uh, started to

  20. 4:28

    gain popularity for these companies. In fact, they started building their entire offering around agents. So rather than having an, uh, AI ML platform team, they'll just have a, a small team of engineers that are, um, agile enough to grow with the times and, um, you know, rather than having very specific segments of things that they do, everyone

  21. 4:51

    is, is very much cross-functional across both product engineering and AI engineering. Uh, the other thing that, that's interesting about these AI natives is that since it's, since these are typically smaller companies, that each person has more proximity to the problem, i.e., they have a better understanding of what the end agent is actually meant to solve.

  22. 5:13

    Uh, two different, uh, differences, uh, between traditional ML and generative AI. The model's already built. So much of, of, of what data scientists and machine learning engineers is going through that data pipeline of training a model.

  23. 5:27

    What do we do when the, the model is already built? And the other interesting thing, or other interesting nuance, I should say, is that if you want to add value to these models, then you can add values not necessarily with feature engineering but with natural, natural language, which could bring in a different skill set to the, to

  24. 5:43

    the conversation. So just to make this, uh, more clear, this is like ... I, I know that it's so much more complicated than that. But abstracted to a certain level, this is kind of what data scientists and machine learning engineers do, is a data pipeline of training and testing, making sure that you're not over fitting, eventually deploying

  25. 6:02

    that model where it can be used by some downstream product team. That is, that is, that is kind of what data scientists and machine learning engineers are used to doing.

  26. 6:11

    This, though, has already been done. Anthropic and OpenAI and Mistral, they've already done the, the data process of, um, grabbing that data, putting it through the pipeline, training the underlying LLM, and then deploying it through an endpoint so that their consumers can use it.

  27. 6:29

    Um, the one nuance here is that instead it f- you know, while Anthropic and OpenAI and Mistral will be doing testing of their own, we still need to, as, as, uh, AI teams, we still need to perform evals after we've implemented, uh, those APIs in- into our product.

  28. 6:48

    That's very, that needs to be very important to us. That's really the only nuance here between these two images. Um, how do you change the ... This is kind of going, uh, uh, to, to these two differences before.

  29. 6:59

    The second difference, how do we change these predictive applications before and after? Uh, traditional ML, you, you either add more data to retrain it or you're performing feature engineering to adjust how the, uh, how the underlying model is performing, and then you're performing a lot of AB testing to understand how your model, uh, is, how your model

  30. 7:19

    changes has provided lift or not provided lift. Um, with generative AI, you can, since that model is already trained, and irrespective of performing any fine-tuning on that model, which is pretty rare, um, the way that you can change that behavior is just by changing the inputs, the prompts, the context that you're giving that, that model.

  31. 7:38

    So there's a lot of folks that will be performing com- context engineering on top of these models and, uh, those folks could have a better understanding of how real users could be using the agent, they'll have closer proximity to the problem.

  32. 7:52

    Uh, so I'm gonna make the case for and, and against agents belonging to, uh, to data scientists. Uh, let's say I was making, I was debating, uh, the position of it really does belong to data scientists and traditional machine learning engineers.

  33. 8:08

    Uh, agents use models. In our organization, models are go- are governed by data scientists. So, uh, data scientists will have a lot of underlying knowledge about how neural nets work and, and thus how LLMs work.

  34. 8:23

    Um, because of that, they're going to have a far better appreciation of the risks inherent with using this very complex technology. Um, other, other, other thing here is that they'll have very rigorous processes to push models and model assets to production.

  35. 8:41

    They will understand some type of testing process that they can use to keep the company safe and make sure that us- end users are getting the, um, the, the experience that they need.

  36. 8:53

    Um, and then number three, very related, just very rigorous mindset around testing. The counter report to that is, again, model's already built, so we d- um, we don't necessarily need to do any training and testing.

  37. 9:05

    Um, uh, entirely different, uh, different pipeline. We're not doing, like, the whole, uh, cross-validation dance. And this is probably the biggest argument. Um, d- does an AI, or sorry, does an ML engineer or a data scientist really know what they're testing for?

  38. 9:21

    One of the things that, uh, I've noticed with some of these teams is they will really lock onto the traditional ML engineer metrics like precision recall, F1, um, and they'll obsess over those metrics because that is what has gotten them there up to that point.

  39. 9:36

    But when you're, uh, analyzing agents, it is far broader of a surface area that you need to be evaluating. You need to be evaluating the functional, uh, performance of that agent rather than just a technical performance across that toolbox, um, that we're, that we're tr- traditionally used to working with.

  40. 9:55

    Um, so argument here is, let's say that I was arguing that agents belong to non-data scientists, which could be both technical and, and non-technical experts. We could make the case that LLMs are just APIs.

  41. 10:08

    Product engineers are very used to using APIs as they, as they build applications. Um, that is a, a massive part of what they do, is reaching out, grabbing information from another system based upon some payload, and bringing that information back in a way that's useful to the end users.

  42. 10:26

    That is a, that is a thing that product engineers do. Um, the other thing about agents that is unique is that if you have a very complex agent, it could be running across many different types of compute if it's, if it's some distributed agent, i.e., you have a supervisor agent up here and then it's calling different, uh,

  43. 10:45

    child or sub-agents that might be running on different infrastructure. And as they're running on different infrastructure, they might be calling different systems as a result. That's a, that can be a very complex systems problem that might not be up the alley of a, of, of someone with more of a, a s- a statistics or maths background.

  44. 11:05

    And then finally, um, more on the, on the non-technical side, it's really valuable to have, uh, subject matter experts or product managers be able to control the actual prompts that we're seeding the agent with.

  45. 11:18

    These people are the ones that have the most proximity to the problem that the agent is trying to solve. So there's a lot of lift in having a non-technical person have a lot of say in how the agent performs.

  46. 11:31

    Not only that, there is a, um, there can be a l- a, a very large human annotation workflow that goes into making great agents, where as you see these interactions, if you are a non-technical person but has a lot of domain expertise for how the agent is supposed to be performing, uh, that non-technical person can look into

  47. 11:51

    an agent trace and describe whether or not the agent is performing well or not performing well, and most importantly, why that's the case.

  48. 12:00

    So where I'm landing with all this is not that all of the people that raise their hand that says, "Yes, I am proudly a data scientist or ML engineer," I am not going to stand here and say, "Well, guess what?

  49. 12:11

    Like, you need to completely, um, refresh your, your skill set." Um, that would be a very, uh, silly thing to say 'cause I kind of figure there would be a lot of data scientists in the room, and I'm, I'm at least smarter than that.

  50. 12:23

    But, um, it, it does make sense to have a very diverse team when you're, uh, when you're building these platforms. Um, it makes sense to bring both non-technical and different types of technical people into the fold.

  51. 12:36

    How can data scientists add value to building agents? Um, a couple different ways. Al- also, all these ways are irrespective of actually helping to build the product itself. I think that's inherent.

  52. 12:47

    Um, with, with the tools that we have available to us now, it's actually quite easy for us to be able to add value to a product even if you are not coming from a product engineering background.

  53. 12:58

    But what I think is really valuable is data scientists can add, um, to, to use an overloaded term, add the guardrails to this process. A lot of people are very aggressive in, in how they implement LLMs.

  54. 13:08

    They don't understand how the underlying technology works. They don't come from a stats background. I think data scientists can, can be the adult in the room, uh, during those situations and say, you know, "The, the LLM, this is how it's trained.

  55. 13:21

    It's just predicting token after token. It doesn't actually know anything really. It's just a bunch of stats problems at the end of the day." I also think that, uh, LLM as judge is a huge part of the eval process when you're building agentic applications.

  56. 13:37

    Um, again, people are very tempted to just believe LLM as judges when they're performing evals. They're just prompts and models at the end of the day, and it's very easy to be able to create some label data set and perform the traditional recall precision and F- F1 style metrics on those, which, um, data scientists will have expertise

  57. 13:56

    to. And the last, last one, this is the most technical one, of course. If you do need to fine-tune an open source model very specifically to your use case, that's probably gonna be, like, the most fun and, and technical thing where, uh, data scientists and machine learning engineers can, can add a ton of value.

  58. 14:13

    Um, the ideal mix here, i- in addition to the, like, to, to that top section, we want, uh, both product application and systems engineers to be able to implement those requirements into the product itself, um, that, that the non-technical, uh, experts are, are giving to them.

  59. 14:30

    Uh, we wanna make sure that the systems that we're building around these agents, i.e. where the agents are executing, is, uh, such that it's going to lead to a great pro- um, user experience.

  60. 14:41

    And then finally, and this is probably something the, the data scientists can pitch into as well, implement actual eval and observability pipeline so you have that feedback loop of what happen, what is happening in production and what is, uh, and what's happening in experimentation.

  61. 14:55

    For non-technical experts, we want them to be performing a ton of human annotation and a lot of prompt and context engineering. They have the closest proximity to the problem.

  62. 15:06

    You need to bring them into the fold if you wanna have a very relevant a- agent to your use case. Uh, so what's next? Uh, answer is always in the middle.

  63. 15:15

    Um, so I, I hope I didn't fully insult half the people in the room today. Um, if, uh, if I have, then you can feel free to, uh, come to my, come, uh, come to the Braintrust boo- booth and give me an earful.

  64. 15:26

    That's completely fine. Uh, but the idea here is that ton of value for data scientists. Just make sure that you're bringing more folks into the room as you're, uh, as, as you're building agents.

  65. 15:35

    Two minutes for questions. I know that we're keeping, like, a very tight timeline. Yes, sir.

  66. 15:40

    Um, yeah. Re- really good. Um, I, I,

  67. 15:44

    like, the, the, the conclusion.

  68. 15:46

    Mm-hmm.

  69. 15:46

    Uh, uh, but I, I do have a question on the, the framing. So, you know, this ... I, I view agents as a tool.

  70. 15:52

    Mm-hmm.

  71. 15:53

    So anybody in the organization could, could, you know, build and own an agent-

  72. 15:57

    Mm-hmm

  73. 15:57

    ... in theory. Um, uh, and they, they may have more domain expertise in the data science or the, the engineering side.

  74. 16:04

    Mm-hmm.

  75. 16:04

    Um, uh, g- rath- rather than thinking about who owns the tool-

  76. 16:09

    Mm-hmm

  77. 16:09

    ... you know, this is a machine learning team or that's the computing team-

  78. 16:12

    Mm-hmm

  79. 16:13

    ... that needs to work up, h- how do you, how do you view it as thinking about it based on the problem that's being solved and seeing agents as a tool to solve the problem rather than the, the agents as the solution itself?

  80. 16:24

    I think you're thinking about it, I think you're thinking about it the exact same way. It's a, it's a product that a, that a diverse team builds. I think the mistake that I see a lot of typically traditional companies make is they say, "Oh, this ...

  81. 16:36

    We're making another predictive model."

  82. 16:38

    Yeah.

  83. 16:38

    And they isolate it to the ML engineers or data scientists and say, "Go build an, go build these agent things." Um, I think we're, we're actually thinking about it very-

  84. 16:47

    Yeah

  85. 16:47

    ... very similarly.

  86. 16:48

    Great. Cool.

  87. 16:48

    Yeah. Maybe w- uh, time for one more question. Yes.

  88. 16:51

    Um, yeah. I, I really, um, echo with, um, yeah, the message that you're trying to say. I don't know if I can cross-function it, but I, I, I think I'm just curious about the, um, actually the tooling that you are offering about closing the loop.

  89. 17:05

    Mm.

  90. 17:06

    And, um, I think that, uh, at least from my experience, the missing delta is the tooling to facilitate that enter ... like in traditional machine learning, but into enter like, um, variation and then making.

  91. 17:18

    Mm-hmm.

  92. 17:19

    Uh, is that something that Braintrust is, like, thinking about?

  93. 17:23

    Yeah.

  94. 17:23

    Is c- yeah, like how to, um, make it easy for a domain expert to update the system and

  95. 17:30

    Yeah, for sure. Yeah, there's a, there's a lot of things that we do to lean into that domain expert persona. We do have a human lab- labeling component as a part of our platform, and we do have, like, a, a agent and prompt playground where people can experiment with their own prompts and send them to the underlying

  96. 17:46

    agents themselves.

  97. 17:48

    Right.

  98. 17:49

    Yeah.

  99. 17:50

    Yeah. Um, uh, but I mean the, um, like how to ... How, what is the system in play that you keep the evaluator up to date, but then also the system up to date and, like, understanding it?

  100. 17:59

    Like, uh, I guess the error analysis, like if the error is based on the evaluator or the system itself.

  101. 18:05

    Mm-hmm. The idea is that we, we gather data from production to continually add to that offline data set that we're evaluating upon, and then hopefully we're, uh, gaining grounded data along the way where we can kind of self-check ourselves to understand, um, if our evals are aligning, starting to align more to human, uh, agreement, agreement or, or

  102. 18:29

    not, or if they're diverging. Yeah. Okay. Uh, everyone, that's my time. I really appreciate the attention today. If there are any more questions, find me downstairs. [clapping] [upbeat music]