Fin Maverick
Foundations VocabularyAccounting & ReportingEconomics & MacroQuant Methods & ProgrammingBusiness & Company AnalysisCorporate Finance & ValuationBehavioural Finance
Banking & Market InfrastructureFixed Income & RatesDerivatives & Structured ProductsPublic EquitiesTransactions & DealsPortfolio ConstructionFunds & AMCs
Private Markets & AlternativesRisk, Treasury & ControlAI & Digital FinanceStochastic Calculus & PricingWealth & Personal FinanceIndian Markets & RegulationProfessional Practice
CalculatorComparison
Frameworks
Explore Bootcamps
Equity ResearchPortfolio ManagementMutual Fund MasteryFinancial LiteracyInvestment Banking Analyst
Private Equity AnalystHedge Funds AnalystBreaking Into VCBreaking Into QuantsAI For Finance
Financial Analyst ProgramRisk Management ProgramPrivate Wealth ManagementDebt Capital MarketsDerivatives Foundation
Explore Internships
Equity Research InternMutual Fund Intern
Portfolio Management InternFinancial Literacy Intern
Explore Micro Courses

Equity Research6

Writing an Investment ThesisBuilding a Discounted Cash FlowReading an Annual Report FastReading a Sector Before a CompanySpotting Quality of Earnings Red FlagsBuilding a Revenue Forecast From Drivers

Portfolio Management3

Rebalancing: When, Why and What It CostsStrategic and Tactical Asset AllocationMeasuring Risk in a Portfolio

Mutual Fund Mastery3

Comparing Funds Without Being FooledHow a NAV Is Struck and Which Day You GetReading a Fund Factsheet Properly

Derivatives Unlocked4

Hedging a Real ExposureThe Greeks, PracticallyFutures, the Basis and What Moves ItReading an Option Payoff

AI For Finance2

Retrieval and Grounding for FinanceDocument Extraction in Finance

Breaking Into Quants4

Backtesting a StrategyHypothesis TestingCleaning Financial DataRegression for Finance

Breaking Into VC3

Sizing a MarketReading a Term Sheet as a FounderHow a Venture Round Actually Works

Financial Analyst Program4

Common Size and Trend AnalysisReading a Cash Flow StatementRatio Analysis That Says SomethingBuilding a Working Capital Schedule

Risk Management Program2

Credit Exposure and How It Is ReducedValue at Risk and What It Hides

Investment Banking Analyst3

Precedent Transactions and Why They DifferReading a Term Sheet StructurallyBuilding a Comparable Companies Table

Private Wealth Management3

Tax Aware Portfolio DecisionsBuilding a Client Risk ProfileGoal Based Planning Arithmetic

Debt Capital Markets3

Analysing an Issuer's CreditDuration and What It Does Not Tell YouBond Pricing and Yield Mechanics

Private Equity Analyst2

Fund Waterfalls and CarryThe LBO in Structure

Hedge Funds Analyst2

