Context Engineering in 2026 — Louis-François Bouchard, Omar Solano & Samridhi Vaid, Towards AI

summarized

TLDR

Keeping the full conversation history in your AI agent's context is often cheaper and more effective than compacting or summarizing, thanks to aggressive prompt caching from providers like DeepSeek. The Towards AI team ran extensive experiments on their AI tutor and found that compaction techniques like summarization actually hurt recall and increase cost because they break the cache. The real win is using a cheap model with good caching (DeepSeek V4 Flash) and hybrid retrieval (dense + BM25) for knowledge base lookups, not fancy context management.

Key points

  • Full history outperformed all compaction techniques on memory recall (95% vs 32% for summarization) in multi-turn sessions.
  • Prompt caching makes resending the same context extremely cheap — DeepSeek offers up to 50x discount on cached tokens, so sending more tokens can be cheaper than compacting.
  • Compaction techniques like summarization and sliding window actually increased cost and latency because they forced the agent to re-retrieve information it already had.
  • Hybrid search (dense + BM25) achieved 100% recall on local document retrieval, while pure semantic search dropped to 0% on long contexts.
  • Local models (tested on MacBook) hit context window limits quickly and could not match cloud performance for chat memory (33% vs 95% recall).
  • The cheapest per-turn cost came from the setup that sent the most tokens — 97% of tokens were cached, making full history the most economical choice.
  • Graph RAG was tested but found to be costlier and tied in results for their use case, so they stuck with standard hybrid RAG.
  • Logging everything (cache hit rate, user frustration, tool output sizes) is essential for optimizing context engineering decisions.

Tools mentioned

Techniques

  • compaction
  • summarization
  • sliding window
  • selective retention
  • delta summarization
  • hybrid search (dense + BM25)
  • retrieval-augmented generation (RAG)
  • graph RAG
  • prompt caching
  • progressive disclosure
Transcript (captions)

0:13 All right. Good afternoon everyone. Thank you for joining and not watching the game. Uh I hope it will be a bit more interesting or at least you will learn something compared to to uh

0:28 hopefully Germany winning or some uh anyways. Yeah. All right. Is it fine? Okay. All right. So I'm here to talk about we are here to talk about context

0:41 engineering in 2026. And more specifically, we are here because we've all lived that that situation where you try to do things with an agent and ultimately it does just exactly the

0:54 thing that you don't want it to do. And it in my case it usually ends up like this where I'm super mad and I just type back hoping it it learns. And uh usually the problem here is not

1:08 that the the model just got dumber and you need to switch to cloud or to codeex or or whatever the the harness that you're using, but it's more that the the context is filling up and it's getting

1:18 worse and worse. The results are getting worse because of it. In our case, this is important because we build courses and trainings for AI engineers specifically. And one of the features

1:30 that we provide is an AI tutor to help answer questions based on our lessons. And if the interaction is just like the one before and they are super mad at us, they might just ask for refund and it

1:43 could end up like this. So that's not what we want. And so what we did for this workshop and just for the AI tutor in general is to run many different experiments in order

1:55 to figure out how in our case we can fix context rut or at least improve the i tutor as much as possible and reduce the cost as well of running the tutor. Uh the QR code here is a link to a

2:10 hugging face space where you have all these experiments that you can see and also the AI tutor is open source. who will share another code for the repo but it's also linked on the hugging face. So

2:20 everything is open source you can access everything uh and even see the experiments online and use the AI tutorial online as well. In the next 80 minutes, we will I will start talking

2:31 about compaction, memory retrieval and um everything that you can do in 2026 that usually works and then my colleagues will jump in with our the architecture of our AI tutor, our

2:44 decisions, what we built and the evaluations that we built, the how we built them and what we decided to evaluate and then the results and what we took out of this. So of of course

2:56 it's applied to our use case and our AI tutor but hopefully you can get away some interesting insights at least from from this and some best practices that we learned throughout more specifically

3:08 we is towards AI. Um I founded the company with my partners in in a few years ago and we've always been focused around education. Obviously back in the day it was more about computer vision

3:21 and and more basic machine learning. Now it's towards AI engineering and agents, anything that works for the industry. And I'm joined by my colleagues helping me develop this AI tutor and our

3:33 courses, Omar and Samidi that we'll jump in later on. And here more specifically towards AI is quite large. But what one one of the things that we do is our academy. So the towards AI academy where

3:45 we build courses technical courses for AI engineers to upskill towards AI engineering and as I said we provide an AI tutor for the students. So the the AI tutor specifically uh will

4:02 will be like our baseline for all our experiments. We will use that to test all the different features based on real user interactions and to have the best results possible. We had five

4:12 requirements we wanted to ensure that the chatbot follows. The first one obviously we want the answers of the chatbot to be grounded in our content not just its own knowledge.

4:24 We need the the tutor to be based in the current students and current lesson to not be a because we have multiple courses. So we just need to ensure that it answers from this course content.

4:39 Then it needs to hold long help sessions in case the student is debugging or or just iterating a lot with the the tutor and uh obviously handled code because it's for AI engineers. So we just code a

4:52 lot and it needs to have somewhat of a low latency to not be frustrating to use. And all of this is related to context engineering. And here we'll be talking about uh what is context

5:06 engineering in 2026 or at least what we figured out from this from these experiments. And since everything here is in the context in the in the context of models,

5:18 it creates two problems. First, the context window is finite. Uh everything the model will see from instructions to to lessons to code will lie in the same space that is limited. And the more you

