Topic · Machine Learning & AI
← All topicsLLMs & Agents in Finance
26 articles · 4 checkpoints · 16 deeper reads · 6 reference notes
A standalone topic: it is on no roadmap, so read it on its own terms.
Every article, in reading order
plant a flag as you finish eachRead these first
The honest answer is narrower than the hype, LLMs are strong at reading text at volume and weak at anything that requires actually knowing what a price will do.
An agentic workflow lets an LLM plan its own sequence of tool calls, search, extract, compute, instead of following one fixed prompt, trading predictability for the ability to handle open-ended questions.
Retrieval-augmented generation lets a model answer from documents it can actually cite instead of from memory, the hard part is retrieval quality, not the generation step everyone focuses on.
Turning a 10-K or transcript into clean numeric fields is a search-and-verify problem, not a generation problem, treat the model as a fast, fallible reader and check its work.
Then the rest