Short Selling MechanicsLong Short Mechanics
Courses
Explore Career Roadmaps
Investment Banking AnalystEquity Research AnalystVC AnalystPrivate Equity AnalystHedge Funds Analyst
Quant AnalystAI For FinanceFinancial Analyst ProgramPrivate Wealth ManagementDebt Capital Markets
Risk Management ProgramDerivatives FoundationPortfolio ManagementMutual Fund Mastery
PartnershipsShowdown
Log inSign up
AI, Automation & Digital Finance
1AI Foundations
Artificial Intelligence in FinanceAlgorithmNeural Networks and Deep LearningMachine LearningArtificial Intelligence vs Machine…Computer Vision in FinanceTraining Data and LabelsNatural Language Processing in Finance
2Generative AI
Generative AIGenerative AI vs Predictive AILarge Language ModelsEmbeddingsHallucinationFine TuningPrompting vs Fine TuningThe PromptThe Context WindowTool CallingGroundingVector DatabasesRetrieval Augmented GenerationRAG vs Fine Tuning
3Automation and Workflow
Workflow AutomationAutomation vs AugmentationHow to Map a…Straight-Through Processing and Exception…Robotic Process AutomationRule EnginesMachine Learning vs Rule-Based…
4Document and Operations AI
Intelligent Document ProcessingBatch vs Real-Time vs…Document Classification vs Entity…Service Level AgreementsCase ManagementHow to Document Data…Reconciliation AutomationOptical Character Recognition and Data ExtractionConfidence Scores
5Customer Systems, Identity and Digital Assets
Digital IdentityConsent ManagementBlockchain and Distributed LedgerChatbots and Conversational AIFrom Use Case to ProductionDigital Assets and TokenisationDigital SignaturesData Sharing in FinanceElectronic KYC and Digital Onboarding
6Credit and Fraud Systems
The Fraud AlertCredit Decisioning SystemsHuman in the Loop…Adverse ActionAnomaly DetectionThe Decision ThresholdCredit Score vs Credit DecisionAlert Triage and EscalationFraud Detection and Transaction MonitoringFraud Model vs Credit ModelHow to Build Human…
7Governance, Data and Vendors
AI Governance and the AI PolicyHow to Create an…Explainability and Interpretability ComparedThe AI VendorBias and Fairness in Financial AIShadow AIAccess Control and Data MinimisationCloud Computing in FinanceData Lineage and Master DataData ResidencyThe AI Use Case Register and Model InventoryThe Model Owner
8Model Performance, Monitoring and Resilience
Model DriftFalse Positives and False NegativesClassification MetricsAdversarial AttacksModel TestingBias, Fairness and Explainability…Stopping an Automated SystemModel ValidationAI Governance vs Model Risk ManagementPrompt InjectionHow to Create an…

Vector Databases: Storing Meaning for Retrieval

A vector store holds passages together with their positions and the fields describing them, and returns the passages nearest a question. The store is a lookup arranged by similarity of subject. Such a store holds no view about which passage answers a question, no view about which is correct, and no view about which is current, so anything depending on those has to be a field it filters on.

The word database makes people expect a thing that answers, and the expectation does a lot of quiet damage here. A store of this kind is extremely good at finding material on a given subject and carries no opinion whatsoever about whether that material is right, relevant or still in force. Every useful property of such a store, and every painful one, comes out of that one split.

How such a store is built, configured or tuned moves quickly and dates. Two duller and slower things decide whether a deployment works: what the store holds, and what it hands back when somebody asks it something.

What does one entry in the store actually hold?

A familiar object makes the point. A school library used to keep a drawer of cards, one card for each book. The card said what the book was about, so a reader knew whether the book was wanted. The card said where to walk, in the form of a shelf number that meant nothing on its own. And it carried a stamp on the back saying which edition this was and whether the library still had it. Three things on one card, doing three completely different jobs, and only the first of them was worth reading.

An entry in a vector storeA store that keeps passages along with a position for each one, and hands back the passages sitting nearest to a question. is that card. The entry holds the passage itself, roughly a paragraph of one document. The entry holds the passage's position, the long list of numbers that lets the store work out what sits near what. And it holds a set of fieldsDescribed properties recorded beside a passage, such as which document it came from and which version that document is.: which document this came from, which version of it, when that version took effect, when it was withdrawn, and who is accountable for the document.

ONE ENTRY, THREE PARTS, THREE DIFFERENT JOBS THE PASSAGE About 300 words of one document. Ordinary text a person can read. ITS JOB The only part that ever reaches anybody. It is what comes back. RETURNED THE POSITION A long list of numbers with nothing in it to read. Useful only against other positions. ITS JOB Works out which entries sit near the question, and then stops being involved. NEVER RETURNED THE FIELDS Source document, version, effective date, withdrawal date, accountable person. ITS JOB Lets entries be thrown out before anything comes back. Never searched by meaning. NEVER RETURNED 47,000 ENTRIES LIKE THIS ONE. SIX OF THEM COME BACK TO ANY ONE QUESTION. Sumeru Bank Limited, invented. The counts are the bank's own and describe one store at one deployment.
Only the passage is ever handed to anybody, while the position decides what gets considered and the fields decide what gets thrown out, so two of the three parts do their entire work before a reader sees anything.

