<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>GraphRAG with Knowledge Graphs for Question Answering on Administrative Meeting Records</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Kumi Ushio</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Daichi Tsuji</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yohei Kobashi</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Kyoto Prefectural government</institution>
          ,
          <addr-line>Yabunouchi-cho, Nishiiru, Shinmachi, Shimodachiuri-dori, Kamigyo-ku, Kyoto-shi, Kyoto 602-8570</addr-line>
          ,
          <country country="JP">Japan</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>The University of Tokyo</institution>
          ,
          <addr-line>7-3-1 Hongo, Bunkyo-ku, Tokyo 113-0033</addr-line>
          ,
          <country country="JP">Japan</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This study introduces a GraphRAG-based question-answering system for Japanese administrative meeting minutes, addressing challenges in accessing policy-related information. Using the minutes from Japan's Financial Services Agency, we constructed a lightweight ontology-aware knowledge graph capturing participants, meetings, and utterances, and integrated it with LLMs. The system applies a GraphRAG approach, leveraging graph-based context expansion to integrate related nodes and enrich contextual understanding, combined with dynamic tool selection to support multi-step reasoning. Evaluation with questions showed high accuracy for both simple retrieval and relation-exploration queries. Future work includes improving retrieval accuracy, developing domain-specific ontologies, automating tool generation, and deploying the system as an interactive application.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Graph RAG</kwd>
        <kwd>knowledge graph</kwd>
        <kwd>administrative text</kwd>
        <kwd>meeting minutes</kwd>
        <kwd>question answering</kwd>
        <kwd>sustainable finance 1</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>Councils of the Japanese government and study groups involve diverse stakeholders, and their
meeting minutes contain essential information for understanding how policy decisions are
formulated. While these minutes are disclosed to enhance transparency in administrative activities
and decision-making processes, their lack of standardized formats hinders effective search and
utilization. To understand the context and intent of policy decisions, advanced methods for
information extraction, retrieval, and analytical support are required.</p>
      <p>
        Recent years show growing interest in integrating large language models (LLMs) with external
