The Missing Layer in Agentic AI — Giedrius Šteimantas, Oxylabs

AI Engineer15:03Added Sep 6, 2026

Point an agent at ten product pages, get real content back from three, and send all ten to the model anyway: seventy percent of those tokens go to reading CAPTCHAs. Giedrius Šteimantas says most teams never notice, because the status code and the response size both look fine. A 200 does not mean the page is real. He got here through a friend who vibe coded a personal shopping agent, a chatbot that talks through your style then hands a second agent prompts to go buy things. It ran a browser automation framework at every stage, which made it slow, expensive, and unreliable enough not to work

Watch on YouTube →
Contributed by Heather

Transcript

Transcript format
Chapters8

A friend's personal shopping agent that did not work

00:13What a beautiful voice. All right, thank you for coming. Um, today I'm going to talk a lot about about missing layer of Aentic AI and explain a little bit about how web scraping infrastructure can actually help you. But first, let me talk uh a little bit about my friend's idea.

00:24So, my friend had this idea. Uh he built this AI chatbot that, you know, chatted with people about their style and it was supposed to help them pick out new items uh as you know, some sort of a personal shopper. And once those items were picked out, you know, this uh this this this chatbot would uh produce prompts that a shopping agent would then take and attempt to find them online and purchase them for uh you know for for for the customers.

00:57Um this idea I know is not new and uh it could be applicable to many scenarios but my friend was kind of you know uh he was u he was good at building agents uh but u he ran into different problems and asked me for advice and when he ran it he he would usually you know instead of you know product pages or whatever he would get things like that it's uh you know he would get captured you know and uh you know of course you So he was uh he was doing it very very quickly.

01:28So he wipe coded the whole thing while having a you know a thought about you know infrastructure and underlying layers and how it should work. I didn't at all. Uh he was using a browser automation framework for everything and it was slow, expensive and unreliable.

01:55So at the end he made a product that uh uh that does not work and is expensive to run. So he asked me for help and you know I was a little bit reluctant at first because uh you know I don't like giving out professional advice you know for free but uh I took a look at it and uh you know I got a little curious I have to be honest.

02:11I noticed that he was missing something. Um he was missing a layer an infrastructural layer that would allow this agent to operate freely on the open web.

Ten years of scraping, and one rule: cost matters

02:32My name is Gedrus. I I work for Oxyabs uh where in the past 10 years we've helped you know companies that trained large language models uh get their data and now we use this infrastructure to help AI agents to access uh web on scale and at low cost.

02:56And uh before we go into this agent and see how we can build it, I wanted to talk a little bit about the scraping industry and how we operate. And uh the principles that we operate on can be summed up by one uh sentence. You know, cost matters.

03:15And the first principle is use a browser when you absolutely have to validate content. HTTP response 200 does not mean that we are good to go. Lighter content is preferred. Websites are full of JavaScript, CSS, HTML, and there's a lot of bites that do not deliver any value whatsoever.

03:40And today I will demonstrate how these principles are also applicable when building agents that interact with the web. So coming back to my friend's agent, right? Let's uh let's take a look and see how uh we could do a better job and uh making this agent run more reliably.

03:58So here's how my friends set it all up, you know? So four different stages. Discovery, the agent was supposed to find products pages on websites where these items can be bought. Then a decision stage, right? and uh where an agent can decide uh what products to buy based on you know uh the the content of these pages.

04:20So the agent has to visit them verify that the the stock is there the price is right the the description fits uh you know the prompt and once that decision is made user is given with a choice you know whether to go ahead with the purchase or you know reject it altogether.

04:36The problem was that sometimes and of course we go to execution right away then execution just making the purchase but the problem was that sometimes it worked and sometimes it did not that was a little problematic. So let's dissect it step by step and see how we could build this differently while improving performance and reducing the cost dramatically by using the same principles from the scraping industry.

Discovery on a browser, and what it costs

05:09So the first stage discovery. So my friend uh you know he chose to go with a predefined list of websites major retailers uh and query their search pages in order to find these products. He used the browser automation tool for that. It kind of worked but you know it did have challenges.

05:23So their browser automation tool lacked what we call stealth. So they could so they would get captures and sometimes fail access to access the sites. all together. This would break down the flow. So a retry mechanism would have to be put in place making the whole process very long.

05:39Uh you know costly um and sometimes the size would not be uh accessed at all and also you know as a result also became very difficult to predict the final cost per transaction. The list of websites that my friend was checking was also deterministic.

06:01So selection of items would only be limited to the few choices he put in. Websites themselves were heavy on JavaScript, making the whole process very slow and costly. And finally, even if it worked, items ended up being unavailable at checkout because in the discovery phase, the he was not able to use energy location capabilities and a lot of e-commerce websites are uh you know uh they take your users location into account when displaying stock options sizes and soever.

06:45So now we solve these problems at Oxabs every day. So when scraping you always want the results to appear on the first

