Nicholas

Andrej Karpathy: From Vibe Coding to Agentic Engineering w/ Stephanie Zhan

Nicholas

Andrej Karpathy (co-founder of OpenAI, former head of AI at Tesla, and now founder of Eureka Labs) talks with Sequoia partner Stephanie Zhan at AI Ascent 2026 about what's changed in the year since he coined "vibe coding." He explains why he's never felt mo...

Published
Published Apr 29, 2026
Uploaded
Uploaded Jun 11, 2026
File type
YouTube
Queried
0
Source
youtu.be

Full transcript

Showing the full transcript for this video.

AI-generated transcript with timestamped sections.

0:02-1:33

[00:02] We're so excited for our very first special guest. He has helped build modern AI. [00:07] then explain modern AI, and then occasionally rename modern AI. He actually helped co-found OpenAI right inside of this office, was the one who actually got autopilot working at Tesla back in the day. And he has a rare gift of making the most complex, [00:25] technical shifts feel both accessible and inevitable. You all know him for having coined the term vibe coding last year. But just in the last few months, he said something even more startling. [00:38] that he's never felt more behind as a programmer. That's where we're starting today. Thank you, Andre, for joining us. Yeah, hello. Excited to be here and to kick us off. [00:46] Okay, so just a couple months ago, you said that you've never felt more behind as a programmer. That's startling to hear from you of all people. Can you help us unpack that? Was that feeling exhilarating or unsettling? [01:00] Yeah, a mixture of both for sure. Well, first of all... [01:04] So [01:05] I guess like as many of you, I've been using agentic tools like lot code, adjacent things for a while, maybe over the last year as it came out. And it was very good at chunks of code. And sometimes it would mess up and you have to edit them. And it was kind of helpful. [01:16] And then I would say December was this clear point where, for me, [01:21] I was on a break, so I had a bit more time. I think many other people are similar. And I just started to notice that with the latest models, the chunks just came out fine. And then I kept asking for more and it just came out fine. And then I can't remember the last time I corrected it.

1:33-3:06

[01:33] And then I just trusted the system more and more. And then I was vibe coding. [01:40] So it was kind of a – I do think that it was a very stark transition. I think that a lot of people actually – I try to stress this on Twitter or X because I think a lot of people experienced AI last year as a chat GPT-erjacent thing. But you really had to look again, and you had to look as of December. [01:57] because things have changed fundamentally, and especially on this agentic, coherent workflow side. [02:02] that really started to actually work. [02:05] And so... [02:06] I would say that... [02:08] Yeah, it was just that realization that really had me go down the whole rabbit hole of just, you know, infinity side projects. My side projects folder is like extremely full with lots of random things and just by coding all the time. So, yeah, that kind of happened in December, I would say. [02:25] And I was looking at the repercussions of that since. [02:28] You've talked a lot about this idea of LLMs as a new computer, that it isn't just better software. It's a whole new computing paradigm. And software 1.0 was explicit rules. Software 2.0 was learned weights. Software 3.0 is this. [02:43] If that's actually true, what does a team build differently the day they actually believe this? [02:50] Right. So, yeah, exactly. So, software 1.0, I'm writing code. Software 2.0, I'm actually programming by creating data sets and training neural networks. So, the programming is kind of like arranging data sets and maybe some objectives and neural network architectures. And then what happened is that basically...

3:06-4:39