Now the scale, and every number belongs to the invented Sumeru Bank Limited. Sumeru's store holds 11,400 documents. The documents are policies, procedures and product terms, and the filling job cut them into 47,000 passages, roughly four to a document. At roughly 300 words a passage that is about 1,41,00,000 words of material sitting in the store, and six passages, about 1,800 words, is what comes back to any one question. Six passages is roughly one part in 7,800 of everything the store holds. Most of the work is deciding what not to send.

The store at one invented bankFigure
Documents held: policies, procedures, product terms11,400
Passages they were cut into47,000
Passages per document, on averageabout 4
Words in one passage, on averageabout 300
Words held in the store altogether, arithmetic on the two aboveabout 1,41,00,000
Passages returned to one question, the deployed setting6
Try it out

What does one entry in the store hold?

Why do two decisions taken at filling outlive everything done later?

Two things about a store are settled on the day it is filled and cannot be reached afterwards: how the documents were cut into passages, and which fields were attached to each one. Everything else about the arrangement is an afternoon's work. Both of these need a rebuildFilling the store again from the documents, which is what changing the cutting or adding a field to every entry requires.. Every one of the 47,000 entries is made again from the documents.

The household version is the drawer where the bills live. On the day it is set up, the filing is settled: by year or by service, and whether each envelope gets a note on the front saying what it is. Later on, the choice of which drawer to open first and how many envelopes to pull out can both change. How the whole thing was filed cannot change without pulling every envelope out and doing it again. Nobody ever does.

Every later adjustment operates on the passages as they were cut and the fields as they were attached, so the two decisions nobody photographs for the committee pack are the two that survive all of them. A passage cut so large that it buries the sentence that was needed cannot be repaired by returning more passages. A store with no field for the version cannot be made to exclude an old version by any setting anybody moves.

WHAT A LATER CHANGE CAN REACH, AND WHAT NEEDS THE STORE FILLED AGAIN CHANGE IT THIS AFTERNOON How many passages come back to a question Which filters run before anything is returned How the question is worded on its way in Which documents get loaded next week Cost: minutes, and a record of who changed it. None of these touches the 47,000 entries. NEEDS ALL 47,000 ENTRIES MADE AGAIN How the documents were cut into passages A passage cut too large buries the answer, one cut too small has lost what made it one. Which fields exist on every entry A property with no field cannot be filtered on, whatever anybody adjusts afterwards. Cost: the filling job, done over again. Which is why it is almost never revisited. Sumeru Bank Limited, invented. The 47,000 passages are the bank's own count for one store.
Four ordinary settings can be moved in an afternoon and two decisions cannot be moved at all without making every entry again, which is why the two nobody discusses are the two that decide the results.
Try it out

Which of these cannot be changed without filling the store again from the documents?

AI For Finance Bootcamp — Fin Maverick

What happens between a question arriving and passages coming back?

Four steps, and they always happen in this order. First the question is turned into a position by exactly the same treatment every passage was given, so the question and the material end up described in the same way. Second the store works out which entries sit nearest that position. Third the fields on those entries are read and anything failing a filterA check made against a field, deciding whether a passage is allowed to be returned at all. is dropped. Fourth what is left is returned, six passages, each with a pointer back to the document it came from.

The third step sits before the fourth, and that ordering is the entire reason anything can be kept out of an answer. A filter running after the return would be reading a list that has already been handed over. The ordering is the difference between a security check at the gate of a wedding hall and a security check at the buffet: same check, same list, and only one of them is doing anything.

FOUR STEPS FROM A QUESTION TO SIX PASSAGES STEP 1 PLACE THE QUESTION The question is turned into a position, the same way every passage was. STEP 2 FIND WHAT IS NEAR The entries sitting nearest that position are gathered up as candidates. STEP 3 READ THE FIELDS Anything failing a filter is dropped here: a withdrawn version never survives. STEP 4 RETURN SIX Six passages leave, each with a pointer back to its document. TOUCHES: THE QUESTION TOUCHES: THE POSITIONS TOUCHES: THE FIELDS TOUCHES: THE PASSAGES STEP 3 IS BEFORE STEP 4, AND THAT IS THE POINT. A check made after the handover is not a check. Nothing in steps 1 and 2 can tell a current version from a withdrawn one. Only step 3 can. Sumeru Bank Limited, invented. Six passages is this bank's own setting.
The step that reads the fields comes before the step that hands anything over, so a version check has something to act on, while the same check placed after the handover would be reading a list already given away.
Try it out