A search API instead: 2,000 tokens, 700 milliseconds

06:52try and to not to use browser unless absolutely necessary. However, for this specific discovery phase, you also want to use to allow your agent to search the web. Doing so with a browser is very cumbersome. That is why I chose to use a product that we built especially for agents fast search API.

07:14It returns a compact JSON which is less than 2,000 tokens per response. Has fast response times less than 700 milliseconds on average. And it's uh has a a high success rate at a predictable low price. And most importantly, it gives your agent access to the mo to you know to many popular search engines that all of these websites have been instant indexed already a long time ago.

07:42So in the discovery phase instead of predefined list and the browser we give agent a tool to search the web fast search API agent formulates fan out queries and selects the relevant URLs from search results. Since the responses are quite small and there's no need for complicated models we can have the agent run quite quickly in this stage.

08:05Um, yeah. So, so now the agent has searched the web and selected some relevant URLs. It is time for those for for the agent to visit those pages to see what they're all about in order to confirm price, stock level, description, and product details and so on.

08:25With this, we can go to in the decision phase. This is where agent selects the items we will purchase. For this, my friend also used the browser. He ran many browsers on parallel so it could uh you know so the whole process could happen faster and that is not a bad

The blocked pages you still pay tokens for

08:41thing. He managed to get some results however many of the results would end up like this and the result the agent would be left with very few choices with the majority of popular retailers being left out. It's a good thing he did well with observability.

08:57So he actually noticed when it happened. But what we see when working with these types of customers is that they often fail to detect the failure. They end up checking only the content size and HTTP response code and then feeding this large HTML to an LLM.

09:14Now an a large language model of course can distinguish between valid esop content and a capture. But we need to spend tokens in order to do that. And when we attempt to open 10 websites, but only three return valid content but feed all of the 10 to the to the model, it is a problem.

09:44It means that we waste 70% of the tokens and that is a little crazy in my in my opinion. So I noticed this problem as well. Uh my initial hunch was compression was to compress the output. But then I thought wait the problem is not the compression.

10:04The problem is that the content is not valid. We need to make sure that the content is valid before even attempting any compression. This will lead to more options for the agent to choose from and fewer wasted tokens. And then I remember rule number one of scraping.

10:20Use the browser when you absolutely need it. Otherwise look for other solutions.

Rebuilding the decision stage without a browser

10:29So I I tried to rebuild the stage without a browser and I uh only by using ox web scraper API and this gave me many benefits. Uh but firstly only valid content was returned. In case of captures or other blocks the request would fail with an explicit error message.

10:46So I know not to include it when sending to a large language model. But the success rates are quite high and even for protected websites. So that wasn't that much of you know much of a problem. So no browser was needed and uh everything is a lightweight rest API.

11:00I can run hundreds of requests in parallel and receive content at the same time. Also the API supports markdown. So no need to submit raw HTML uh to LLMs. If a website is dynamic, it runs a full browser under the hood to render the content correctly.

11:25And finally, it supports geoloccation options. So I can localize my results and get relevant content. The best part, customers only pay for successful results. So actually, yeah, that's uh that's what's uh that's what that's what the best thing about it.

11:43No cure or no pay. If if the scraper fails, there's no cost and it fails loudly. So now we have all of the information to make a decision. We present a decision to the user and the user makes the final call. Once it's affirmative, we move to the last stage of the workflow, the purchase.

12:09So I remember what I said a couple of times about browsers. This time, but this time is different. you this time

Checkout is where you actually need a browser

12:16you absolutely need to use a browser. We need to process inputs and the content is highly dynamic. Now this time my implementation, my friend's implementation does not differ much. We both use playright MCP with a browser and a large language model.

12:37The main problem my friend faced however just like in in the previous stages while using browser was access. Just like in the beginning as he was using the browser he was getting captured into oblivion making it impossible to automate the flow.

12:55Well the fix was quite easy. I just connected Oxab's headless browser since it supports playright MCP is just a drop in replacement. With this replacement, I hardened this agent with years of scraping experience and got proper stealth done at the browser source code level, a residential proxy attached to it out of the box, and most importantly in this in this case, a geoloccation capability.

13:20So my results are localized the same way as in the verification stage. So if we run it, we actually have a a a a browser that that access the content and can actually automate the flow by, you know, selecting the right size from the prompt, add it to cart and complete the purchase.

13:49And boom, we have an agent that commands a powerful infrastructure hardened by years of web scraping experience.

Validate before you spend tokens

14:00Not only does it open the up the web, but also saves the time on implementation and token cost. And if I can leave you with a few lessons we learned today was that you know when building agents use the same principles from the scraping industry.

14:20Use the browser when you absolutely need to. You have to validate content before feeding it to the large language models and most importantly fill the missing layer with the proper infrastructure so you can focus on building stuff. But remember cost matters.

14:42Thank you very much.