[03:06] If you train one of these GPT models or LLMs on a sufficiently large set of tasks implicitly-- because by training on the internet, you have to multitask all the things that are in the data set. [03:17] These actually become kind of like a programmable computer in a certain sense. So software 3.0 is kind of about, you know, your programming now turns to prompting. And what's in the context window is your lever over the interpreter, that is the LLM. [03:30] that is kind of like interpreting your context and performing computation in the digital-- [03:34] digital information space. So I guess, yeah, that's kind of the transition. And I think there's a few examples that really drove it home for me, and maybe that might be instructive. So, for example, when OpenClaw came out, [03:47] When you want to install OpenClaw, you would expect that normally this is a bash script, like a shell script. So run the shell script to install OpenClaw. But the thing is that in order to target lots of different platforms and lots of different types of computers you might run in OpenClaw, these shell scripts usually balloon up and become extremely complex. [04:04] But the thing is, you're still stuck in a software 1.0 universe of wanting to write the code. And actually, the OpenClaw installation is a copy-paste of a bunch of text that you're supposed to give to your agent. [04:15] So basically it's a little skill [04:17] of copy, paste this and give it to your agent, and it will install OpenClaw. And the reason this is a lot more powerful is you're working now in the software 3.0 paradigm where you don't have to precisely spell out-- [04:27] you know, all the individual details of that setup. The agent has its own intelligence that it packages up, and then it kind of follows the instructions, [04:33] and it looks at your environment, your computer, and it kind of like performs intelligent actions to make things work and debugs things in the loop.

4:39-6:11

[04:39] And it's just like so much more powerful, right? So... [04:42] I think that's a very different kind of like way of thinking about it. It's just like, what is the piece of text to copy-paste to your agent? That's the programming paradigm now. I think one more maybe example that comes to mind that is even more extreme than that is when I was building Menugen. Menugen. [04:56] So Minugen is this idea where [04:58] You come to a restaurant, they give you a menu, there's no pictures usually, so I don't know what any of these things are usually. I like 30% of the things I have no idea what they are, 50%. So I wanted to take a photo of the restaurant menu and to get pictures of what those things might look like in a generic sense. And so I built, I bytecoded this app that basically lets you upload a photo and it does all this stuff and it runs on Vercel and it basically re-renders the menu. [05:28] generator. [05:30] A four? [05:31] to basically OCR all the different titles, use the image generator to get pictures of them, and then shows it to you. And then I saw the software 3.0 version of this, which blew my mind, which is literally just take your photo, give it to Gemini, and say, "Use Nano Banana to overlay the things onto the menu." And Nano Banana basically returned an image that is exactly the picture of the menu that I took, but it actually put into the [05:57] the different things in the menu. [05:59] And this blew my mind because... [06:02] Actually, all of my menu gen is spurious. It's working in the old paradigm. That app shouldn't exist. [06:07] Uh, and, uh, [06:08] Yeah, the software's reporting paradigm is a lot more--

6:11-8:06

[06:11] kind of raw. It just... [06:13] Neural network is doing more and more of the work, and your prompt or context is just the image, and the output is an image, and there's no need to have any of the app in between. [06:22] So I think that people have to kind of like reframe [06:26] you know, not to work in an existing paradigm of what things existed and just think about it as a speed up of what exists. It's actually like new things are available now. [06:35] And going back to your programming question, it's not even--I think that's also an example of working in the old mindset, because it's not just about programming and programming becoming faster. This is more general information processing that is automatable now. [06:46] So it's not just even about code. So previous code worked over kind of like structured data, right, and you write code over structured data. But like for example, with my LLM Knowledge Basis project, [06:57] Basically, you get LLMs to create wikis for your organization or for you in person, et cetera. This is not even a program. This is not something that could exist before because there was no [07:06] There was no code that would create a knowledge base based on a bunch of facts. But now you can just take these documents and... [07:11] basically recompile them in a different way and reorder them and create something that is new and interesting as a reframing of the data. And so these are new things that weren't [07:23] And so I think this is something that I keep trying to get back to as to [07:28] not only what can we do that existed that is faster now, but I think there's new opportunities of just things that [07:34] be possible before. And I almost think that that's more exciting. [07:37] I love the menu gen progression and dichotomy that you laid out. And I think even I'm sure many folks here followed your own progression of programming from last October to early January, February this year. If you extrapolate that further, what is the 2026 equivalent for building websites in the 90s, building mobile apps in the 2010s, building SaaS in the last cloud era? What will look completely obvious in hindsight that is still mostly unbuilt today?

8:07-9:38