5:31 pile things in this space, the worse the results will be and the more expensive it will be because you pay for more tokens. So that's one of the the main problem we're trying to fix. And the

5:41 second problem is that the model is stateless. So when a student reopens the AI tutorially if you don't build anything around it, the model will have no idea what's going on. It's just

5:51 starting from zero. So this creates two things we have to work on. the context management which means within one session and the memory aspect of these models which means across sessions in

6:05 these experiments and in this workshop we focus on the first part the context management because you cannot have multiple sessions is if one session is is shitty. So we try to really optimize

6:17 for this and maybe in a future workshop we will do one about memory hopefully. So for context management what does the the tutor sees in our case? It sees uh many things from the system prompt to

6:30 being for being a tutor and the context of our courses and stuff to tool definitions uh so which tools it can use how to use them when to use them. The chat history if it's an ongoing

6:42 discussion any old tool outputs that was called course chunks that we retrieved to answer the students and finally the user questions. So it's just not the user question that we send obviously and

6:55 typically it's the smallest part but it can also have contain a lot of code to debug and to help or error logs. So it can be large as well and all of this together just ends up costing more and

7:08 more to us. So we really want to optimize this this context management aspect. And what we've seen just quickly is that the the main bottleneck or the main problem scaling the context is the

7:22 old tool outputs which contains like any old chunks retrieved all the tool calls and tool results pairs uh from from all the tools called over the the many sessions that it could have the many

7:33 turns that that one session could have have and any uh file or searches that it did to in its own memory. And the main problem is not is not that it's more costly. It's also that the

7:50 quality degrades as we know with a program called context route because of the way how large language models are trained to handle longer context with we just inject facts into large compass

8:00 which doesn't tell them to manage the whole the whole context together or understand the global context and uh so so one of the reason is to help with quality. We want to reduce the

8:12 context as much as possible. And the others are that if you reququery the model in a in a discussion, you resend every previous tokens. So you pay for them as well again, which is far from

8:26 ideal. And you increase the the latency, so the time to first token or TTFT uh which makes which creates a very bad user experience. So you may want to in our case manage

8:39 our context for speed and for spending not just because the quality drops as we will see in our experiments and and in the results in the near future. So how we do that to manage uh spending

8:53 and and speed? How do we manage our context? We use compaction. And the idea is just very simple. Uh the idea of compaction is very simple. is just to try to have the smallest context

9:04 possible that contains the information to be able to answer the question and you drop or save the rest somewhere. And to do compaction, even a good compaction, you don't necessarily have

9:17 to have large language models. You can start quite cheap with trivial tools like uh if you have if you use tools in your system um like a web search or just executing code you can automatically

9:30 truncate outliers. So if you have like once tool that that produce 300 lines instead of 10 usually you can just truncate almost everything except the the head and tail the the beginning and

9:41 the end and just re write that it's truncated so that the model in the future can recall the tool if it's if it feels it lacks context. You can use the the simplest approach

9:52 that works the best to just use a sliding window or just trim. Basically, use the last n number of of turns that the user sent which uh you need to determine by based on your your own

10:05 system and your users and you can clear uh for for some specific tools depending on those that you implement you can just always clear most of the outputs. So that's for when that's not even using

10:18 language models. And then you can use language models to basically spend tokens to save even more tokens. And in this case, you don't even have to to use large language models. You can even use

10:30 smaller ones or even low super small local ones that that runs in like one MacBook to do a few techniques. There are many techniques that exist for for

10:39 compacting. the those that had the most impact in our experiments where selective retention where the language models will just decide based on where the

10:49 discussion go is going what to keep what to discard. Then the simplest one here summarization. So just summarize continuously summarize the some previous

10:59 terms depending on your on on your own application and in the end you can do here what cloud code does. So when it reaches the limit you just sum produce a summary of everything and reset

11:12 completely with that summary. And there are many more techniques I highlighted here those that work the best. We will discuss them later on in this workshop and the actual results and experiment

11:23 setup but those are the most successful techniques. And I want to highlight also delta summarization that cloud code uses that is very useful when you spawn sub aents when you use sub aents. It just

11:36 means to keep a summary and updating the summary based on the new summary that you produce over time and then the the sub agent will just give that to the main agent. But in our case, we don't

11:47 use sub agents because the tutor works really well with just one main. So we don't need to add complexity for that. And lastly, after spending token to to save more tokens, you can also offload

12:00 things. Right now it's obviously memory and skills are super popular. So you can of course offload to your memory. So just saving text in your documentations and you can use what's been there for

12:14 years now. Uh retrieve augmented generation which is very powerful. And as a side note we also compared with graph rag. So everything even if I not I don't mention them we compared them and

12:24 I highlight just the the best results here. So we we compared graph rag with with rag here and it's in our case it just ended up being way costlier to set up and just tie on the results because

12:38 it basically was 100% based on our real user evaluations. So we don't need to use graph rag but it's it depends on your own case. If you have a very large data set with inter

12:51 with relations and interconnected topics and things, it might be worth implementing. So you definitely want to still test it. And uh speaking of memory and of up

13:04 offloading to files, this is uh as I said, basically just saving them locally or or in a server for for you to use, which means it's fully reversible because you don't lose anything. you

13:17 don't lose any ongoing discussion. You just save them ready to be referred to in the future if the same student comes back and asks related questions. And it's basically the the Tpetes idea of

