Agentic AI and RAG for finance

The fastest-moving corner of applied AI, explained simply. What RAG is, why the classic version is already fading, and five papers, one map and four applied, that change how you would actually build a financial AI system.

A warning before the list: this is the fastest-moving corner of AI, and it shows. Some of the ideas below are already ageing at the edges, and at least one of the papers says exactly that about itself. Read them for the durable ideas, not the leaderboard numbers, which turn over month to month.

First, the words: single-turn, workflow, agent

The industry has not settled its own vocabulary, so start here. A single-turn LLM call is a one-shot: prompt in, answer out, like a chatbot or a sentiment classifier. A workflow chains several LLM calls along a predefined path, each step finishing before the next begins. An agent is handed a goal and decides its own steps, calling tools, checking results and correcting course. Autonomy rises across the three, and the CFA Institute's exhibit further down draws exactly that line.

What RAG is, and why the classic version is fading

RAG means retrieval-augmented generation. Instead of trusting whatever a model memorised in training, you first retrieve relevant documents and place them in the prompt, so the answer is grounded in real, current sources rather than recall. The classic recipe: chop documents into chunks, embed each as a vector, and at query time pull the nearest chunks by similarity.

That recipe is quietly losing ground. Frontier models now carry context windows of hundreds of thousands to millions of tokens, so for many tasks you can skip the brittle chunk-and-embed pipeline and simply hand the model the whole document. Where retrieval still matters, at real corpus scale, the winning designs are agentic: the system retrieves, judges whether the evidence is actually enough, reformulates and retries, routes on metadata, and reranks. The four applied papers below are that shift, in order.

Naive RAG one shot, no checking Question Vector search Top-k chunks LLM Answer Agentic RAG retrieve, judge, retry Question Retrieve Judge:enough evidence? yes Answer no · refine query & retrieve again
Naive RAG answers in one pass. Agentic RAG adds a judge-and-retry loop, so weak evidence gets caught before it becomes a confident wrong answer.

Here is my hands-on version of these ideas, a three-agent system that turns out dozens of DCF models in Excel a day:

If you only read one, start with paper 02, the reality check the rest of the hype needs. Then use the retrieval and multi-agent papers as a build blueprint.

  1. Agentic AI for Finance (CFA Institute) — the map of where agents fit
  2. Agentic Trading, a 77-study review — the evaluation-crisis paper, read first
  3. BM25 to Corrective RAG — which retrieval method actually wins
  4. Agentic RAG for Document QA — the read-and-judge loop
  5. MimirRAG — the most copyable blueprint for financial RAG

Paper 01

Agentic AI for Finance

CFA Institute Industry report Field overview

Before the applied work, a map helps. The CFA Institute's report on agentic AI for finance lays out where these systems plausibly fit across the investment process, and, usefully, draws the line between single-turn calls, workflows and full agents on one axis of autonomy. Its exhibit is the cleanest picture of that distinction, reproduced below.

Treat it as orientation rather than gospel. An industry-wide survey of a field this young dates in parts even as it publishes, so read it for the taxonomy and the shared vocabulary, then ground each claim in the applied papers that follow.

Agentic systems Single-Turn LLM Low autonomy Input LLM Output chatbot · classifier Workflow Medium · fixed steps Input S1 S2 S3 Output each step before the next Agent High · dynamic Plan Act Observe tools · self-correcting loop Increasing autonomy
Single-turn LLMs, workflows and agents on one axis of increasing autonomy. Framing from the CFA Institute report on agentic AI for finance.

Read it for the map. The field moves fast, so parts already date, mix it with the applications below.


Paper 02

Agentic Trading, a 77-study review

Survey · 77 studies 2026 arXiv:2605.19337

This is the paper to read first, because it inoculates you against the rest of the hype. It reviews 77 studies of LLM and agent-based trading systems and finds the field failing its own basic tests: barely any of them model real trading costs, and none are reproducible.

The implication is blunt. Most headline "the AI beat the market" results quietly evaporate once you add slippage, fees and an honest out-of-sample split. Read it as a checklist for what a credible evaluation must include, so you can tell a real result from a backtest that only looks like one.

What an honest evaluation needs (and most of the 77 skip): real transaction costs and slippage · a strict out-of-sample or walk-forward split · enough seeds to show it is not luck · code and data that actually reproduce the numbers.

77 studies, barely any model real costs, none reproducible, your skeptic's shield, read it first.


Paper 03

BM25 to Corrective RAG

Retrieval benchmark 2026 arXiv:2604.01733

Most RAG systems reach for a vector database by default. This paper runs the head-to-head that default rarely gets: keyword search (BM25), dense vector search, hybrid, and corrective RAG with a reranking step. The result is consistent, hybrid retrieval plus a reranker wins, and pure vector search, the industry default, is frequently the wrong choice.

There is a finance-specific lesson buried in it too. Tables, the heart of filings and factsheets, need their own handling; feed them through naive text chunking and you shred exactly the numbers you were trying to retrieve.

BM25 keyword match misses synonyms Dense vector the common default often the wrong pick Hybrid + rerank keyword + vector, then re-score wins the benchmark And treat tables separately, naive chunking shreds the very numbers you need.
Across the benchmark, hybrid retrieval with a reranker beats both keyword-only and pure-vector search.

Hybrid plus reranking wins, pure vector is the wrong default, and tables need their own handling.


Paper 04

Agentic RAG for Document QA

Agentic RAG 2026 arXiv:2605.05409

Classic RAG retrieves once and answers. This paper closes the loop: the agent retrieves, judges whether the evidence is actually sufficient, and retries with a refined query when it is not. Only when the evidence clears the bar does it answer.

That read-and-judge loop is the current frontier pattern for document QA, and it is a perfect fit for finance. It spends a few extra calls to buy far fewer confident-but-wrong answers, which is exactly the trade you want when the source is a prospectus and the reader is going to act on the number.

Query Retrieve Judgeenough evidence? yes Answer no · refine the query and retrieve again
The read-and-judge loop: the agent only answers once its own check says the retrieved evidence is sufficient.

Retrieve, judge, retry, the read-and-judge loop trades a few calls for far fewer wrong answers.


Paper 05

MimirRAG

Multi-agent RAG 2026 arXiv:2605.25030

MimirRAG is the one that reads like a blueprint you can copy. It is a multi-agent system that filters on metadata before semantics: narrow to the right issuer, document, period and section first, then run semantic search inside that thin slice rather than across the whole corpus.

For finance that ordering is the whole ballgame. The same phrase means different things across issuers, filings and years, and semantics-first retrieval happily returns the right words from the wrong document. Route on metadata first, then rerank (paper 03) inside the result, and you have the most copyable design here.

Query Metadata filterissuer · period · section Semantic searchwithin the slice Rerank Answer Multi-agent, and metadata comes before semantics, so you search the right document, not just the right words.
Filter to the right document by metadata first, then search inside that slice, then rerank.

Metadata before semantics, the most copyable blueprint for financial RAG.


Agentic AI RAG Finance

Put together, these five give you a working stance on agentic AI in finance: keep a healthy distrust of unaudited results (paper 02), retrieve with hybrid search and reranking rather than pure vectors (paper 03), close the loop so the system judges its own evidence (paper 04), and route on metadata before semantics in a multi-agent design (paper 05), with the CFA map (paper 01) to place it all. The video above is my hands-on version of the same ideas.