[08:07] Yeah. [08:07] Well, going with the example of Menugen, I guess, so a lot of this code shouldn't exist, and it's just neural network doing most of the work. [08:15] I do think that the extrapolation looks very weird because you could basically imagine [08:21] I don't-- yeah, so you could imagine completely neural computers in a certain sense. [08:25] You feed raw videos. Like imagine a device. He takes raw videos or audio into basically what's a neural net. [08:32] and uses Diffusion to render a UI that is kind of like, you know, [08:36] for that moment in a certain sense. And, um, [08:40] I kind of feel like in the early days of computing, actually, people were a little bit confused as to whether computers would look like calculators or computers would look like neural nets. And in the '50s and '60s, it was not really obvious which way it would go. And of course, we went down the calculator path and ended up building classical computing. And then neural nets are currently running virtualized on existing computers. [08:58] But you could imagine, I think, that a lot of this will flip and that the neural net becomes kind of like the host process. [09:03] And the CPU has become kind of like the co-processor. [09:06] So we saw the diagram of intelligence compute is going to, of neural networks, is going to take over and become the dominant [09:12] spend the flops. So you could imagine something [09:15] really weird and foreign when [09:17] where neural nets are doing most of the heavy lifting. They're using tool use as just like [09:20] you know, historical appendage for some kinds of deterministic tasks. [09:25] But what's really running the show is these neural nuts that are networked in a certain way. [09:29] So you can imagine something extremely foreign as the extrapolation, but I think we're going to probably get there sort of piece by piece. [09:36] And I don't-- yeah, that--

9:38-11:14

[09:38] That progression is TBD, I would say. [09:41] I'd love to talk a little bit about this concept of verifiability, the fact that AI will automate faster and more easily domains where the output can be verified. If that framework is right, what work is about to move much faster than people realize? And what professions do we have that people actually think are safe but that are actually highly verifiable? [10:02] Yes, so I spent some time writing about verifiability and basically like traditional computers [10:09] can easily automate what you can specify. [10:12] in code. And kind of this latest round of LLMs can easily automate what you can verify in a certain sense. Because the way this works is that when Frontier Labs are training these LLMs, these are giant reinforcement learning environments, so they are given verification rewards. [10:26] And then... [10:27] Because of the way that these models are trained, they end up basically progressing and creating these like [10:33] jagged entities that really peak in capability in kind of like verifiable domains like math and code and adjacent and kind of like stagnate and are a little bit-- [10:41] rougher on the edges when things are not [10:44] kind of like in that space. So I think the reason I wrote about verifiability is I'm trying to understand why these things are so jagged. [10:50] And some of it has to do with how the labs train the models, but I think some of it also has to do with the focus of the labs and what they happen to put into the data distribution. Because some things basically are significantly more valuable in economy and end up creating more environments because the labs wanted to work in those settings. So I think code is a good example of that. There's probably lots of verifiable environments they could think about that happen not to make it into the mix because they're just not that useful to have the capability around.

11:14-12:44

[11:14] I'm [11:15] But I think to me the big – I guess like the big mystery is – [11:20] The favorite example for a while was that how many letters are in the strawberry? And the models would famously get this wrong, and it's an example of jackedness. The models now patch this, I think. But the new one is, I want to go to a car wash to wash my car, and it's [redacted address] or should I walk? And state-of-the-art models today will tell you to walk because it's so close. How is it possible that state-of-the-art opus 4.7... [11:44] will simultaneously refactor 100,000 line code base [11:49] or finds zero-day vulnerabilities and yet tells me to walk to this car wash. [11:54] This is insane. [11:56] To whatever extent these models remain jagged, [12:00] It's an indication that, number one, maybe something's slightly off or-- [12:04] Number two, you need to actually-- [12:06] a little bit and you need to treat them as tools and you do have to kind of [12:10] stay in touch with what they're doing. [12:12] And so I think all of my writing-- long story short about verifiability, just trying to understand-- [12:17] Why these things are jacked? Is there any pattern to it? And I think it's some kind of a combination of [12:22] verifiable plus labs care. [12:24] Maybe one more anecdote that is instructive. [12:27] is from GPT-3.5 to GPT-4, people noticed that chess improved a lot. [12:32] And I think a lot of people thought, oh, well, it's just a progression of the capabilities. [12:35] But actually, it's more that-- I think this is public information. I think I saw it on [12:39] A huge amount of like-- [12:42] data of chess made it into the pre-chaining set.