Why does it matter that the fields are read before the passages are returned rather than after?

What decides how many passages come back?

Somebody typed a number. A typed number is the entire answer, and it deserves saying plainly. The setting is usually discussed as though it fell out of the arrangement rather than out of a meeting. At this bank the number of passages returnedHow many results come back for one question, which is a setting somebody chooses rather than anything the store works out. is six, fixed, the same six for a question about a fee as for a question about a fraud referral.

Nothing in the store proposes six. The store will hand back one, or six, or two hundred, with equal willingness and no comment. The number of passages returned is a deployment decision made by a person, and a deployer moves it every day without ever calling the move a change to the arrangement. Measuring it beats arguing about it, for exactly that reason.

How often was the passage that was needed actually among them?

Sumeru Bank measured it, on 200 questions, alongside its second measurement of the drafting assistant. For each question somebody first decided which passage in the store actually answered it, then checked whether that passage was among the ones returned. The readings are the invented bank's own and describe this store only: at one passage the needed one was there for 61.0 per cent of questions, at three for 80.5 per cent, at six for 89.0 per cent, at ten for 93.0 per cent, and at twenty for 96.0 per cent.

Every one of those rates lands on a whole number of questions out of 200: 122, 161, 178, 186 and 192 questions respectively. A whole number in every case is a small check that the rates and the test agree. The deployed setting of six is the 178.

The shape is the finding. The first three passages buy 9.75 points each and the last ten buy 0.30 points each, so a deployer who triples the material returned is buying the thinnest part of the curve. The curve matters more than it looks. The same measurement found that where the needed passage came back the answer was right for 171 of 178 questions, and where it did not the component answered anyway and was right for 3 of 22. The share the retrieval finds is very close to the share the whole arrangement gets right.

THE NEEDED PASSAGE IS FOUND QUICKLY, THEN BARELY AT ALL 55% 75% 95% 1 passage, 61.0% 3 passages, 80.5% 6, 89.0%, DEPLOYED 10, 93.0% 20, 96.0% 1 6 10 20 PASSAGES RETURNED TO ONE QUESTION POINTS BOUGHT BY EACH EXTRA PASSAGE, ALONG EACH STRETCH 9.75 1 to 3 2.83 3 to 6 1.00 6 to 10 0.30 10 to 20 Sumeru Bank Limited, invented. 200 questions, one store, measured at the second of the two measurements.
The first three passages buy nearly ten points each and the last ten buy less than a third of a point each, so the flattening is not a small effect at the edges but the whole story past six.
Try it out

Before the control below is moved: the setting goes from 6 passages to 20. How much does the share of questions finding the needed passage improve?

Play with it

Move the setting and watch three things move together

One control: how many passages come back to a question. Three consequences redraw at once, the curve marker, the 200 questions as squares, and the material handed over out of the arrangement's total holding of about 12,500 words. The default is the deployed setting: 6 passages, 89.0 per cent of questions finding the needed passage, being 178 of 200, for about 1,800 words of material. At the far end, 20 passages gives 96.0 per cent, being 192 of 200, for about 6,000 words, leaving 6,160 words of room for the file itself.

Passages returned: 6

Needed passage found
89.0%
Questions of 200
178
Material handed over
1,800
Room left for the file
10,360
1. THE CURVE, WITH THE CURRENT SETTING MARKED 55% 100% 6 passages 1 20 2. THE 200 QUESTIONS. FILLED MEANS THE NEEDED PASSAGE CAME BACK. 3. THE 12,500 WORDS THE ARRANGEMENT HOLDS AT ONCE Instruction 340 words, passages 1,800 words, room left for the file 10,360 words.