13:30 the LLM wiki uh which if you link with some sort of uh chunks so a version of rag it's pretty powerful and it makes your system become quite cheap and durable and it's easy to inspect from

13:45 both humans and agents. So it's really interesting. More specifically, it looks like this in our case. So we have just chunks. We save everything into chunks and we cross-link the chunks with

13:57 pointers and then these chunks are linked to raw data files from where they come from. Then we have one index that will just map all these chunks. So just a link to all the chunks and some

14:09 context of what it is about and the agent will just see this index. So it sees it's like I think it was 450 tokens. So it's very small and it just sees that index

14:22 and then uh based on the user question if it seems to be related to some user specific question that it may exists in the memory it will scan the index it will go back to the chunk if it's enough

14:34 it will answer based on the junk the chunk retrieved if it's not enough it can even go back to the raw data to have even more information. So basically it's just the best way to pull context

14:46 accordingly to the task complexity. So if the task is complex you will pull more and if it's simple you'll p pull less. And a parenthesis on this what we've

14:56 seen working with our clients and just building this in general is that right now everyone is is converging towards having more and smaller skills. So you have it's it's way better to build small

15:10 very precise skills that refer to each other's skills to uh to save on context and just load skills one by one and even be able to spawn a sub agent with one dedicated skill context instead of just

15:24 basically to save context. It's a well the idea of progressive disclosure. So you just load what you need right now. Okay, just to go back now on on compaction. This is what the the talk is

15:36 about because memory we have made some experiments but we couldn't really fit here. It was a bit too much. And uh when talking about compaction there's an important problem or solution that uh

15:48 that appeared recently uh well not recently but was way more popularized is the uh the the main problem is that first the main problem is that you when you ask a follow-up question you need to

16:02 recomputee all previous tokens every time. So you just end up paying twice for the same tokens or three times or four times if the conversation is going which is obviously far from ideal. So

16:12 what providers do nowadays is to offer prom caching. So you will it they will save the embedding and and KV cache and I won't enter into the details but they will premputee they will have saved a

16:26 lot of the the compute for some tokens and you can just reload them and what's interesting for us is that these already sent token that you reuse are much much much cheaper uh specifically it can go

16:38 up to 50 times cheaper with some API like deepseek uh which we will discuss in the experiments and what that means is that If you send a very long context,

16:49 you will pay just one 15th of the the price per token and just pay the full price of the qu the new user question or the new interaction. And that's a problem for compaction because when you

17:02 are compacting, summarizing, doing any transformation to this context, the the provider cannot use the cache because it it's a new context. It doesn't the model is not intelligent enough to understand

17:14 it's the same topic change. it it just cannot use the cache. So you will pay full price for these new transform tokens. So here what it means is that you need to to compress to for for

17:25 compaction to be worthwhile. You need to compress by more than 50 times the context. So it can be quite difficult in some cases without losing quality. So caching is truly a gamecher

17:41 especially because nowadays almost all APIs offer it very easy to use and typically they they save cost on like on 90% of the cost when you use caching but in some case as I said it can go up to

17:55 way more than that and not only that it helps with cost but caching cache tokens are also already computed so it's way faster to get the first the answer So ultimately it means that

18:10 summarization is potentially a trap. You may not want to use it at all or you you may want to just use it very specifically which is what the most serious harnesses

18:21 do nowadays. cloud code, C codeex and all of them use context caching but also use a different method of compactions and we know that because obviously of the leak and then because codeex is open

18:34 source and then the APIs also provide ways to manage context directly and caching directly. So it's it becomes when you build yourself a harness like we do with the AI tutor, it becomes

18:48 really interesting to understand when to use which technique and test them obviously. So where is this going? It mean it means that you don't you don't want to just

19:00 compact you don't want to summarize everything any time because it may kill the cache and you won't be able to use it. So some best guidance that we found is that obvious obviously when the user

19:15 seems to talk about a very different topic, you may want to refresh the session to clean it to clear it. Um when you scope or files, use what I described with progressive disclosure to just show

19:30 the smallest amount of context possible. You want to clear every old tool outputs that are not useful anymore. You may want to compact in some case. We will see that in the experiments in a few

19:43 minutes. And you may want to optimize for cache hits. So just having the model use be able to use its cache. And regarding that providers are constantly improving

19:55 their feature set to manage cache. So you just need to uh stay current and follow what what the API allows nowadays. But they all provide different methods and um you will have access to

20:07 the slides but there's I put a link earlier in the in the first few slides on a very interesting article regarding regarding prompt caching that I recommend checking out. It's like on the

20:18 sixth or seventh slide but you will have the link to the slides. And lastly, you may want to use a model router to optimize especially cost on various tasks.

20:31 And most importantly, and what the majority of people don't do, you want to log everything. It's super easy. You just ask cloud to implement opic and track everything. It's you don't have

20:42 anything to do. So it's definitely worthwhile to to implement and you can track cache it rate. You can track user frustration which we've seen that cloud does. So I keep uh telling it when I'm

20:55 not happy. And uh you you may want to log for some um abnormally long outputs or any weird behavior that a small language model could detect. And so all of this together is the is context

21:11 engineering which basically means to decide what the model sees every time you call it. And to us for the AI tutor, it means to decide what to keep in the current context window in order to

21:25 optimize the caching what to drop or compact and when to do that. Uh and those two first things are exactly what what we studied in many experiments that we that my colleague Omar will share