12:45-14:14

[12:45] And just because it's in the data distribution, basically the model improved a lot more than it would just by default. [12:50] Thank you. [12:51] So someone at OpenAI decided to add this data, and now you have a capability that just peaked a lot more. And so that's why I think I'm stressing this. [12:59] dimension of it, as we are slightly at the mercy of whatever the labs are doing, [13:04] whatever they happen to put into the mix. [13:05] And you have to actually explore this thing that they give you that has no manual. [13:09] And it works in certain settings, but maybe not in some settings. And you have to kind of explore it a little bit. [13:15] And if you're in the circuits that were part of the RL, you fly. [13:19] And if you're in the circuits that are out of the data distribution, you're going to struggle. [13:23] And you have to kind of figure out which circuits you're in, in your application. And if you're not in the circuits, then you have to really look at fine tuning and doing some of your own work because it's not going to necessarily come out of the LLM out of the box. [13:36] I'd love to come back to the concept of jagged intelligence in a little bit. If you were a founder today and thinking about building a company, you are trying to solve a problem that you think is tractable, something that is a domain that is verifiable. But you look around and you think, oh, my gosh, well, the labs have really, really started getting to escape velocity in the ones that seem most obvious, math, coding and others. What would your advice be to the founders in the audience? [14:04] Thank you. [14:05] Um... [14:07] Thank you. [14:08] So I think maybe that comes to the previous question of-- I do think that verifiability, because it-- [14:14] Let me think.

14:15-15:44

[14:15] Verifiability makes something tractable in the current paradigm, because you can throw [14:19] You might have RL at it. [14:22] So maybe one way to see it is that that remains true even if the labs are not focusing on it directly. So if you are in a verifiable setting where you could create these aural environments or examples. [14:32] then that actually sets you up to potentially do your own fine tuning and you might benefit from that. [14:36] But that is fundamentally technology that just works. You can pull a lever [14:39] If you have huge amount of diverse data sets of RL environments, et cetera, you can use your favorite fine tuning framework. [14:45] AND-- [14:46] pull the lever and get something that actually works pretty well. So I don't know what the examples of this might be. [14:54] But I do think there are some very valuable reinforcement learning environments that people could think of that I think are not part of the... [15:00] Yeah, I don't want to give away the answer, but there is one domain that I think is very... [15:04] Oh, OK. Sorry. I don't mean to wakepost on the stage, but-- [15:07] There are some examples of this. On the flip side, what do you think still feels automatable, only from a distance? [15:14] I do think that ultimately almost everything can be made verifiable to some extent. Some things easier than others. [15:21] Because even for things like writing or so on, you can imagine having a council of LLM judges and probably get something reasonable out of the box. [15:31] from this kind of an approach. So it's more about what's easy or hard. [15:35] Um, [15:36] So I do think that ultimately... [15:39] Yeah, I think. [15:41] Everything. Everything is automatable.

15:45-17:20

[15:45] Amazing. Okay. So last year you coined the term vibe coding, and today we're in a world that feels a little bit more serious, more organic engineering. What do you think is the difference between the two, and what would you actually call what we're in today? [15:57] Yeah, so I would say Vype coding is about raising the floor for everyone in terms of what they can do in software. [16:02] So the floor rises, everyone can Vibe code anything, and that's amazing, incredible. But then I would say agentic engineering is about preserving the quality bar of what existed before in professional software. [16:13] So you're not allowed to introduce vulnerabilities due to Vibe coding. [16:16] You are--you're still responsible for your software just as before, but can you go faster? [16:22] And spoiler is, you can. [16:24] but how do you do that properly? And so to me, agentic engineering, I call it that because I do think it's kind of like an engineering discipline. [16:30] You have these agents, which are these spiky entities. They're a bit fallible, a little bit stochastic. [16:34] but they are extremely powerful. And it's how do you coordinate them to go faster without sacrificing your quality bar? [16:41] And doing that well and correctly is the realm of agentic engineering. So I kind of see them as different. Like one is about maybe raising the floor, and the other is about extrapolating. And what I'm seeing, I think, is... [16:56] There is a very high ceiling on agentic engineer projects [16:59] capability. [17:00] And people used to talk about the 10x engineer previously. I think that this is magnified a lot more. 10x is not the speed up you gain. [17:10] And I think it does seem to me like people who are very good at this – [17:15] peak a lot more than 10x from my perspective right now. I really like that framing.

