Language-Routed RAG and Direct Option Scoring for Multilingual Financial QA: DS@GT at FinMMEval

· Source: Computation and Language · Field: Technology & Digital — Artificial Intelligence & Machine Learning, FinTech & Digital Financial Services · Depth: Expert, quick

Summary

DS@GT's submission to FinMMEval 2026 Task 1 addresses multilingual financial exam question answering across English, Spanish, Greek, Chinese, and Hindi. The system employs a retrieval-augmented pipeline built on LangGraph, which detects query language and retrieves semantically relevant exemplars from a 30,209-entry multilingual knowledge base using BGE-M3 embeddings and FAISS indexing. Answers are scored via Retrieval-Augmented Direct Scoring (RADS), which reads next-token log-probabilities over candidate option letters instead of generating free-form text. For low-resource languages, the system fuses per-language and cross-lingual retrieval indices using weighted Reciprocal Rank Fusion. Model selection is language-routed, utilizing Qwen3-14B for Arabic, Chinese, and Hindi; Qwen2.5-14B for English; and Llama-3.1-8B for Greek. Empirical ablations revealed significant language-asymmetric performance gaps, with chain-of-thought prompting degrading Greek accuracy from 90.7% to 20.9% and Qwen3's default thinking mode collapsing Arabic RADS performance.

Key takeaway

For NLP Engineers developing multilingual financial QA systems, you should prioritize language-aware design. Implement explicit language detection and route queries to empirically validated language-specific models like Qwen3-14B or Llama-3.1-8B. Consider Retrieval-Augmented Direct Scoring (RADS) for answer selection, as free-form generation or chain-of-thought prompting can significantly degrade accuracy in certain languages, such as Greek, where performance dropped from 90.7% to 20.9%.

Key insights

Effective multilingual financial QA requires language-aware retrieval, model routing, and deliberate scoring strategies.

Principles

Method

The system uses LangGraph for language detection, BGE-M3 embeddings with FAISS for retrieval from a 30,209-entry knowledge base, and Retrieval-Augmented Direct Scoring (RADS) for answer selection.

In practice

Topics

Best for: Research Scientist, AI Engineer, AI Scientist, Machine Learning Engineer, NLP Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by Computation and Language.