21:40 with you right now. And uh so you can follow along with the experiments on the the QR code link. It's the hugging face that I mentioned earlier and in there there's also a link to the repo and

21:53 everything. All right. So, welcome to this second part of the of the workshop. So now that we have an overall idea of what context engineering is and what are the

22:06 different techniques that we can apply to our agents uh now what we want to do here is see how they actually perform in in our case for our AI tutor. I will first start by

22:20 describing a little bit about how the AI tutor works. So the system design and then I will follow up with the initial experiments that we did. All right. So, the AI tutor is actually

22:37 very simple. It's one agent that it's a React type of agent that just loops over over tool calls and thinking blocks. And here we just create a very simple one using the lang chain library. So we use

22:53 the create agent method with the in-memory saver because we in this case we don't save past conversations we just use the the current history and to customize this agent we use the

23:07 middleware feature of lang chain where you we can add different uh features that can change the behavior of the agent at runtime. So in this case, we want to summarize for example and clear

23:21 the tool outputs or also in our case have the the user be able to choose the the source uh uh the sources the like which lessons which courses to to use to to answer.

23:38 To do that we also add two different tools. So we have the first one the retrieve tutor context which which uses a very classic hybrid search pipeline. So um semantic search along with keyword

23:53 search and we combine both results to get the the best possible list of chunks. And then recently we also added the second one which is letting the agent actually browse the file system

24:06 the knowledge base uh just like we can just like coding agents can in the browsing your codebase for example and we also borrow from the idea of karpathy by creating a wiki and helping the agent

24:21 basically browse uh this knowledge base more easily. I will come back to these tools in a few in a few me moments. We also add a fast API app to wrap the whole system with an

24:34 endpoint and we add a nextgs UI to let students use the DII tutor. So I will talk a little bit about the first tool. So we have a large corpus. So we have all of the lessons from all

24:49 the different courses that we created over the past two years. uh and also documentation from various public open source libraries like lang chain, lama index and even documentation

25:02 from uh openai. So they they make available available all of the markdown files from like how to use the open API, how to use codeex and we also have like cloud code

25:15 documentation. So it's a very big corpus that has over 8 million tokens and of course this cannot fit in a single context window. So we have to store it in a way where we can retrieve the most

25:27 important or most relevant information. So in this case the agent receives a question and the user can then choose well beforehand the user can choose specific source. So we can filter this

25:40 knowledge base. It makes it better for um to improve recall. So precision to get the most relevant information. Then we do hybrid search. So this is very classic um hybrid search. We use

25:56 embedding model. In this case it's a coherent coherent model with BM25 for the keyword index to get the the most relevant top 30 uh chunks. Then we merge the two results from the

26:12 semantic similarity and the keyword search and we then rerank to the top five most relevant chunks and that's that's what return to the agent. We also have a limit of 100,000

26:27 tokens. So we don't want to. So let's say for example we we go over we just remove the last few chunk uh the last chunks that make it so that we don't cross that threshold. So these numbers

26:40 the this configuration actually is not random. We did experiments uh to optimize this pipeline. I'm not going to talk about it but it's in one of the courses that we share. Uh

26:53 basically we just want to try as many configurations as possible and improve recall. So we measure did we retrieve the correct page uh in our knowledge base and we just choose the best uh

27:04 settings. So like I said it uh yeah in this case it's very precise very it's very good but what if the agent needs to browse the whole knowledge base to get the best

27:18 possible answer. So let's say I want to learn about codeex and I want to learn about cloud code how can I best use uh those two tools and also like if we need to have v various documentation pages in

27:32 context is this the best possible uh tool and there's a paper uh I I link it here in the in in the slides but it's a yeah it's a paper that shows that basically

27:45 letting the agent browse the the knowledge base can be very bene beneicial uh so you can look at it if you want afterwards. Very very slow to load.

27:57 Uh so that's why we ended up creating this second tool the run keep run knowledgebased command where the agent can browse u the knowledge base the file system using bash commands. So

28:13 first of all what we did first is create these uh three different u folders. So we have the raw folder with all the different markdown files. So all the lessons from the different courses the

28:26 documentation from the different open open source libraries. We we also have this generated uh folder with this is the generated automatically with basically just the the the titles of

28:41 each of the markdown files so it's easier for the agent to to find um relevant information. And then we also have the wiki where uh in this case it was cl code that created this. It

28:54 basically reads all of the raw files in the in the folder in the raw folder and it creates a very uh concise uh set of files. So topics, frameworks uh from the different source uh sources. So for

29:10 example, I can have a topic related to finetuning. So in this case, the agent will be able to find all of the different raw files related to finetuning. For example,

29:20 here we let the agent only read. So this is when we actually deploy it. So this is the one you can try on the on the space here. The agent can only read the knowledge base. It cannot modify it. Uh

29:32 so we only allow these bash commands that basically cannot uh modify the the file system. We also put some limits around this. So for example, if a command lasts over 8 seconds, we can

29:45 just return an error or let the agent execute something else because it's taking too much time. And we also cap the tool outputs to 40,000 uh characters. So in this case, for

29:57 example, if a lesson is over this amount, what the agent can do is then okay, so I just got the first 40,000. Let me let me do a follow-up command to get the last uh piece of the of the

30:09 lesson. For example, uh we also limit the number of the of commands. We actually never see the agent go over this limit of 20 commands per turn, but this is just a a fallback