17:20-18:51

[17:20] One thing that when Sam Allman came to AI Ascent last year, one memorable thing he said was that people of different generations use ChatGPT differently. So if you're in your 30s, you use it as a Google search replacement. But if you're in your teens, ChatGPT is your gateway to the Internet. What is the parallel here in coding today? If we were to watch two people code using Google. [17:41] OpenClaw, Cloud Code, Codex, one you'd consider mediocre at it, and one you would consider fully AI native. How would you describe the difference? [17:50] Thank you. [17:51] I mean, I think it's just trying to get the most out of the tools that are available, utilizing all of their features, investing into your own kind of set up. [18:00] So just like previously, all the engineers are used to, basically, getting the most out of the tools you use. Either it's Vim or VS Code or now it's, you know, Clothcode or Codex or so on. So just investing into your setup. [18:13] and utilizing a lot of the tools that are available to you. And I think it just kind of looks like that. I do think that maybe related thought is [18:24] a lot of people are maybe hiring for this, right, because they want to hire strong agentic engineers. I do think that... [18:34] What I'm seeing is that most people are still not refactored their data. [18:39] So, [18:39] their hiring process for a genetic engineer [18:42] capability, right? Like if you're giving out puzzles to solve, then this is still the old paradigm. I would say that hiring has to look like, give me a really big project.

18:51-20:33

[18:51] and see someone implement that big project. Like let's write, say, a Twitter clone for agents. [18:57] and then make it really good, make it really secure, and then have some agents simulate some activity on this Twitter. And then I'm going to use 10 codecs 5.4x high to try to break your... [19:10] uh, that, [19:12] the website that you deployed, and they're going to try to basically break it, and they should not be able to break it. [19:17] And so maybe it looks like that, right? And so, yeah, watching people in that setting and building bigger projects and utilizing the tooling is maybe what I would look at for the most part. [19:29] And as agents do more, what human skill do you think becomes more valuable, not less? [19:34] So, yeah, it's a good question. I think... [19:38] Well, right now the answer is that the agents are cataloged these intern entities, right? So, [19:42] It's remarkable. [19:45] You basically still have to be in charge of the aesthetics, the judgment, the taste, and a little bit of oversight. Maybe one of my favorite examples of, like, the weirdness of agents is – [19:56] for Menugen, you sign up with a Google account, but you purchase credits using a Stripe account, and both of them have email addresses. And my agent actually tries to basically... [20:07] Um... [20:09] like when you purchase credits, it assigned it using the email address from Stripe to the Google email address. Like there wasn't a persistent user ID that... [20:18] that for people. It was trying to match up the email addresses, but you could use different email address for your Stripe and your Google, and basically would not associate the funds. And so this is the kind of thing that these agents still will make mistakes about. It's like, why would you use email addresses to try to cross-correlate the funds?

20:33-22:02

