← Back to feed
2026-06-25infradata

LLM-Based Examination of Eligibility Criteria from Securities Prospectuses at the German Central Bank

Serhii Hamotskyi, Akash Kumar Gautam, Christian Hänig

PDF preview for LLM-Based Examination of Eligibility Criteria from Securities Prospectuses at the German Central Bank
Read on arXiv →

Key claim

LLMs can significantly improve collateral verification accuracy.

This paper introduces a new approach to verifying securities as collateral using Large Language Models, achieving high precision in document-level eligibility assessments. The method addresses challenges like OCR noise and bilingual content, making it a practical solution for resource-intensive tasks.

In plain English

Imagine you're working at a central bank, and you need to verify whether various securities can be used as collateral. This involves sifting through long, complex documents that often mix languages and can be hard to read due to scanning errors. Traditionally, people have relied on Named Entity Recognition (NER) systems to pull out relevant information, but these systems can struggle with messy text and require a lot of manual effort to train on specific types of information. This is what's called the rigidity of span-based constraints and the need for extensive manual annotation.

The paper presents a fresh approach that uses Large Language Models (LLMs) to tackle this problem. Instead of just extracting information, the method breaks the task down into three parts: extraction, normalization, and interpretation. This allows the system to be more flexible and handle the noise and bilingual nature of the documents better than traditional methods. Additionally, they introduce a new way to evaluate the results, using LLMs to assess the semantic quality of the information extracted rather than just where it appears in the text.

What’s significant here is that this new method achieves high precision—up to 91%—in determining whether documents meet eligibility criteria. This is a notable improvement over previous methods, as it reduces the chances of incorrectly accepting documents that shouldn't qualify. For anyone building systems that need to verify complex documents, this approach offers a more efficient and reliable way to handle the intricacies of legal and financial texts.

Novelty
7.5/10

This work applies LLMs to a specific, complex problem in collateral verification, extending existing methods.

Reliability
8.0/10

The results are supported by high precision metrics and a novel evaluation methodology.

Deep reliability assessment

The methodology supports the narrower claim that long-context instruction-tuned LLMs can act as conservative extraction-and-decision components for a real financial eligibility workflow, especially when false acceptance is costly. It overclaims if read as a general replacement for NER or legal review, because the evaluation appears tied to a specific private Bundesbank dataset, uses base-prospectus annotations during inference, and relies partly on LLM-as-a-judge rather than fully independent human adjudication.

Reproducibility

No public code or dataset is mentioned in the provided paper text. The models and tools are named, including Llama-3.3-70B-Instruct, Cohere Command-R 08-2024, Mistral Small 3.1 Instruct, LangChain structured output, and Docling, but the prospectus dataset and annotations appear private or institution-specific.

Discussion questions

  1. 1.The system is deliberately conservative and reaches up to 91% precision on document-level eligibility, minimizing false acceptance. In a central-bank collateral workflow, is that the right operating point, or would you rather optimize for fewer false rejections to reduce human review load?
  2. 2.They frame the main baseline as the earlier NER-style system, but their LLM pipeline gets whole prospectuses, normalized Markdown, master data, and base-prospectus annotations at inference time. Is that a fair comparison, or should the stronger baseline be a retrieval-plus-classifier or rules-plus-LLM hybrid with the same inputs?
  3. 3.The paper uses LLM-as-a-judge for value-based evaluation because span offsets break after OCR and Markdown conversion. Would you trust an LLM judge for a regulated financial extraction workflow, or would you insist on human audit samples even if that makes evaluation slower and more expensive?
  4. 4.They avoid chunking by using 128k-context models and quote entire prospectuses directly in the prompt. For teams here building document systems, is long-context prompting simpler and good enough, or have you found retrieval/chunking more reliable once documents get noisy, bilingual, or repetitive?
  5. 5.The pipeline decomposes simple criteria into extraction, normalization, and interpretation, but handles complex criteria like coupon and status in a more combined step with decision logic and master data. If you were productionizing this, would you push more reasoning into deterministic Python rules, or keep more of it inside the LLM for flexibility?

Key figure

The key architecture diagram shows a multi-stage pipeline where prospectus PDFs are converted to text, LLM blocks extract and interpret simple, coupon, and status information, deterministic Python steps combine predictions with base-prospectus annotations and master data, and final eligibility is evaluated against derived ground truth using binary metrics and LLM-as-a-judge.

LLM-Based Examination of Eligibility Criteria from Securities Prospectuses at the German Central Bank — Frontier Papers