30:23 uh in case it takes too too much time to to answer. And we also sandbox of course the agent to only browse the knowledge base this specific folder. Like I said, we create this offline. So

30:36 the the three different file folders we create this once or every time we want to add a new uh a new course for example we we we tell cloud code can you add a new uh can you add this to the raw raw

30:49 folder and also create new topics around this new new content. So we do this once and then we deploy it so that the agent u can can browse it with our current system prompt. We can see that it's uh

31:04 used almost every time. So for almost 90% of the terms we can tweak this to make it use it less uh or more. We didn't optimize for for this specifically.

31:15 And I guess the most interesting aspect of doing this is that we measured the precision the recall of using this tool uh actually turning turning it off and we actually got the same amount of

31:30 recall. So just using the first tool was enough to get all the relevant information and just having this second tool was just 50% slower. Basically, it's faster

31:44 without this tool because it does less tool calls. Um, and yeah, we we basically didn't see any improvement on uh on re on answering with the correct uh documentation.

31:58 It it was fun to add but we yeah we didn't see any any benefit and one reason for that is that we tested using real world well basically the questions we get from students and basically those

32:11 questions were complex enough we guess to actually benefit from using this new new setup. Um so this is what this is how initially uh our AI tutor managed its context. Uh we

32:27 we started with this because uh it looked fast, it looked good. Uh we didn't actually measure anything. It was just like oh it looks good. Okay, we will

32:38 just set it set it like this. And so basically we have these three different um context engineering techniques where we clear the outputs uh after 5,000 tokens

32:51 uh but we at least keep the last five ones. So this was basically a way to keep a very small context uh during a conversation. We also added the the capacity to summarize. So after 30,000

33:06 tokens uh the two well the system summarizes the uh the history but we at least keep the last 20 messages to make sure that uh those are very accurate those messages. And we also have the

33:20 source preference. So that that just allows people to choose what uh sources to use uh when the thetutor answers. But like I said, these are unproven unproven defaults and we actually want

33:37 to know what actually works best. Um so I guess you you can Lou showed this at the beginning, but you can access the tutor live. I'm just going to show this very quickly. This is the huging face.

33:51 So this is a separate UI just to show you. We also have the the chat bubble one on the lessons on the course themselves itself. Uh and here on the on the left you can choose the different uh

34:05 sources to use, enable them or disable them and then you can uh yeah send your your query. So as you can see here I can just uh send a new request and we see Gemini in this case Gemini 3.5 flash use

34:20 its reasoning and use its uh capacity to to do tool calling and to answer and I guess uh here there's a I think it's just the internet bugging

34:41 But we should have a response and yeah the code is open source so you can use your favorite coding agent to explore the codebase and uh and learn about how we implemented this

35:01 specifically. So we have the different activity u the the activity that the the the model did. So for tool calls it thought four times and it use 10 sources and we have

35:13 the the final answer. So everything that uh so every time the student uses this chatbot we actually log everything. So we for every single turn we have uh the input tokens, the

35:30 the output tokens, how many of them were cached, uh what was the cost, what time it took to to get the first token, how many tool calls it did and if we actually if the system actually did

35:42 something around summarization. So this is very useful and that's uh what we are going to use when uh measuring the uh the different techniques. So why do we need to measure? Well, because

35:55 the the techniques that Lou showed all sound very smart. So you you might think that they are very uh useful, but sometimes they're not. And uh as we as we discovered with our experiments,

36:08 actually it might be detrimental. So because of the the way APIs cache the tokens when they are um when they are sent and it's also difficult to to know in advance what what is best to use.

36:23 So before I go into the experiments, I just want to define a few words because we're I'm going to use these words throughout the uh the the presentation. So a preset is

36:35 basically uh the way the AI tutor was set up in the in the experiment. So for example, it can be in this preset we did summarization at this amount of tokens or in this preset we we used sliding

36:48 window for example. So that's what a preset is. we have the different tasks. So at task type uh for these initial experiments we only did two tasks single turn and multiple turns also sessions uh

37:04 called sessions and one run is basically just running one preset on a task and then you get the run. Um the bundle is just the the result. So it's just a JSON file with all the different uh metrics

37:20 that we save to the disk. So first task single turn. Uh so these are question and answers and we didn't generate this. It's not synthetic. Uh we actually I I had codeex

37:37 scrape all of the uh questions and responses from our website where students can ask questions and get answers from uh members of the staff. Uh and that's how I got this initial we got

37:51 this initial um data set. uh we cleaned the data set and only used 60 60 pairs uh because we saw that some of the questions weren't good for the type of task for example uh there were old

38:06 questions about previous versions of some libraries and we we might not I mean the right now if the tutor answers it's not going to be using this old version of the library so we just uh

38:19 remove some of the questions some duplicate ones and and and we got this first uh data set and what we measure is the retrieval. So did we retrieve the correct is did the total retrieve the

38:34 correct lesson for example this is done automatically we can see uh just by looking at the code did we did we use the correct uh lesson or not and we also look at did do we have the correct facts

38:48 in the answer or the right kind of response in the answer. These two uh are actually graded using using an LLM. Uh you can use APIs to do it but uh right now I think the best way to do it is to

39:02 just use use your uh code code subscription or your codec subscription because it's cheaper than using the APIs. We also have the second task the

39:15 session. So multi-turn um conversations back and forth. uh here what we want to know is is the AI tutor able to recall facts after multiple terms. So this is a bit