[20:33] They can be arbitrary. You can use different emails, et cetera. Like, this is such a weird thing to do. So I think people have to be in charge of this spec, this plan, and... [20:42] I actually don't even like the plan mode. [20:45] I mean, obviously, it's very useful, but I think there's something more general here where you have to work with your agent to design a spec that is very detailed. [20:52] And maybe it's basically the docs. [20:54] and then get the agents to write them. And you're in charge of the oversight and the top-level categories, but the agents are doing a lot of the under-the-hood. [21:01] And so I think you're not caring about some of the details. So as an example also with... [21:07] arrays or tensors in neural networks. There's a ton of details between PyTorch and NumPy and all the different, like, pandas and so on for all the different little API details. And I already forgot about the keep dims versus keep dim or whether it's dim or axis or reshape or permute or transpose. I don't remember this stuff anymore, right, because you don't have to. This is the kind of details that are handled by the intern because they have very good recall. [21:28] But you still have to know, for example, that there's underlying tensor, there's an underlying view, and then you can manipulate view of the same storage, or you can have different storage which would be less efficient. And so you still have to have an understanding of what this stuff is doing and some of the [21:44] so that you're not copying memory around unnecessarily and so on. But the details of the APIs are not handed off. [21:51] So you're in charge of the taste, the engineering, the design, and that it makes sense, and that you're asking for the right things, and that you're saying that, okay, these have to be unique user IDs that we're going to tie everything to.

22:03-23:56

[22:03] And so you're doing some of the [22:05] design and development, and the engineers are doing the fill in the blanks. And that's currently kind of like where we are, and I think that's what everyone, of course, is seeing, I think, right now. [22:13] Do you think there's a chance that this taste and judgment matters less over time, or will the ceiling just keep rising? Yes, good question. [22:24] Thank you. [22:24] Um... [22:26] I mean, I'm hoping that it improves. I think probably the reason it doesn't improve right now is, again, it's not part of the RL. There's probably no aesthetics cost or reward or it's not good enough or something like that. [22:38] AND I THINK THAT'S A LOT OF PEOPLE. [22:39] Thank you. [22:39] I do think that when you actually look at the code, sometimes I get a little bit of a heart attack because it's not like super amazing code necessarily all the time. It's very bloaty and there's a lot of copy paste and there's awkward abstractions that are brittle and like it works, but it's just... [22:52] really gross. And I do hope that this can improve in future models. A good example also is this, you know, micro-GPT project. [23:00] where I was trying to simplify LLM training to be as simple as possible. The models hate this. They can't do it. I kept trying to prompt an LLM to simplify more, simplify more, and it just can't. [23:13] You feel like you're outside of the RL circuits. It feels like you're obviously... [23:17] You're pulling teeth. It's not like light speed. [23:21] So I think... [23:22] I do think that people still remain in charge of this, but I do think that there's nothing fundamental again that's preventing it. It's just the labs haven't done it yet almost. [23:30] Yeah. [23:30] So I'd love to come back to this idea of jagged forms of intelligence. You wrote a little bit about this with a very thought-provoking piece around animals versus ghosts. And the idea is that we're not building animals. We are summoning ghosts. And these are jagged forms of intelligence that are shaped by data and reward functions, but not by intrinsic motivation or fun or curiosity or empowerment. Yeah.

23:56-25:30

[23:56] things that kind of came about via evolution. Why does that framing matter? And what does it actually change about how you build and deploy and evaluate or even trust them? [24:09] Yes, so... [24:11] Yeah, I think the reason I wrote about this is because I'm trying to wrap my head around what these things are, right? Because if you have a good model of what they are or are not, then you're going to be more competent at using them. And I do think that... I don't know if it has... [24:25] I'm not sure if it actually has real power. I think it's a little bit of philosophizing. [24:31] But I do think that – [24:34] I think it's just – [24:36] Coming to terms with the fact that these things are not, you know, animal intelligences, like if you yell at them, they're not going to work better or worse or it doesn't have any impact. [24:44] And-- [24:46] It's all just kind of like these statistical simulation circuits where the substrate is pre-training, so like statistics. [24:54] And then--but then there's RL bolting on top, so-- [24:57] It kind of like increases the appendages. And maybe it's just kind of like a mindset of what I'm coming into or what's likely to work or not likely to work or how to modify [25:06] I didn't actually-- [25:07] I don't know that I have like-- here are the five obvious outcomes of how to make your system better. It's more just being suspicious of it and-- [25:14] figuring it out over time. [25:16] That's where it starts. Okay, so you are so deep in working with agents that don't just chat. They have real permissions. They have local context. They actually take action on your behalf. What does the world look like when we all start to live in that world?

