AI Engineer World's Fair 2025
How Intuit uses LLMs to explain taxes to millions of taxpayers
Read the talk
How TurboTax builds explanations around tax data
TurboTax combines prepared prompts, retrieval, tax experts and layered evaluations to explain personal tax outcomes while keeping calculations in its tax engine.
From a talk by Jaspreet Singh
Explain the tax outcome
How do you help someone understand their taxes well enough to trust the outcome? For Jaspreet Singh, a senior staff engineer working on generative AI for TurboTax, that question comes with substantial scale. Intuit reports that TurboTax processed 44 million tax returns for tax year 2023. That is filing volume, not a count of users receiving LLM explanations.
The experience begins with information the taxpayer enters into TurboTax. As users review which credits they qualify for, explanations expand on the tax breaks they are receiving. A second experience explains the overall refund. The product goal is to make those results understandable and give taxpayers confidence that they are receiving the deductions available to them.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Shared infrastructure for a regulated product
Intuit builds these experiences on GenOS, its internal generative AI platform. Off-the-shelf tooling did not cover all of its use cases, particularly the safety and security requirements of tax software. The platform also had to support teams across a company operating at Intuit’s scale.
GenUX supplies UI capabilities. The Orchestrator connects solutions built by different teams so the system can find an appropriate way to answer a question. Intuit Assist is the customer-facing experience powered by these capabilities; the TurboTax explanations are one application of that shared infrastructure.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Prepared explanations and open-ended questions
The first implementation used prompt tooling. A refund explanation has to account for several constituents: deductions, credits, the standard deduction and W-2 withholding. The team built a prompt-based solution to explain that information and selected Claude for the production use case. Singh reports a multimillion-dollar Claude contract for that year, underscoring the commercial scale behind the model choice.
Two kinds of request call for different approaches:
| Request | What is known in advance | What arrives from the user |
|---|---|---|
| Static explanation | The task, such as explaining a refund summary | Personal tax information |
| Dynamic question | The broad question-answering capability | The question and its relevant context |
A static prompt resembles a prepared statement: the application already knows what explanation it needs, but fills in the taxpayer’s information when they arrive. Dynamic questions are less predictable. Singh’s dog-deduction example illustrates that range of input rather than establishing a general tax-law rule. GPT-4o mini had been the choice for dynamic question answering until a few months before the talk; the team was already evaluating newer versions.
Retrieval-augmented generation, including GraphRAG, brings in tax information that cannot be treated as fixed model knowledge. IRS forms change annually, and Intuit has proprietary tax information and tax engines to incorporate into answers.
The team also piloted fine-tuning Claude for static queries. Singh describes good response quality, but the work required effort and produced a model that seemed too specialized for the particular use case. Whether changing prompts or adapting a model, the team evaluates both development results and behavior in production.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Tax experts write prompts and establish the baseline
Tax analysts form the foundation of the development process. They interpret annual IRS changes, supply domain knowledge and perform the initial manual evaluations. Intuit also uses these analysts as prompt engineers, putting the people who understand the tax rules directly in charge of expressing the explanation requirements.
That division of work lets data science and ML teams concentrate on quality metrics and reusable test datasets. Those datasets support iteration as both models and tax rules change—for example, when moving from tax year 2023 to 2024. Expert-written prompts and initial human judgments then become the basis for automated evaluation with an LLM judge.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Fine-tuning to reduce the instruction burden
As GenOS added fine-tuning tooling, the TurboTax experiment used Claude 3 Haiku through Amazon Bedrock. The intended benefit was fewer instructions at inference time: a model adapted to the task might need a smaller prompt while preserving response quality. Latency motivated that reduction, although Singh does not give a measured latency improvement from the pilot.
Platform teams provided separate test AWS accounts and environments. For the data used in this work, Singh says the team used only consented user data, citing Section 7216. Consent was therefore a constraint on the experiment’s inputs, alongside the technical work of preparing and evaluating the model.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Evaluate the answer and the evaluator
The evaluation pillars are accuracy, relevancy and coherence. Manual and automated evaluations cover development, while automated production monitoring samples responses given to real users. This makes evaluation an ongoing check on the deployed experience, not just a test before launch.
The automated judge itself runs on a prompt. Intuit’s in-house automated prompt-engineering tools help update that judge prompt using manually evaluated samples—the golden dataset. Singh identifies AWS Ground Truth as the tool used for those human labels.
Clear evaluations supported the move from Claude Instant to Claude Haiku for tax year 2024. Even an upgrade within the same vendor required substantial testing; a new model was not a transparent replacement. Across those checks, tax accuracy remained the central target.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Contracts and latency shape the product
Large model contracts are expensive, and longer commitments can lower costs while increasing dependence on the vendor. Strong vendor partnerships help the team iterate, but the contract is only one switching cost. Prompts also create lock-in: instructions developed for one model may need significant work even when upgrading to another model from the same provider.
Latency creates a separate product constraint. Singh contrasts illustrative LLM waits of 3, 5 or 10 seconds with backend expectations of 100–200 milliseconds. These are examples of the responsiveness gap, not benchmark percentiles or service guarantees. A taxpayer with a home, stock holdings and jobs for both spouses brings a larger tax context, which can make the explanation prompt balloon. Filing-day demand around April 15 compounds the problem.
The product has to accommodate that behavior through fallback mechanisms and interaction design, although Singh does not specify the fallback implementations. The goal is an experience that remains useful while delivering helpful explanations. Clear evaluation guidelines and a golden dataset are launch requirements, rather than work to defer until after the feature ships.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
How much evaluation does a prompt change need?
The first audience question turns the requirement to evaluate everything into an operational problem: if small prompt changes trigger expensive reviews, how can development keep moving? Singh describes a phased approach rather than sending every iteration through the same process.
- Establish a baseline manually. During initial development, tax experts evaluate responses and define what acceptable behavior looks like.
- Use expert judgments to refine the judge prompt. Minor prompt iterations can then use automated evaluation. This is refinement of the evaluator’s instructions, not necessarily training its model weights. The judge had used GPT-4-series models until recently and remained a meaningful cost.
- Return to manual evaluation for major changes. Product and engineering align on quality expectations; tax-year transitions and substantial prompt revisions warrant renewed expert review.
This changes the evaluation method as the work changes. It does not establish a numerical release threshold or an exemption from evaluation for small edits.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Route questions by what the user needs
The next question asks where these interactions fit into the product. Question answering spans both help using TurboTax and questions about a personal tax situation. A user might need instructions for completing an action in the software, or ask whether tuition paid for a grandchild can be claimed on their taxes. The latter is an example of the question category; Singh does not answer that tax question here.
Different teams build solutions for those different needs. The Planner interprets what an incoming question is asking and selects a suitable solution. That routing role connects the broad ambition to answer user questions with the specialized components available inside the platform.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Keep calculated numbers separate from generated language
An audience member raises a more concrete failure case: an authoritative amount of $11,235 could appear in an answer as $11,100. The difference may be easy to overlook in otherwise plausible prose. Singh first identifies the source of the numbers: TurboTax’s proprietary Tax Knowledge Engine, maintained and developed in-house.
The LLM does not perform the tax calculations in this workflow. It receives numbers and tax-profile information already established in Intuit’s systems. Safety guardrails then inspect the raw generated response before it reaches the user, looking for hallucinated numbers.
The follow-up distinguishes having correct inputs from preserving them in the final explanation. Singh says ML models within the security controls check for numerical hallucinations in that output. He does not describe the comparison algorithm or provide a detection rate, so this is a description of an additional checking layer, not a guarantee that every numerical error is caught.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Personalization matters beyond retrieval choice
Asked how traditional RAG and GraphRAG work together, and whether Claude 4 might change the need for fine-tuning, Singh starts with answer quality. In the team’s experience, he reports better response quality with GraphRAG than with regular RAG, while emphasizing personalization as an even greater contributor to user helpfulness. The comparison is qualitative: he supplies neither a hybrid retrieval architecture nor comparative measurements and evaluation conditions.
The next model choice remained open. With the April filing season behind them, the team was evaluating newer models as well as models trained and developed internally at Intuit. Singh did not announce a choice for the following tax year or conclude that the newer Claude release would make fine-tuning easier.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Assurance depends on the scope of the explanation
The final question asks how the system handles a complicated situation: does the answer come from the LLM or the tax engine, how can its derivation be explained, and what happens when a wrong answer creates legal risk? Singh emphasizes Intuit’s legal and privacy controls, then narrows his response to the static explanation solution presented in the talk.
For that solution, the Tax Knowledge Engine supplies the underlying numbers, tax experts craft the prompts, and evaluations test the specific explanation components. The assurance rests on that bounded workflow and its tests. It does not extend into a universal correctness or legal-liability guarantee for every open-ended tax question.
Suggest correction
This note stays in this page until you copy or download it. Nothing is submitted; reloading clears the draft.
Resources
From the talk
AWS's historical walkthrough of dataset preparation, training configuration, evaluation and inference for customized Claude 3 Haiku models.
IRS background on Section 7216, permitted disclosures and uses, and taxpayer consent requirements.
Further reading
Intuit's overview of shared AI runtime, security controls, UX components and agent-development tools.
Updates since the talk
Human-labeling workflows and a current notice that the service is closed to new customers while remaining available to existing customers.
Read the complete timestamped transcript
- 0:00
[on-hold music] Hi, I'm Jaspreet.
- 0:16
I'm a senior staff engineer at Intuit. I work on GenAI for TurboTax, and today we'll be talking about how we use LLMs at Intuit to, well, help you understand your taxes better.
- 0:28
So I think, uh, to... just to understand the scale, right? Uh, Intuit TurboTax successfully processed forty-four million tax returns for tax year '23,
- 0:40
and that's really the scale we are going for. We want everybody to be-- have high confidence in how their taxes are filed and understand them, that they're getting the best deductions, uh, that they can.
- 0:52
So, so this is the experience that we work on. So, uh, you go into TurboTax, you, uh, enter your information, then you go through what credits you are eligible for and so on.
- 1:10
And we basically help you expa- uh, expand onto how you are getting the tax breaks that you are, help you understand them better, uh, and so on. And,
- 1:25
and this is another example. This is basically the overall tax outcome, like what is your overall refund for this year?
- 1:37
Now, Intuit's GenAI experiences are built on top of our proprietary GenOS. That's the generative OS that we have built, uh, as a platform capability, and it has a lot of different pieces, uh, that you see over here.
- 1:51
Uh, the key goal is that we found that a lot of the GenOS tooling that comes out of the box is not supporting all our use cases. We want to-- Most prominently working in tax, we are in the regulatory business, uh, safety, security, uh, is very, very important, so we wanna focus on that.
- 2:10
At the same time, we wanna build a piece that a company at the scale of Intuit can use end-to-end at a really large scale. So that's where GenOS comes in.
- 2:19
We have different pieces. There's on the UI side, which is the GenUX, and then there's Orchestrator. That's basically the piece where different teams are working on different components, different pieces, different LLM solutions.
- 2:30
How do you find the right solution to answer the right question? And, uh, Intuit calls, uh, the entire experience that we power through this Intuit Assist. So I'm gonna deep dive into specific pieces that our team used to build out, uh, the experience for TurboTax.
- 2:50
So as I said earlier, right, we have millions and millions of customers who are coming in, so we're trying to build a scalable solution that can work end-to-end. So on the slide here, I'm basically going to talk about different pieces that are powering the experience.
- 3:03
Uh, of course, to begin with, the first iteration was the prompt tooling. Uh, basically a prompt-based solution to try and go through, uh, what's your tax situation going on.
- 3:12
Let's take an example of what I was showing earlier, which was your tax refund. So your tax refund has many constituents. These are your deductions, these are your credits, standard deduction, W-2 withholding, and so on.
- 3:24
So we wanna make sure that you understand all of that. So we built a prompt-based solution around it and worked from there. The production model that we went with is Claude, uh, for this use case.
- 3:37
Uh, Intuit is one of the, uh, biggest users of Claude. Uh, we had a multi-million dollar contract for this year as well. And, uh, you'll also see OpenAI over there.
- 3:46
So OpenAI is where we used for other question and answering. So you'll see on the slide we're talking about static and dynamic type of queries. So, uh, static queries would be, you know, what I was showing earlier that we know you are looking at your summary, you want to see what happened, uh, overall, so that would be
- 4:04
a static prompt. Think of it like a prepared statement. Uh, however, the additional information that we're gathering is the tax info when the user comes in. Now, uh, dynamic query would be users have questions about their tax situation.
- 4:18
You know, "Can I deduct my dog?" Well, you can't, but, uh, you can try. So things like that, that's what we are trying to, uh, answer more dynamically. Um, OpenAI's GPT-4 Mini had been the model of choice for until a few months ago.
- 4:31
We are now iterating on the newer versions. Of course, models change every year, uh, every month, I should say. Uh, so we're trying to focus on that. Um, same for the dynamic piece again.
- 4:43
Another important, uh, aspect is, you know, tax information. IRS changes forms every year. Uh, Intuit has proprietary tax, uh, information, tax engines that we wanna use. So we have, uh, RAG-based and of course GraphRAG-based solutions around it as well.
- 4:59
So they help us, uh, answer users' questions much better. And, uh, one thing that we also piloted recently was actually having a fine-tuned LLM. So, uh, we went with Claude because that's the primary one we are using there, and we stuck to static queries, and we tested it out.
- 5:16
And, uh, it does well. Uh, it definitely does well. Uh, quality is there. Uh, it takes effort to fine-tune the model. Uh, however, we found that it was a little too specialized in the specific use case.
- 5:29
And, uh, one thing I want to highlight, I'll deep dive further on, is evals. So you wanna make sure that we evaluate everything we do. Um, you wanna make sure what's happening in production.
- 5:40
You want to make sure in the development life cycle, you're doing everything you need to do to make sure that you have the best prompts out there. Uh, and with that, moving on to the next slide.
- 5:52
So to summarize a little bit, you know, these are the key pillars that we have. I already spoke about some of them before. I want to highlight here that- At the bottom part in this slide, actually.
- 6:02
The human domain expert. So, uh, Intuit has a lot of tax analysts that we work with, uh, of course, that are on our-- uh, that work with us, uh, decoding IRS changes year over year, making changes and so on.
- 6:14
So they are the experts that provide us the information, uh, make sure the evaluations are correctly done. So we have a phased evaluation system. We have manual evaluations initially in the development life cycle.
- 6:27
Um, and another thing that we have done is actually using the tax analysts as the prompt engineers. So that allows us, the folks in data science and ML world, to actually focus on the quality, defining the metrics, uh, making sure we have a nice data set that we can iterate on and test on, uh, as we go
- 6:45
along. As I said, models change. We wanna try out different models. We wanna see da-- uh, the laws change in the IRS, say tax year '23 to '24, what happened, uh, so those changes, we focus on that.
- 6:58
Uh, and human experts bring their expertise and are able to both help with prompt engineering and get the initial evaluations done. That then becomes the basis for automated evaluations.
- 7:11
Um, LLM-as-a-judge is what we use as well. Uh, I'm gonna talk a little bit more about that. Uh, I'm gonna take, uh, going back then to what I was telling earlier about the Claude 3 Haiku and fine-tuning.
- 7:25
So, uh, fine-tuning, as part of GenOS, we built out a lot of tool sets. Uh, one more thing that we want to do is support fine-tuning. So for our use case, we actually stuck to just fine-tuning on Claude 3 Haiku, powered by AWS Bedrock.
- 7:41
And the goal there was that we wanted to see if we can actually improve, uh, the quality of responses. Uh, biggest driver, of course, is, uh, fewer instructions, uh, needed once you have fine-tuned a model.
- 7:54
We wanna make su-- uh, latencies are a big concern, so we wanna see if we can squeeze down the prompt size and at the same time keep the quality, uh, that we need and keep going there.
- 8:05
So this is roughly what it looks like. We build out, uh, we have different test AWS accounts, different environments, uh, that are provided by the, uh, platform teams that we work with.
- 8:16
We look at the data and, uh, brief not to regulations, uh, seven to six-- uh, 16 regulations. So we only use consented data from users, uh, make sure, uh, we're on the right.
- 8:29
And, uh, just to double down on the evaluation part, right? You want to evaluate everything. So the key pillars are accuracy, relevancy, and coherence. So we have both manual and automated systems.
- 8:41
We also have broad monitoring, uh, automated systems. Basically look at sample data, uh, on what the LLM is basically giving real users in real time. And, uh, for this tooling that we've built out, uh, here, LLM-as-a-judge comes in, in the auto eval side.
- 8:58
We've also developed some tooling, uh, in-house, uh, to basically do some automated prompt engineering, and that actually really helps to update our LLM-as-a-judge. Basically, LLM-as-a-judge operates on top of a prompt.
- 9:14
Uh, it needs different information. It needs some manual samples, which are the, like, golden dataset. We use AWS Ground Truth for that, uh, and take on that. Uh, one more thing that I want to highlight here is, uh, models.
- 9:27
So we made the move from, uh, uh, Anthropic Claude Instant to Anthropic Claude Haiku for the next year, uh, for, uh, tax year '24. And that takes some effort, and the only way it's possible is because we have clear evals in place so that we can test out, uh, whatever we are changing.
- 9:47
And, uh, model changes are not, uh, as smooth as you would think.
- 9:54
These are some more details on what we're talking about on the automated evals. Uh,
- 10:01
as you can see, the key output is we wanna make sure it stacks accurate. That's the main thing we want to aim for and focus on that. I'm gonna move on here.
- 10:09
So let's talk about some major learnings that we have. So, uh, the contracts are really expensive, and the only way they are slightly cheaper, if you have long-term contracts.
- 10:20
So, uh, you are tied into the vendor, so, uh, it helps to have strong partners on the vendor side who work with you, uh, to help iterate, help improve.
- 10:31
And, uh, I think I was in this conference last year, and this was one thing called out then as well that, uh, essentially vendors are a form of, uh, lock-in.
- 10:40
The prompts are a form of lock-in. It's not easy. And we found out it's not even easy to upgrade this model from the same vendor going to the next year.
- 10:48
So we want to focus on that. Uh, another thing I really wanna highlight here is the latency. So, uh, LLM models, of course, they don't have the SLAs of back-end services.
- 11:00
We're not looking at, you know, hundred millisecond, two hundred milliseconds. We're talking about three seconds, five seconds, ten seconds. So as the user's tax info-- uh, tax information comes in, maybe they have a complicated situation like me that, you know, they own a home, they have maybe something in stocks, and they're trying to file.
- 11:18
They have-- Their spouse have their jobs as well. A lot of things going on. So the prompts really balloon up, uh, if you're trying to figure out the outcome.
- 11:26
And, uh, as you go into, you know, tax day, everybody's trying to file on tax day, right? April 15th. So, uh, latency really is, uh, shooting through the roof.
- 11:37
So we design a product around that. We wanna make sure we have the right, uh, fallback mechanisms, the right, uh, user design, uh, product design to make sure that the user experience is seamless and, uh, useful.
- 11:52
Uh, we wanna make sure that the explanations are helpful more than anything else. And, uh, I think I covered all the other places, but once again, I cannot say that enough, evals are a must to launch.
- 12:03
Uh, focus on evals. Make sure you have clear guidelines on what you're building. Uh, have clear golden dataset. I've heard that from other talks as well. That's really a key point.
- 12:16
Uh, that's all. I'm gonna pause here for questions.
- 12:20
Uh, if you're gonna be asking questions, please come to one of the microphones so that we can capture the audio. Thanks.
- 12:30
Yeah, hi. Um, you said, uh, evaluate everything, right?
- 12:34
Right.
- 12:34
But, uh, with GenAI systems there could be, you know, very small changes, right?
- 12:38
Yes.
- 12:38
You make a small change to a prompt, and evaluations can get very expensive or slow down your whole sort of development process, right? So maybe could you dive a little bit deeper into, like, when do you bring in different types of evaluations?
- 12:53
Are there, are there anything that you just say, "Uh, we ran some aggression tests and it looks fine," so you launch? Or do you always go kind of with a expert-
- 13:02
Sure. Sure
- 13:02
... opinion approach?
- 13:02
Uh, thank you for the question. So just to reiterate. So the evaluations are different types. I would say when we are in the initial phase of development, we are looking more on the, uh, manual evaluations with tax experts so we can get a baseline in place.
- 13:15
Then as we are tweaking different things in the prompts, that's where auto-evaluation comes in. So we basically take the input from the, uh, uh, tax experts and use that to train a judge prompt for the LLM.
- 13:30
So that LLM is once again expensive. Uh, we go for the GPT-4 series until recently on that one. And, uh, then minor iterations we can do with auto-eval. So we have clear understanding with product.
- 13:42
We wanna make sure that the quality is there. And maybe once we have major changes, for example, we went from tax year '23 to tax year '24, then we definitely reiterate.
- 13:51
Uh, if the prompt changes a lot, we would, uh, go for manual evaluations.
- 13:57
Um, thank you for the technical deep dive. I was more interested in the product side of it.
- 14:02
Sure.
- 14:03
We, we also do taxes, so I was curious, what are the kind of, um, LLM interactions that the users are having? Like, what are the kind of questions they're asking?
- 14:12
Is it, is it more like critical parts of the workflow or more like, um-
- 14:17
Sure
- 14:17
... what are my taxes?
- 14:18
So, uh, we have question answering for all types of questions. That includes both the product question, as in, you know, "How do I do this in TurboTax?" Uh, or also their tax situation.
- 14:29
So for example, uh, "I paid the tuition for my grandchild. Can I claim that on my taxes?" So things like that. So our goal is, we have different teams going after different pieces.
- 14:39
Our goal is we want to answer all of these questions. And, uh, accordingly, different types of questions need different solutions, and that's where maybe I would reiterate, go back to
- 14:52
here. So... There. So this piece here, Planner. So essentially, this is where it comes in. We wanna make sure when the query comes in, we understand what the user is trying to ask, and then we have different kind of solutions for different kind of questions and go through that.
- 15:12
Thank you.
- 15:13
Uh, yeah, hi. So you mentioned about the evaluation. So one quick question. Like, so TurboTax, I'm sure it involves a lot of numbers, the answers.
- 15:21
Right. Right. Absolutely.
- 15:21
So how do you verify those numbers in terms of the evaluation? Let's say, uh, the actual tax number is eleven [REDACTED:generic_id] thirty-five.
- 15:27
Right. So-
- 15:28
And if it's something like eleven thousand one hundred. So it's quite difficult to catch this with a manual evaluation-
- 15:34
Yes. Yes
- 15:34
... or with an AI. So yeah.
- 15:35
Yes. Uh, thank you for the question. So that's a key thing that we work on. So TurboTax, of course, has a tax knowledge engine that we have bui- built proprietary in-house, managed over the years, built and developed, and that's really what's providing these numbers.
- 15:47
The tax profile information is all coming from these numbers. We are not having LLMs do the calculations at all. We're basically using the ground truth that is already existing in our systems as the numbers that we see.
- 15:58
And we have safety guardrails, uh, maybe this piece here, I would probably call out. We have a lot of safety guardrails on what's the raw LLM response. Make sure, you know, we are not hallucinating numbers before we send to the user.
- 16:13
Got it. So, uh, the data is coming from the tax engine itself.
- 16:17
Yeah. Correct.
- 16:17
But when you formulate the final explanation, the answer itself, so how do you make sure that, uh, the numbers that are actually in the final answer are, you know-
- 16:25
Right. Right
- 16:26
... same as that's coming from data?
- 16:27
So, so basically we have ML models that are working under the hood as part of the, uh, security aspect that you see here that basically make sure we did not hallucinate any numbers that we built on.
- 16:37
Got it. Yeah. Thank you.
- 16:42
Yeah.
- 16:42
Um, could you give an overview of how you use both just a traditional RAG and GraphRAG, like a hybrid, in your workflow?
- 16:52
Sure, sure. So, uh-
- 16:53
And, and sorry, one more question is, now with the new model Claude 4 coming out, do you think the fine-tuning might be getting easier where it needs needed?
- 17:01
I'll take the first one. Uh, so a G- uh, GraphRAG, we've definitely seen better response, uh, better response quality with GraphRAG. Uh, even more than that though, I think for end user helpfulness, me- getting personalized answer is the key piece, I would say.
- 17:18
GraphRAG definitely outperforms, uh, uh, regular RAG. Uh, and what even more outperforms is personalizing the answers. And to your second question, uh, we are constantly evaluating the models. Uh, this is really the time that, you know, April is just behind us.
- 17:34
We are trying to look at what new things we can do. We also have some, uh, in-house models that Intuit trains and develops. So we are constantly evaluating and, uh, I don't have an answer now what we'll do for the next tax year, but yes, we keep working on that.
- 17:49
Uh, you mentioned, uh, you have different situations, tax situations, and you come up with an answer. So if I describe my situation, uh, it's complicated, and it comes up with an answer.
- 18:00
Is that answer being generated using the LLM, or is it going back to the tax engine? And how do you explain h-how you came up with that answer? And I, I assume there's going to be a lot of legal challenges to-
- 18:15
Right. Right. Right
- 18:15
... wrong answers.
- 18:16
Right. Absolutely. I mean, uh, Intuit focuses heavily on legal, legal and privacy, uh, controls. So the solution for this one, right, what we worked on here, this is specific.
- 18:27
This is more of the static variety of questions. So once again, what I was saying earlier, the inherent numbers are coming in from Tax Knowledge Engine, and we have tax experts who actually crafted these prompts.
- 18:39
So they are specifically tested for each piece that you see here. So that's basically when we do the evals, we make sure it doesn't happen, what you're suggesting.
- 18:49
Okay, great.
- 18:50
Uh, thanks.
- 18:51
Uh, thank you so much. What a great talk. [upbeat music]