39:30 uh in this case we do use some generated uh content. So we do in generate facts that we put at the beginning. So we have a student like a fake student state uh fact. So for example, I want to learn

39:45 about rag and then we stuff the conversation with just filler messages because we just want yeah we just want to have a lot of messages and then we have um

39:59 a probe which is just the student asking a question again. So for example it can be uh what should I learn today? And since the uh I'm going to go through it in the next slide, but uh yeah, let's

40:15 let's let's the example. So for example, here at turn one, we we uh we have the student the fake student implement a state of fact. So it the student wants to learn about

40:27 rag evaluation. Um and that that's basically the fact. Then we just add a lot of messages uh filler filler messages and then at at some point we have the student say for example what

40:42 topic should I learn about today and then what we expect the AI tutor to to to say is that uh the student should learn about rag evaluation. So more specifically heat rate and MR for

40:55 example. We also have a gate part in the evaluation where let's say we are testing the summarization technique. Uh we actually just want to know did

41:07 summarization actually happen or not. Um so this is this is this is like one example of one task in the sessions uh data set in the sessions task. Now we have the evaluation hardness. Um

41:21 so the main uh harness I guess the the main function is the run the run task the run battery function that just uh runs this uh this task. Um we have the grading like I said we it can either be

41:38 a code check so did we retrieve the correct lesson or not and we can also have the LM as a judge and in this case we use the subscription of code. We also have the check triggers aspect. So this

41:52 is just a check to to see that if the evaluation went uh good or not. Did we actually compact or not? This is this is just to make sure that the the run is actually good and we can save it. And

42:05 then we have a generated report uh to see like what was the latency, what was the time to first token and every metric that we can uh measure. So yeah, basically we can evaluate

42:19 everything and then grade it afterwards. Uh we we can run it once and grade it afterwards. So what what we run so we run 11 presets uh and we change them uh for for each

42:34 experiment. So we have the the full history. So these are the the main ones the full history. So this is the case where we don't don't touch the context. We we leave everything as is in the

42:46 history. And then we also have the production that I showed at the beginning the defaults that we have. Uh so these are the reference points and then we have these six techniques that I

42:57 want to compare. So sliding window prompt compression uh selective retention and the other ones and I what I want to see is just what uh memory recall recall do I get if I keep

43:11 everything else fixed. So I use the same model the same prompt the same tools the same data set what's the difference? Uh now ju now just doing this was a bit expensive. I I didn't expect this to to

43:24 get over $500, but it did. And that's one of the reason we did afterwards follow-up experiments using cheaper models. But my colleague Sani will talk about this. Uh so what ARM so what

43:40 basically what preset actually won. Uh, and so these are our um our results. And as you can see, h we weren't expecting this, but basically not touching um the context was actually the best the best

43:57 strategy for recovering this fact over time over multiple uh messages. Um you can see that the production so the the defaults that we thought were good enough were actually not the best. Uh

44:13 not doing anything is actually better. H we did two uh two different experiments where one was just one trial and the second was um two trials. So we have like a more statist I I guess it's it's

44:28 better but the uh the numbers are not like can might not be accurate because it's just one trial and two trials but I guess the most interesting thing is just

44:38 the order in which the techniques ended up being in the table. So in this case keeping everything wins on the memory side but what about the cost?

44:49 Uh this is what the production cost uh was for the single turn and the session. So almost 50 cents uh for a single turn and 24 cents uh for the multi-turn or each turn. Uh we actually had

45:05 very good memory uh recall for pretty much all the techniques in the single turn because in single turn you don't have enough tokens to actually fire up the different strategies. Uh so for one

45:16 response you don't need to do summarization compaction or anything like that. Uh so that's why you you see um high numbers. Uh but as you can see after in the multi-turn uh task you can

45:31 see that the quality degraded to 38%. uh and we if we compare this to the full history. So here we don't touch the context uh the history of the model we can see that not touching uh is actually

45:47 cheaper, it's faster and we have better recall overall. So keeping everything wins on on all of these three fronts. Uh so why does it so why is it actually uh

46:05 like why is it uh why do we have less latency like what's we want to we wanted to understand that and it's basically because if you remove the tool outputs consistently then the agent needs to

46:20 rerieve uh afterwards for information it already had. So you're just making the agent uh do more tool calls and that's why it ended up costing more uh and yeah using more tokens and having less uh

46:38 uh less memory recall. So these are the results we initially got using uh Gemini 3.5 with the uh this this data set of 11 to 13 turns is not huge. Uh there's not many messages. That's why we wanted we

46:55 now want uh in the follow-up part do more different experiments that my colleagues already will will show you. So yeah, let me in let me introduce you to something. Yeah.

47:10 Um, so this is going to be my part and um, as we ended on the note where Omar just said that it costed it c um, it costed us almost $600 to um, run the evals that we ran. One question we were

47:25 trying to um, answer with this extended evaluation was um, so when do you uh, when does compaction actually matter or should you actually compact or not? because we clearly saw that when we have

47:38 um you know the full answers in the window it works really well but it costs a lot of money. So um I tried to you know do this evaluation in like three sorts of context. Uh first one was cash

47:51 chats. So you know like when you're chatting with Gemini you'd be able to see that is the cash chat option. The second version is going to be document plus tool. So if you're pasting like a

48:01 long document in the AI tutor or if there's just tool output what happens then and finally you know if you go local or if you scale this evaluation how well is it going to work out