25:30-27:02

[25:30] Yeah, I think a lot of people probably here are excited about what this, you know, native agentic environment looks like. And everything has to be rewritten. Everything is still fundamentally written for humans. [25:43] and has to be moved around. I still use, most of the time when I use different frameworks or libraries or things like that, they still have docs that are fundamentally written for humans. This is my favorite pet peeve. [25:53] Like, I don't-- why are people still telling me what to do? Like, I don't want to do anything. What is the thing I should copy paste to my agent? So it's just every time I'm told, you know, go to this URL, or something like that, it's just like, oh. [26:08] So, everyone is, I think, excited about how do we decompose [26:12] the workloads that need to happen into fundamentally sensors over the world, actuators over the world, [26:17] how to make it agent-native, basically describe it to agents first. [26:21] and then have a lot of automation around [26:25] you know, the [26:27] Um... [26:28] yeah, around data structures that are very legible to the LLMs. [26:31] So I think, yeah, I'm hoping that there's a lot of agent first infrastructure out there. [26:36] And that for Menugen, famously, when I wrote the-- I'm not sure how famously, but when I wrote the blog post about Menugen, [26:44] A lot of the work, a lot of the trouble was not even writing the code for Menugen. It was deploying it in Vercel because I had to work with all these different services and I had to string them up and I had to go to their settings and the menus and... [26:54] configure my DNS and it was just so annoying. And so that's a good example of I would hope that Menugen, that I could give a prompt

27:02-28:35

[27:02] to an LLM, build menu gen, and that I didn't have to touch anything and it's deployed in that same way on the Internet. [27:08] I think that would be a good kind of a test for whether or not [27:11] a lot of our infrastructure is becoming more and more agent native. And then ultimately I would say [27:16] Yeah, I do think we're going towards a world where [27:19] there's agent representation for people and for organizations. [27:23] And-- [27:24] You know, I'll have my agent talk to your agent to figure out some of the details of our meetings or things like that. So I do think that that's roughly where things are going. But, yeah, I think everyone here is excited about that. I really like the visual analogy of sensors and actuators. I actually hadn't thought about that. It's super interesting. Right. Okay, I think we have to end on a question about education because you are probably one of the very best in the world [27:54] around it. [27:56] What still remains worth learning deeply when intelligence gets cheap as we move into the next era of AI? [28:05] Yeah. There was a tweet that blew my mind recently, and I keep thinking about it like every other day. It was something along the lines of you can outsource your thinking, but you can't outsource your understanding. [28:16] I think that's really nicely put. [28:19] So... [28:21] Yeah, because I'm still part of the system, and I still have to... Somehow, information still has to make it into my brain, and I feel like I'm becoming a bottleneck of just even knowing... [28:29] What are we trying to build? Why is it worth doing? How do I direct my agents and so on? So

28:35-29:42

[28:35] I do still think that [28:37] Ultimately, something has to direct the thinking and the processing and so on [28:41] And, um, [28:42] That's still kind of fundamentally constrained somehow by understanding. And this is one reason I also was very excited about all the LLM knowledge bases. [28:49] Because I feel like that's a way for me to process information. And any time I see a different projection onto information, I always feel like I gain insight. [28:56] So it's really just a lot of prompts for me to do synthetic data generation kind of over some fixed data. [29:02] So I really enjoy, whenever I read an article, I have my wiki that's being built up from these articles, and I love asking questions about things or... [29:10] And I think that ultimately these are tools to enhance understanding in a certain way. And this is still kind of like a bit of a bottleneck because then you can't direct the [29:21] You can't be a good director if you still-- [29:23] Because the LLNs certainly don't excel at understanding you still are uniquely in charge of that. [29:28] Yeah, I think tools to that effect, I think, are incredibly interesting and exciting. [29:33] I'm excited to be back here in a couple years and to see if we've been fully automated out of the loop and they actually take care of understanding as well. Thank you so much for joining us, Andre. Thank you. I really appreciate it.

Want to learn more?

Ask about this video