Educational illustration. Figures are the invented bank's own and describe one deployment: 200 questions, about 300 words a passage, and an arrangement holding about 12,500 words at once of which the 340 word instruction is part. Readings between the measured points at 1, 3, 6, 10 and 20 passages are read off a straight line drawn between them. The measured points belong to this store and depend entirely on how its documents were cut.

Breaking Into Quants Bootcamp — Fin Maverick

What does returning more passages cost, and who pays each half?

Two currencies, and only one of them ever reaches a slide. The first is space. Everything supplied for one output shares a single holding limit. At this bank the limit runs to about 12,500 words in total, and the 340 word instruction is already inside it. Six passages take about 1,800 words of that and leave 10,360 words of room for the file itself. The file averages 4,800 words. Twenty passages take 6,000 and leave 6,160, still above the average file and now barely half of it clear.

The second currency is somebody's afternoon. Six passages a question across 3,010 exception notes a month is 18,060 passages handed over, about 54,18,000 words; at twenty it would be about 1,80,60,000. Verification of those notes was a measured 9 minutes each. Across 3,010 notes that is 27,090 minutes, being 451.5 hours a month, about 3.225 posts on the bank's assumed working month and about Rs 29,02,500/- a year at the assumed fully loaded Rs 9,00,000/- a post. The yearly amount is arithmetic on the bank's own figures rather than a separately counted amount.

Nobody budgets the second currency, and it behaves worse than the first: a checker handed six passages opens most of them, and a checker handed twenty opens fewer of them than they did when there were six. Space runs out honestly, with something visibly dropped. Reading time runs out quietly, and what it drops is the checking.

RETURNING MORE IS PAID FOR TWICE, AND ONLY THE LEFT HALF IS EVER COUNTED CURRENCY 1: ROOM LEFT FOR THE FILE AT 6 PASSAGES 10,360 AT 20 PASSAGES 6,160 THE AVERAGE FILE, 4,800 WORDS Both settings clear the average file. Neither clears the longest 5 per cent, which run past 12,000 words. CURRENCY 2: MATERIAL A CHECKER MAY OPEN AT 6 PASSAGES 1,800 words a note AT 20 PASSAGES 6,000 words a note Across 3,010 notes a month that is about 54,18,000 words handed over at six, and 1,80,60,000 at twenty. Sumeru Bank Limited, invented. The monthly totals are arithmetic on the bank's own counts, not separately measured.
One cost shows up as room the file no longer has and the other shows up as reading nobody scheduled, and only the first of the two ever appears in the paperwork that approves the change.
Try it out

Name the two costs of returning more passages to every question.

Financial Analyst Program Bootcamp — Fin Maverick

What has to be excluded before anything is returned?

Anything whose wrongness has nothing to do with the subject. A withdrawn version of a procedure is about precisely the same subject as its replacement, so nothing in the positions separates them and nothing ever will. The same goes for a document that has not taken effect yet, one belonging to a product this applicant did not apply for, and one nobody is allowed to quote to a customer. All of them are on subject and all of them are wrong to hand over.

A filter is exactly as current as the field it reads. The filtering step therefore has two ways of failing, and only one of them is ever designed for. The designed-for way is a missing field: if nothing on the entry records the version, no filter can act on the version, and no adjustment made later can invent one. The other way is quieter. The field is there, the filter runs, the filter works, and the field says something that stopped being true a week ago.

A FILTER IS EXACTLY AS CURRENT AS THE FIELD IT READS AN ENTRY ARRIVES on subject, near enough QUESTION ONE Is there a field recording this property at all? YES NO ENDING 1: NOTHING TO ACT ON No setting, no adjustment and no rewording invents a field. QUESTION TWO Does that field say what is true today? NO ENDING 2: PASSED AS CURRENT The filter runs correctly on a field that went out of date. YES ENDING 3: EXCLUDED and never returned at all. Ending 1 is designed for. Ending 2 is not, because every part of it works. Sumeru Bank Limited, invented, one store.
Missing the field stops a filter from acting at all, while a field that quietly went out of date lets the filter act correctly and pass the wrong entry through, and only the first of those two is designed for.
Try it out

A store has a withdrawal date on every entry and the filter runs before anything is returned. Can a withdrawn version still come back?

How does a store go stale while every component keeps working?