48:13 so um should you ever compact so before my part Omar just showed that on Gemini 3.5 flash um keeping everything one um but uh you know the why did we come up with that question was because um you

48:28 know full history on a frontier model like Gemini would be very very expensive. Um so um you know with all this extended experiment we are trying to figure out

48:38 was it actually worth it or not. But uh before we start that I wanted to just talk about the different context we see in our AI tutor application. Um so first one is going to be like a long

48:49 chat history uh where you know we have um a long chat but all of the details what the the students are asking or they're chatting about they can get buried in. Um the second is going to be

49:00 a pasted document. So you know we do have a lot of students who are going to just like copy paste a lot of documents there. Um so you know um and also because we have like limited uh context

49:09 window. How does that fit? And then it's going to be you know different tools that we use internally. Um but this is just going to be like bunch of logs that the tools have and since you know these

49:22 are like different context each of them need some sort of different fix. So you know we had to evaluate it for all different um contexts that we had. So um you know the first obvious thing

49:34 uh looking at the cost uh we were like okay let's try out a cheaper model and see you know um does it do better you know what sort of techniques work on that does compaction work on it or not.

49:45 So um deepseek v4 flash was an obvious option and we were like we will uh try this out on this and see um how well it works out and you know you can see there is um you know a drastic cost difference

49:58 between Gemini and Deepseek here. So here we can see um you know there's a drastic difference between cost when we checked the performance on deepseek v4 and the main reason was that that we

50:10 were getting a cash discount. So the cash discount on GE um deepseek was um you know 50x as compared to Gemini and even in this um you know setting we saw that keeping all um you know all of the

50:23 context still one. So you know we were just getting the best performance um in that case for deepseek as well. So, but you know the the plus thing from this experiment was that we figured out a

50:34 cheaper model but um you know uh now we wanted to see that even though we have everything uh you know keeping everything uh makes it cheaper but does it remember better you know does uh

50:46 keeping all of the context remember all of the details the student might be asking us. So um you know this is how I tested out the memory of the model. Um so we have conversation within our

50:57 system where you know students are asking questions like you know about their setup about the errors that they're seeing what whatever they've already tried. So I just took these

51:06 questions um so I just took these chats and you know asked questions about specific details just to see if the model is able to like figure that out if it is able to give me an output for that

51:17 or not. And you know the results I saw is that 95% of the time if the model was able to uh you know give us the right exact details that I was trying to look for and even when it is keeping all of

51:30 the details whereas if I summarize first or if I compact um the context I had it only gave me the answer back 32% of the time. And um if you think about it um the reason for that is that when you

51:43 summarize you you know you uh remove all of the necessary details. So you're not able to uh you know keep all of those details and the model keeps on missing those out. So uh you know we are able to

51:54 see that keeping everything wins in terms of cost. If you have like a you know model like deepseeek um then it also is remembering things. So you know it's not that if you have a long

52:04 conversation it is not able to remember things. So you know it is correct 95% of the time. So the next thing we wanted to see is the cost part of it. Uh you know how does it actually um does it cost

52:16 most? Does it cost the lease? What happens in terms of tokens? So, um you know on Deep Seek we saw um the setup that was sending the most tokens is actually the cheapest to run. So the

52:28 full history u you know setup that we had was sending the most tokens but uh we were still getting the best results out of it because 97% of the tokens that we had were cached and uh you know as

52:41 you as I as we just saw in the previous slide cash tokens are really cheap. they are uh you know they are charged separately. So um summarizing uh works the other way uh and every turn it makes

52:53 the model reads and writes uh new tokens and you know this is something that I ran on like 36 turn conversation and it was about 1.78 million tokens and keeping everything still came out ahead

53:07 and um so you know this answers the question that it wasn't just u you know Gemini it it works same on deepseek as well So um the cheaper model is u what brought the cost down but the results

53:23 are the same and um you know in in respect of this I wanted the next thing I wanted to ask is what happens when the conversations really grow because all of these were tested out on like short

53:33 conversation if I really really uh you know increase the length of the conversation how does that work out so um you know when I tried to you know run this entire experiment on a longer

53:45 context I saw saw that um you know if even if I'm pulling like one specific detail out of it um the model performed really well. So on the top part the green line those are all of the

53:56 distinctive distinctive facts that the model is able to find out. So we can see that up until 800k tokens as well the model was not missing out on those facts. It was giving me like good and

54:07 consistent results for uh you know some ambiguous facts. um the performance dropped um you know to half of what I observed on the distinct distinctive facts but for overall our for our AI

54:20 tutor this uh you know result um was really good. So you know we saw that um the model even when you're not compacting anything holds really well even if you have a really long

54:31 conversation so uh but so far everything that I've talked about is only per turn. So you know every cost has been per turn but does it help when you know we scale it

54:43 because um a chatbot is not something um that you know it's not like one turn uh situation for a chatbot. Um the tutor is a long-term service where you know students are asking um you know

54:57 questions on on a massive scale. So let's say we have uh you know if I I calculated this using this like if we have 100,000 to a million turns of questions every day what would you know

55:09 be the cost on deepseek or so you know for deepseek the cost was uh approximately somewhere from 18,000 to like 180,000 a month and uh you know even though we don't see that sort of

55:22 volume as of now but paying per token starts to add up and so the the alternative for that was going over to a local model just to see if we are getting the same sort of performance on