knowledge for search and generation [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ][
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Traditional Retrieval-Augmented Generation (RAG)
mainly uses vector-based retrieval to identify semantically similar text fragments and feed them into
generative models, but faces limitations in capturing complex inter-textual relationships and
structural context. Against this backdrop, Graph Retrieval-Augmented Generation (GraphRAG)
emerged as a promising approach [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. GraphRAG structures entities and relations as a knowledge
graph and operates through three stages: indexing, retrieval, and generation [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. This approach
improves contextual coherence and supports multi-hop reasoning and relational understanding.
Recent surveys reviewed GraphRAG’s architecture and highlighted its applications across domains
like question answering, report generation, legal analysis, and scientific research, while identifying
challenges including scalability and multimodal integration [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. However, most existing studies have
focused on English encyclopedic texts and domain-specific documents such as legal, medical, and
scientific texts, with few reports on the application of GraphRAG to non-English policy documents
or administrative meeting records [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ][
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. These documents include meeting-level context,
inter-speaker relationships, and temporal structures, which make simple keyword or vector-based
retrieval struggle to achieve sufficient accuracy.
      </p>
      <p>In this study, we target the meeting minutes of the “Expert Panel on Sustainable Finance,”
disclosed by Japan’s Financial Services Agency (FSA), which oversees financial administration in
Japan. Based on metadata attached to individual utterances, we construct a knowledge graph and
integrate it with a large language model to design and prototype a question-answering system.
Unlike conventional semantic retrieval approaches, the proposed system employs graph-based
context expansion, leveraging relationships among nodes in the knowledge graph, and aims to
generate coherent responses to natural language queries that account for the connections among
utterances, meetings, and participants.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Construction of the Minutes Knowledge Graph</title>
      <p>This study builds a knowledge graph from transcripts of the Japanese FSA’s “Sustainable Finance
Expert Panel” for integration with a GraphRAG-based Question Answering (QA) system, while also
supporting analyses such as discourse structure and speaker networks. The graph is designed to
preserve the semantic structure of the data while ensuring extensibility for future reasoning and
interoperability.</p>
      <p>The model consists of three node types—Person, Utterance, and Meeting—and three edge
types—made_statement, participated_in, and occurred_in. Person nodes represent meeting
participants and include attributes such as name, organization, and position. Utterance nodes
represent individual statements made during meetings, retaining speech content as their main
attribute. Meeting nodes represent individual meetings, including attributes such as date and fiscal
year. Edges capture the semantic relationships between entities: made_statement links a person to
their utterances, participated_in links a person to meetings, and occurred_in links utterances to
meetings.</p>
      <p>
        The design follows a lightweight ontology-aware approach that ensures semantic consistency
and aligns well with established vocabularies such as FOAF and Schema.org [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ][
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. For example,
Person nodes can map to foaf:Person, Meetings to Event, and Utterances to Speech or CreativeWork.
Relationship types can correspond to existing terms such as attendee or partOfEvent, enabling
future integration into Linked Open Data ecosystems. This structure allows for future extensions,
including hierarchical categorization of meetings, temporal reasoning over utterances, and
interoperability with other meeting datasets. Beyond network representation, the approach provides
a semantically grounded model, supporting advanced analysis and knowledge-based reasoning.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Design of the Question Answering System</title>
      <p>The proposed QA system is designed to analyze structured meeting minutes of expert panels on
sustainable finance, combining flexibility for natural language queries with precision in retrieving
relevant information. Its graph-based architecture represents entities such as Persons, Meetings, and
Utterances as nodes and edges, capturing semantic relationships. This graph-centric foundation
supports both reasoning and advanced analytics.</p>
      <p>
        The system begins by loading node and edge data and building a MultiDiGraph using the
NetworkX library. Each node retains metadata, such as names, organizational affiliations, roles,
dates, and content [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ]. The graph structure captures relations like ‘spoke at’ or ‘participated in,’
linking utterances to speakers and meetings for reasoning. To support question answering, the
system integrates GPT-4o via LangChain’s agent-based framework [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]. The agent uses a custom
prompt to plan queries and select tools instead of relying solely on text generation. This enables the
system to execute analytical tasks such as ranking, filtering, and keyword-based search that require
precise computation. A comprehensive set of tools is implemented to support various functions,
from retrieving meetings and participants to performing statistical and network-based analyses. The
system can identify highly active participants by analyzing utterance frequency, detect thematic
engagement through keyword filtering, and uncover co-occurrence patterns to map collaboration.
One distinctive feature is its ability to construct co-attendance networks and compute centrality
measures—such as betweenness, eigenvector, and degree—to highlight influential participants.
Additionally, it allows temporal and semantic filtering for targeted content extraction, supporting
trend analysis and thematic exploration.
      </p>
      <p>This pipeline processes user queries by dynamically invoking tools, aggregating results, and
producing responses in natural language. By combining symbolic graph reasoning with LLM
interpretation, the system ensures responses are accurate, interpretable, and grounded in verifiable
data.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Response Experiments and Discussion</title>
      <p>To evaluate the proposed QA system, we created 50 questions based on the meeting minutes of the
“Expert Panel on Sustainable Finance” published by Japan’s FSA and applied them to the system for
performance assessment. The questions reflected diverse user needs for meeting minutes, ranging
from simple retrieval-oriented queries to those requiring multi-step reasoning that integrates
information about participants, meetings, and utterances (Table 1). Answer correctness was assessed
manually.</p>
      <p>Table 2 summarizes the results. In addition to achieving high accuracy for simple retrieval
questions, the system also performed well on relation-exploration questions. Because accuracy and
F1 score were identical in this evaluation, accuracy was adopted as the primary metric. The
proposed system demonstrated an advantage in handling complex queries by leveraging tool
selection and step-by-step reasoning via a LangChain agent, enabling deductive responses utilizing
structured data. However, for queries requiring exhaustive answers, response time tended to
increase, indicating that optimizing interaction costs remains an open issue. Furthermore, the
current system relies on manual addition and design of tools; therefore, future work should focus on
enhancing generalizability through automated tool generation and integration with SPARQL.
BaselineNgram/BaselineNgram+LLM</p>
      <p>BM25/BM25+LLM
BM25+Graph/BM25+Graph+LLM
VectorEmbed/VectorEmbed+LLM
Vector+Graph/Vector+Graph+LLM</p>
      <p>RRF(BM25+TFIDF+Ngram)/
RRF(BM25+TFIDF+Ngram)+LLM</p>
      <p>GraphRAG-Hybrid/</p>
      <p>GraphRAG-Hybrid+LLM</p>
      <p>GraphRAG-HardenedHybrid/
GraphRAG-HardenedHybrid+LLM</p>
      <p>GraphRAG-Seed+Neighbor/
GraphRAG-Seed+Neighbor+LLM</p>
      <p>Ontology-aware GraphRAG
(adopted approach)</p>
      <p>
        To strengthen the evaluation, we additionally conducted comparative experiments across ten
groups of retrieval methods covering both classical and graph-based approaches. These include:
BM25 (with/without Graph and LLM integration) [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ], n-gram baselines [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ], vector-based methods
(VectorEmbed, Vector+Graph) [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], hybrid retrieval with reciprocal rank fusion (RRF) [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ], multiple
GraphRAG variants (Hybrid, HardenedHybrid, Seed+Neighbor) [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ], and the ontology-aware
GraphRAG approach we adopted [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ].
      </p>
      <p>To carry out these comparative experiments, we prepared an evaluation tool that computes both
retrieval and generation metrics for all method groups. Retrieval performance was measured at the
utterance level using Recall@10, Precision@10, and Hit Rate@10. Generation quality was evaluated
with Faithfulness, Groundedness, and Coherence, while LLM-based judgment functions were
additionally applied to automatically score outputs. Finally, overall correctness was captured with
Exact Match Accuracy.</p>
      <p>The Ontology-aware GraphRAG (adopted approach) achieved the highest performance, with
exact match accuracy at 0.48 and superior generation quality (faithfulness 0.933, coherence 0.874,
answer score 0.968), clearly outperforming all baselines despite weaker recall and precision (Table 3).
BM25 (with/without LLM) provided the most stable retrieval strength, leading in Recall@10 and
Precision@10, though its exact match accuracy remained low (0.02), confirming its role as a reliable
baseline. RRF (BM25+TFIDF+Ngram) further enhanced recall and hit rate relative to BM25,
validating hybrid retrieval, but still exhibited low correctness and mid-level generation. Vector-based
and GraphRAG variants showed limited gains, and BaselineNgram performed the worst. Overall,
structured ontology-aware graphs proved decisive for trustworthy QA.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Conclusion and Future Work</title>
      <p>This paper presents ongoing work on constructing a knowledge graph from meeting minutes and
applying GraphRAG to Japanese administrative texts, with the aim of improving comprehensibility
in discussions and policy-making at national-level meetings. We introduced a graph-based QA
system that integrates this knowledge graph with LLMs to support policy-related information
retrieval and analysis. Focusing on the “Expert Panel on Sustainable Finance” minutes published by
Japan’s Financial Services Agency, we developed a lightweight ontology-oriented graph that
captures relationships among participants, utterances, and meetings. The proposed system employs
graph-based context expansion combined with dynamic tool selection and stepwise reasoning,
enabling coherent responses that leverage both structured and unstructured information.</p>
      <p>Evaluation using a diverse set of questions demonstrated that the system achieves high accuracy
for both simple retrieval and relation-exploration queries, highlighting the benefits of incorporating
graph reasoning into QA workflows. However, the results also revealed limitations, including
increased response time for exhaustive queries and the reliance on manually configured tools, which
constrain scalability and adaptability.</p>
      <p>In the future, we plan to improve retrieval and response generation accuracy through advanced
ranking methods and context-aware retrieval strategies. Additionally, we are working on enhancing
semantic richness by developing or aligning with domain-specific ontologies to enable deeper
reasoning, semantic interoperability, and potential integration into Linked Open Data ecosystems.
Other directions include automated tool generation, SPARQL integration for structured querying,
and latency reduction strategies to optimize interaction costs. We also aim to extend the system to
support multimodal datasets and to deploy it as an interactive application to facilitate usability
testing and practical adoption. Ultimately, the goal is for this system to be deployed and utilized not
only in various national-level conferences but also across local governments in Japan. Collectively,
these enhancements aim to advance knowledge-driven QA for policy documents and administrative
records. We hope this work will share key insights and generate valuable feedback from the research
community.</p>
    </sec>
    <sec id="sec-6">
      <title>Declaration on Generative AI</title>
      <p>During the preparation of this work, the authors used ChatGPT in order to: Grammar and spelling
check, Paraphrase and reword. After using this tool/service, the authors reviewed and edited the
content as needed and take full responsibility for the publication’s content.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>P.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Perez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Piktus</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Petroni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Karpukhin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Goyal</surname>
          </string-name>
          , et al.,
          <article-title>Retrieval-augmented generation for knowledge-intensive NLP tasks</article-title>
          ,
          <source>in: Advances in Neural Information Processing Systems (NeurIPS)</source>
          ,
          <year>2020</year>
          . URL: https://arxiv.org/abs/
          <year>2005</year>
          .11401.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>R.</given-names>
            <surname>Bommasani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. A.</given-names>
            <surname>Hudson</surname>
          </string-name>
          , E. Adeli,
          <string-name>
            <given-names>R.</given-names>
            <surname>Altman</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Arora</surname>
          </string-name>
          ,
          <string-name>
            <surname>S.</surname>
          </string-name>
          <article-title>von</article-title>
          <string-name>
            <surname>Arx</surname>
          </string-name>
          , et al.,
          <article-title>On the opportunities and risks of foundation models</article-title>
          ,
          <source>arXiv preprint arXiv:2108.07258</source>
          (
          <year>2021</year>
          ). URL: https://arxiv.org/abs/2108.07258.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>D.</given-names>
            <surname>Edge</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Trinh</surname>
          </string-name>
          , N. Cheng, J.
          <string-name>
            <surname>Bradley</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Chao</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Mody</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Truitt</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Larson</surname>
          </string-name>
          ,
          <article-title>From local to global: A graph RAG approach to query-focused summarization</article-title>
          ,
          <source>arXiv preprint arXiv:2404.16130</source>
          (
          <year>2024</year>
          ). URL: https://arxiv.org/abs/2404.16130.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>B.</given-names>
            <surname>Peng</surname>
          </string-name>
          , et al.,
          <article-title>Graph retrieval-augmented generation: A survey</article-title>
          ,
          <source>arXiv preprint arXiv:2408.08921</source>
          (
          <year>2024</year>
          ). URL: https://arxiv.org/abs/2408.08921.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>H.</given-names>
            <surname>Han</surname>
          </string-name>
          , et al.,
          <article-title>Retrieval-augmented generation with graphs (GraphRAG)</article-title>
          ,
          <source>arXiv preprint arXiv:2501.00309</source>
          (
          <year>2024</year>
          ). URL: https://arxiv.org/abs/2501.00309.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>T. T.</given-names>
            <surname>Procko</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Ochoa</surname>
          </string-name>
          ,
          <article-title>Graph retrieval-augmented generation for large language models: A survey</article-title>
          , in: 2024 Conference on AI, Science, Engineering, and
          <string-name>
            <surname>Technology</surname>
          </string-name>
          (AIxSET), IEEE,
          <year>2024</year>
          , pp.
          <fpage>166</fpage>
          -
          <lpage>169</lpage>
          . doi:
          <volume>10</volume>
          .1109/AIxSET60776.
          <year>2024</year>
          .
          <volume>10771030</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Q.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , S. Chen,
          <string-name>
            <given-names>Y.-Q.</given-names>
            <surname>Bei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yuan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Hong</surname>
          </string-name>
          , et al.,
          <article-title>A survey of graph retrieval-augmented generation for customized large language models</article-title>
          ,
          <source>arXiv preprint arXiv:2501.13958</source>
          (
          <year>2025</year>
          ). URL: https://arxiv.org/abs/2501.13958.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>FOAF</given-names>
            <surname>Vocabulary</surname>
          </string-name>
          <article-title>Specification</article-title>
          . URL: http://xmlns.com/foaf/spec/.
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <surname>Schema</surname>
          </string-name>
          .org, Schema.org vocabulary. URL: https://schema.org/.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>E.</given-names>
            <surname>Hagberg</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Schult</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Swart</surname>
          </string-name>
          ,
          <article-title>Exploring network structure, dynamics, and function using NetworkX</article-title>
          ,
          <source>in: Proceedings of the 7th Python in Science Conference (SciPy)</source>
          ,
          <year>2008</year>
          , pp.
          <fpage>11</fpage>
          -
          <lpage>15</lpage>
          . URL: https://proceedings.scipy.org/
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <article-title>LangChain, LangChain documentation</article-title>
          . URL: https://www.langchain.com/.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>S.</given-names>
            <surname>Robertson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Zaragoza</surname>
          </string-name>
          ,
          <article-title>The probabilistic relevance framework: BM25 and beyond</article-title>
          ,
          <source>Foundations and Trends in Information Retrieval</source>
          <volume>3</volume>
          (
          <issue>4</issue>
          ) (
          <year>2009</year>
          )
          <fpage>333</fpage>
          -
          <lpage>389</lpage>
          . doi:
          <volume>10</volume>
          .1561/1500000019.
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>P. F.</given-names>
            <surname>Brown</surname>
          </string-name>
          , P. V. deSouza,
          <string-name>
            <given-names>R. L.</given-names>
            <surname>Mercer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V. J. Della</given-names>
            <surname>Pietra</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. C.</given-names>
            <surname>Lai</surname>
          </string-name>
          ,
          <article-title>Class-based n-gram models of natural language</article-title>
          ,
          <source>Computational Linguistics</source>
          <volume>18</volume>
          (
          <issue>4</issue>
          ) (
          <year>1992</year>
          )
          <fpage>467</fpage>
          -
          <lpage>479</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>V.</given-names>
            <surname>Karpukhin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Oguz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Min</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Edunov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Chen</surname>
          </string-name>
          , W. Yih,
          <article-title>Dense passage retrieval for open-domain question answering</article-title>
          ,
          <source>in: Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)</source>
          ,
          <year>2020</year>
          , pp.
          <fpage>6769</fpage>
          -
          <lpage>6781</lpage>
          . URL: https://arxiv.org/abs/
          <year>2004</year>
          .04906.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>G. V.</given-names>
            <surname>Cormack</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. R.</given-names>
            <surname>Clarke</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Buettcher</surname>
          </string-name>
          ,
          <article-title>Reciprocal rank fusion outperforms Condorcet and individual rank learning methods</article-title>
          ,
          <source>in: Proceedings of the 32nd International ACM SIGIR Conference on Research and Development in Information Retrieval (SIGIR)</source>
          ,
          <year>2009</year>
          , pp.
          <fpage>758</fpage>
          -
          <lpage>759</lpage>
          . doi:
          <volume>10</volume>
          .1145/1571941.1572114.
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>Ontology-constrained graph retrieval-augmented generation</article-title>
          ,
          <source>arXiv preprint arXiv:2412.15235</source>
          (
          <year>2024</year>
          ). URL: https://arxiv.org/abs/2412.15235.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>J.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Chen</surname>
          </string-name>
          , L. Wu,
          <article-title>Constrained knowledge graph construction for retrieval-augmented generation</article-title>
          ,
          <source>arXiv preprint arXiv:2502.18992</source>
          (
          <year>2025</year>
          ). URL: https://arxiv.org/abs/2502.18992.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>