StalenessThe store holding a version of a document other than the one now in force, so answers come from material that has been replaced. is the failure this subject deserves to be known for, and the thing worth understanding about it is that there is nothing to find. Every part of the arrangement is working. The store is answering the question it was asked, on the material it was given, and the material it was given is the material somebody loaded.

The failure: eleven days of correct answers from a withdrawn procedure

In month 11 an exception handling procedure at Sumeru Bank Limited was replaced. The person accountable for it did what that job has always meant: they published the replacement to the intranet, told the desk, and moved on. Nothing connected that act to the store. The new version reached the store eleven days later, when the next batch of documents was loaded.

For those eleven days every question about that procedure was answered from the just-withdrawn version, and answered correctly from it. The drafts were groundedWritten from material that was supplied with the request, rather than from whatever the component had absorbed while being fitted.: every statement in them traced to a passage. The pointersThe reference travelling with a returned passage, naming the document it came from so a checker can open it. led to a real document sitting in a real place. Checkers opened some of them and found the passage saying exactly what the draft said.

Every component was doing its job on the material it had, so no technical check anywhere in the arrangement was capable of raising a question. Nobody made an error. The eleven days are an operational gap between whoever publishes a document and whoever loads it, and the gap needs an operational repair rather than a better arrangement.

WHAT THE CHECKER OPENED, AND WHY IT LOOKED RIGHT ONE RETURNED PASSAGE, AS IT ARRIVED THE PASSAGE the wording of the step, as written SOURCE DOCUMENT Exception handling procedure VERSION version 4 EFFECTIVE DATE the day version 4 took effect WITHDRAWAL DATE blank, so: in force ACCOUNTABLE PERSON named, and reachable One line on this card is wrong. It is the blank one. WHAT THE CHECKER TESTED The draft matches the passage The pointer opens a real document Nothing is asserted beyond it A version is named on the record NOT TESTED, AND NOT TESTABLE HERE: whether the intranet had a newer version than the store did. Every check above passes for eleven days. Sumeru Bank Limited, invented. No calendar date is stated anywhere; the fields are named rather than filled.
Every line a checker could test came back correct and the only wrong line was a blank one, which is why eleven days of answers from a withdrawn version left no trace anybody could follow.
Try it out

For eleven days answers came from a withdrawn procedure. Which check would have caught it?

Investment Banking Analyst Bootcamp — Fin Maverick Bond Pricing and Yield Mechanics — free micro-course from Fin Maverick

Who is accountable for keeping it current, and why is that the hard part?

A question about who is accountable for the procedure gets a name. A question about who is accountable for the arrangement gets a name. A question about who is accountable for the eleven days between the two gets a pause, then a sentence with no subject in it, of the shape it gets loaded periodically. The gap lives in the space between two named jobs. The space between two named jobs is the one place an organisation chart cannot show anything.

The same shape appears in a household. The person who buys the medicines is named. The person who takes them is named. Nobody is named for noticing that the strip in the drawer expired, and so the strip in the drawer expires. Nothing about the buying went wrong and nothing about the taking went wrong.

ELEVEN DAYS BETWEEN TWO ACTIVITIES THAT WERE NEVER JOINED THE INTRANET has version 5 DAY 0: THE REPLACEMENT IS PUBLISHED THE STORE has version 4 DAY 11: THE NEXT LOAD RUNS ELEVEN DAYS OF GROUNDED, CORRECT, WITHDRAWN ANSWERS PUBLISHING THE DOCUMENT A named person, doing the job exactly as it was defined. LOADING IT INTO THE STORE nobody, by default and it is where the gap lives. RUNNING THE ARRANGEMENT A named person, whose checks all passed throughout. Sumeru Bank Limited, invented. Months are numbered from approval and no calendar date is stated anywhere.
Both activities either side of the gap were done properly by named people, and the eleven days sat in the middle box where nobody was named at all.

The repair is dull, and worth naming for exactly that reason. Somebody is made accountable for the join, the loading runs on a stated rhythm that the desk knows, and the store can report the age of what it holds so a person can look. None of that is a change to the retrieval, and no amount of improving the retrieval substitutes for it.