55:33 local model or not. And um so one way um you know we were thinking that because local models cache as well can you know we use the same sort of setup on a local model and will we get the same result.

55:49 So uh you know because uh we had like hardware limitations we just tested it out on a MacBook. the maximum context window that we could go up to was 32K and uh so we thought that can we uh you

56:03 know can we do that locally now uh but we can't because uh you know the the sort of uh lessons that we had are had are bigger than like 32k context window on their own and once the conversation

56:16 doesn't fit in the window um caching was no longer helpful for us and we uh you know we have to make um the context smaller either by compressing it or by retrieving only the parts that we need.

56:31 So uh you know the next question we were trying to answer is can we uh you know once you have to compact locally what actually works? So uh you know for um the chat memory going local uh and

56:44 trying to keep everything stops winning because you can't keep everything and you know a simple uh question here would be that why can't you just keep increasing the length of the model you

56:54 know why can't you use a bigger model because of course we have hardware limitations for us it was uh you know a MacBook but you know GPUs also have like hardware limitations but you know we

57:03 went from like a 7B model 8B model to a 32-B model uh but here we landed Ed on the uh you know conclusion that even though you keep increasing the length of the model uh it is not going to increase

57:15 your context window you know you cannot repair that part you have to you know make a choice there uh but um you know this is only for the chat history and what happens when you

57:27 are trying to deal with like documents locally so um this was a little surprising because if you are retrieving results with like local documents um you know it was really good we got like 100%

57:39 in accuracy in that case. So if uh you know when students are pasting something which is too big uh you know rag is a good option there you can use that and it can help you retrieve the exact uh

57:50 data that you're looking for. Also the processing time in this case was anywhere from 25 to 65 seconds. So you know which is uh pretty good in terms of the you know the output that we're

58:00 getting. Uh but you know if you are trying to like stuff the window with like more context than you have. We saw that you know it took us like approximately 340 seconds um to get the

58:12 output when you know our um conversations were really long and the output that we got was a single token. So you know you are um not getting anything but you're also wasting a lot

58:23 of time when you are trying to do it. So um you know you have to be careful about what option you choose in this case. So um so you know you also have like different type of retrieval strategies

58:37 that you could use. The default retrieval is of course semantic search where you're just trying to match uh you know the meaning of the text and that is the dense rag uh heading that you can

58:47 see on the chart. Um it mostly works but uh you know we saw we tried to make it work from like uh 50k token to 200k and we saw that you know dense um rag worked really well. you know it was like 80%.

59:00 But when we increased it to like 400k tokens it was not able to facts that were buried in the middle and it started giving us like 0% recall whereas uh you know something like BM25 it still got

59:12 100% every time. So semantic search uh on its own is not enough and that's why you know when Omar talked about our setup in the AI tutor we're actually using a hybrid search we're using a mix

59:24 of both u you know dense and um you know BM25 we're using a combination of both those um so you know after all of this we came up we had like one other question which was like uh how does all

59:39 of this um local setup compare to cloud because that's the uh real way we'll see the result. So we wanted to put them side by side just to see uh what is the output and for chat uh you know the

59:53 local setup was not up to the par of um the cloud you know the cloud setup on cloud keeping everything scores you know somewhere from from 92 to 95%. But locally it was stuck at like 33% and the

1:00:06 context window was a limitation here. Also you can see that um you know local um local models actually work because um there is no cost like you cannot see because you already own the hardware

1:00:21 though um you know there's a throughput limitation there. Uh but if you use a technique like retrieval uh you know you get like good accuracy even on a local setup.

1:00:33 So um in our case what we found is that on memory uh you know keeping the whole chat recalled about like 95% of the details that we were providing it it was able to you know give us correct answer

1:00:46 95% of the time versus it was uh like just 32% if you summarize it um on long context uh you know finding a single fact uh is easy for the model. we went up to 800k tokens and you know we did

1:01:01 not um see any sort of context rot in that case. Um on cost per turn we saw that the cheapest run is actually the one which is sending the most tokens because caching makes um resending the

1:01:14 same context uh you know very cheap and on no cost at scale um um you know it scales up for like let's say if we have like thousand students uh you know Gemini costs us about like $40,000

1:01:28 40,000 a month whereas Deep Seek Deep Seek was around 1,900 a month um so um going local saves us on a cost a bit more. So the main thing to take away is that um do not compact by default. You

1:01:43 have to name the constraint that you have and then you know look for a better alternative. So what did we finally decide after all of these different experiments that we

1:01:53 ran? Um so we decided on deep uh V4 flash because uh we had hardware limitations. So for us um the cloud structure worked out really well. It is also the cheapest considering the

1:02:04 current um intake of students we have. So you know it works out well for us. Um and we're using on top of that model we are using a mix of u you know using hybrid retrieval to uh you know get good

1:02:16 results. For memory uh you know we have chosen to keep everything. uh we have got um you know a default limit that after 30k tokens we are going to you know have compaction but up until that

1:02:28 we're planning to like keep everything and uh you know that is the tutor setup that we have so you know because we had like time limitations so these are all the

1:02:39 evaluations and experiments that I could pack into this time but if you would like to you know learn more about these evaluations or you would want to build a tutor yourself um this is the fullstack

1:02:50 AI engineering course uh on academy.towardsai.net. Um so you can go to this link and uh you know go through the course. Uh but thank you so much everyone. Uh and now we can

1:03:02 take any questions. [applause] >> [music]

Frontier News · by Hyperjump Technology