The Risk Management Program bootcamp teaches you to set a limit framework and run it through a breach.

What is a vector store not, however it is described?

Three things get attached to it in conversation, and each one costs a deployment something different. A vector store is not a search engine that knows the answer: it returns what is near, and deciding which of the six actually answers the question happens somewhere else entirely. The store is not a memory: nothing it holds arrived because anybody said it, and it changes only when somebody loads something. And it is not a record of what is in force: it is a record of what was loaded. The second claim wears the shape of the first and says something else.

Every one of those three mistakes ends in the same place. Somebody treats the first passage returned as an answer. The store put it first because it sat nearest. Nearest is the whole of what being first means, and being nearest is not nothing, but it is a very long way from being the passage somebody was looking for.

THREE DESCRIPTIONS IT ATTRACTS, AND WHAT IT IS INSTEAD A search engine that knows the answer It returns what is near. Which of the six answers the question is decided elsewhere. A memory of what the arrangement has seen Nothing in it arrived because somebody said it. It changes when somebody loads something. A record of what is in force It is a record of what was loaded, which is the same shape and a different claim.
All three of the descriptions it attracts point somewhere it never went, and all three end in the same habit of reading the first passage returned as though it were an answer.
Try it out

Does the store hold a view about which of the six returned passages answers the question asked?

What do three different people do with any of this?

The same store, three jobs, three different questions

Ismail Sheikh, running the exception desk, reads the passages-returned setting as a workload decision rather than a technical one. Every extra passage is material one of his officers may have to open before signing something. When somebody proposes raising it, the question he asks is not whether accuracy improves but how many more words a month land in front of seven people, and whether anybody has asked those seven.

The person accountable for a procedure has quietly acquired a second step. Publishing used to be the end of their job. The day a store exists, publishing is the first half of it and loading is the second, whether or not anybody wrote that down, and until it is written down the second half belongs to nobody.

Neelima Rao, doing an independent review, does not ask how accurate the retrieval is at all: she asks how old the store is. The number she wants is the lag between a document being replaced and the replacement being loaded, measured over the last few replacements. The lag is a property of a process rather than of an arrangement, it can be found without reading a single generated draft, and it is the one number that would have shown the eleven days while they were happening.

India

Where an answer to a customer came from a version no longer in force

Where a regulated lender in India states something to a customer that came from a procedure already withdrawn, the expectations covering records, disclosure, outsourcing and the use of customer data sit with the Reserve Bank of India, named in the sources below at rbi.org.in. Where the deployer is a market intermediary rather than a lender, the equivalent expectations sit with the Securities and Exchange Board of India at sebi.gov.in. Requirements, thresholds and effective dates move over time, and the position applying to any particular arrangement is confirmed at the source.

Embeddings cover what an embedding is, how a position is produced, and what the questions that missed were actually made of. How the passages that come back are assembled into an answer is set out under retrieval-augmented generation. How a component produces text is set out under large language models.

Sources

SourceDocumentSite
Reserve Bank of IndiaExpectations on a regulated lender covering records, disclosure, outsourcing and the use of customer datarbi.org.in
Securities and Exchange Board of IndiaThe equivalent expectations where the deployer is a market intermediary rather than a lendersebi.gov.in
Bank for International SettlementsInternational supervisory material on how banks deploy arrangements of this kindbis.org

Sumeru Bank Limited, Ismail Sheikh and Neelima Rao are invented.
Educational material. Not advice on any investment, tax, budget or market position.

← PreviousNext →
Fin Maverick Micro CoursesExplore Micro Courses
Fin Maverick BootcampsExplore Bootcamps
Fin Maverick

Finance education that ends in a job, not a certificate that gathers dust. Built for young India.

LEARN
CalculatorsFrameworksComparisonsCareersShowdown
RESOURCES
All CoursesMicro CoursesBootcampsInternships
COMPANY
AboutJob openingPartnership
LEGAL
Privacy PolicyTerms & ConditionsContent LicenseReturn & Refund Policy
© 2026 FIN MAVERICK / BUILT FOR INDIA.DO FINANCE, DO NOT JUST READ ABOUT IT.