<!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>On the Relevant Set of Contexts for Evaluating Retrieval-Augmented Generation Systems</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Darío Garigliotti</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>University of Bergen</institution>
          ,
          <country country="NO">Norway</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>The recent interest in approaching more language and knowledge processing tasks via the Retrieval-Augmented Generation (RAG) framework allows for the consideration of evaluation criteria that can lead to a discrepancy in the way that the set of relevant results is determined for assessing retrieval-based performances. In this work, we describe and reflect on the consequences of such a discrepancy, and present basic results from experimentation over a RAG-based benchmark for Question Answering.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
    </sec>
    <sec id="sec-2">
      <title>2. The problem of determining the relevant set of contexts</title>
      <p>
        Let  denote the universe of all documents under consideration in a retrieval scenario. In our case,
this is an indexed collection of uniquely identified textual passages with respect to which the first RAG
stage, retrieval, obtains a ranking of contexts to use during its second stage, augmentation, to build
the prompt that elicits the last stage, generation. Given a question , a retrieval method  is used to
score documents from  and return a ranking () of the top  documents for . The question 
can be, among the most typical cases, a (primitive) query in the traditional sense within Information
Retrieval (IR), a wrapper of a primitive query that accompanies it in an augmented prompt asking
to the generator for ranking with respect to the query, or a question within a Question Answering
task for which the obtained answers are to be evaluated with some retrieval criteria (e.g. answer
recall, or exact matching, in QA [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]). The ranking () is evaluated with respect to a set of relevant
documents for , () ⊆  . For short, let us refer to this sets by  (the retrieved results) and 
(the relevant results), respectively. Two set-based metrics, precision ( ) and recall (), are typically
used as fundamental criteria to evaluate a retrieval system. They are defined, in terms of  and ,
as  = | ∩ |/|| and  = | ∩ |/||.
      </p>
      <p>Given the way that the relevant set is usually obtained when building a test collection, a selection of

 methods ℳ = {}=1 are used to retrieve a ranking for , specifically top  results with each
method . As typically the cut-of  =  for all , a maximum of  *  documents are pooled for
 and judged according to some relevance criteria. In the case of binary relevance, this leads to the
set  defined above, () = { ∈  :  is relevant to } = ⋃︀ , (), where , () is
the subset of documents in , () such that they are relevant to , and , () the top 
documents for  retrieved by  that were put in the pool to build .</p>
      <p>
        For simplicity, let us assume that (1) the method used during the retrieval phase of a RAG system 
is ′ ∈ ℳ, and let us also assume that (2) the top ′ results ranked by ′ is such that ′ &lt; . This
is a common situation since for test collections it is often the case that  = 100 or  = 1, 000 while
′ is way smaller, in the order of tens (e.g. a recently devised benchmark [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] uses ′ = 3, 5, 10 and 20).
From (1) and (2), it follows that (3) ′ = ′,′ () ⊊ . The ′ contexts in ′ are then used
to augment the prompt in the second RAG stage.
      </p>
      <p>When the prompt is finally input to the LLM in the third RAG stage, generation, the LLM, unlike
any of the methods in ℳ such as ′, does not consider  as the universe to retrieve from, but ′,
the set of contexts that it has seen or is aware of for . The rest of the documents in  that are
not seen during generation, this is,  − ′, cannot be retrieved by LLM.1 Hence, for any context
 ∈  − ′,  ∈/  (), with  () – , for short– the set of results returned by
the LLM in its generated answer. And because of (4)  ⊆ ′, then from it and (3) it follows
that (5)  ⊆ , and from this, (6)  ∩ ′ =  ∩ . This means that the
measurement of the performance of  (the LLM performance as a re-ranker of the augmented contexts
′) in terms of precision does not change if measured with respect to the original relevant set ,
 () = | ∩ ′|/| | = | ∩ |/| |. However, recall measurement
does change since the denominator in its expression changes from  to its proper subset ′.</p>
      <p>
        This discrepancy in the criterion over the relevant set of contexts has a direct efect in the entire
evaluation, since the use of  instead of ′ for recall-oriented measures involves to divide by a
larger size of relevant set and hence leads to observing an underperforming system. Recent literature
aimed to establish a benchmark [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] for vanilla instances of the RAG framework, for example, in a
paradigmatic task like QA, presents an evaluation within the -based criterion that we criticize in
our work. In the next section, we describe its methodology and demonstrate the discrepancy by the
means of experimental results with this benchmark.
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. Experimental results over ALCE benchmark</title>
      <p>
        The ALCE benchmark [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] studies RAG performance over three QA datasets. One of them, QAMPARI [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ],
requires to answer each question with one or more entities –in most cases, with multiple entities–
from a knowledge graph (KG) of reference. When asked via the augmented prompt to answer the
instance question, the surface form –with which each of the entities appear in one or more of the
retrieved contexts provided during augmentation– is to be found in the generated answer as an exactly
delimited substring. This evaluation metric is referred to as exact matching (EM) [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], and essentially
corresponds to a recall-oriented measurement where all the known relevant entities are contrasted
with those actually present, i.e. retrieved by the LLM as a re-ranker, in the generated answer.
      </p>
      <p>
        Within the family of QA problems, ALCE assesses the instantiation of attributed QA or self-supported
QA [
        <xref ref-type="bibr" rid="ref10 ref5">10, 5</xref>
        ], a task that seeks to answer a question and complement it with evidence cited from the
1Unless due to some hallucination that generates in the answer a (n identifier of a) context that has not seen in the prompt.
contexts that augment the prompt, in order to support the correctness of said answer. This citation of
the passages supporting the answer is evaluated with the basic set-oriented metrics of  and . It often
happens that when augmenting the prompt with only the top ′ = 5 or 10 of the retrieved contexts,
the RAG-based system is not providing the generator with a set of available contexts among which
all the relevant entities can be supported, but instead only a subset. As we analyze it in the previous
section, evaluating the recall-based measurements with respect to  (the set of relevant contexts for
the first RAG stage) can be misguiding in reporting the true performance when taking into account only
those contexts available at generation time. There are then two aspects of the performance that are
evaluated by a recall-based metric: answer recall and citation recall, i.e., two criteria possibly afected
by the discrepancy previously analyzed. For the latter metric, the phenomenon happens with  ,
the set of relevant contexts for the query at retrieval stage, and ′ , its subset when restricting it to
only the contexts used during augmentation. For the former, answer recall, an analogous situation is
led to by the set of known correct answers, , and the subset ′ induced by said set of relevant
contexts available during augmentation where correct answers appear.2
      </p>
      <p>
        We experiment with a setup for a naive RAG framework based on the setting used by ALCE [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
In a similar fashion as done previously for other tasks [
        <xref ref-type="bibr" rid="ref11 ref3">3, 11</xref>
        ], our experiments assess parameter
configurations in all the three stages, including, for example, the retrieval method and cut-of, the order
of passages from retrieval into augmentation and the number of shot examples, and the generator
model. The parameters, and the values experimented with for each of them, are all very similar to the
ones used in ALCE –in some cases identical, as it is the case for retrieval and generation parameters–.
A major distinction is in our prompt, that is longer than its ALCE counterpart and accounts for more
instructions, to better and more politely specify the expected answer. The main request in the prompt
for both the benchmark and our experiments is to answer the question and refer to the passages that
support such a response. In this way, our work is an approximation to reproduce part of the experiments
developed in the benchmark. We work with a selection of 60 questions from QAMPARI dataset, 20
from each of the three question groups (simple, intersection, and complex, all based on hopping criteria
over the KG of reference), selected to make all the possible parameter configurations meaningful. In
particular, we ensure that there is a relevant answer occurring in the top 3 (and so in the top 5 and 10)
retrieved passages for each method for each question.
      </p>
      <p>
        Table 1 reports our experimental results for configurations where the first RAG stage is performed
by a dense retriever and the prompt does two-shot learning with provided examples. The LLMs used
in these configurations are GPT-3.5 (gpt-3.5-turbo-0125) [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] and GPT-4 [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]. As we described in the
previous section, the performance in terms of precision is not afected by the involved factors, except
for a possible larger degree of non-determinism in an LLM that here is not required. Instead, for
recall-based measurements of answer and citation, we can observe that our obtained results when
considering, as in ALCE,  as the denominator of  are in the magnitude of the values reported in
ALCE. In the alternative evaluation w.r.t. ′ –bottom half of Table 1–, where the performance of
the LLM generation is assessed only with respect to the contexts that were available at prompting, the
performances are substantially higher and, as we argue, report a more principled assessment of the
respective RAG configuration.
      </p>
    </sec>
    <sec id="sec-4">
      <title>4. Conclusion</title>
      <p>This paper has reflected on the aspect of determining appropriately the set of relevant contexts with
which to evaluate the performance of a RAG system. Our observations call for considering its
determination in terms of the subset of retrieved contexts that is available during augmentation such that
the evaluation does not arrive to claim an underperforming method, while also uses a more principled
criterion.
2This is a simplification of the less likely, general case, where a context is deemed relevant by a first-pass retrieval method, i.e.
retrieved in ranking (), yet it does not support any relevant answer for .</p>
      <p>LLM
GPT-3.5
GPT-4
GPT-3.5
GPT-4
5
10
5
10
5
10
5
10</p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgments</title>
      <p>This work was funded by the Norwegian Research Council grant 329745 Machine Teaching for
Explainable AI.</p>
      <p>By ranking</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>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Küttler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lewis</surname>
          </string-name>
          , W.-t. Yih,
          <string-name>
            <given-names>T.</given-names>
            <surname>Rocktäschel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Riedel</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Kiela</surname>
          </string-name>
          ,
          <article-title>Retrieval-augmented generation for knowledge-intensive nlp tasks</article-title>
          ,
          <source>in: Advances in Neural Information Processing Systems</source>
          , volume
          <volume>33</volume>
          ,
          <string-name>
            <surname>Curran</surname>
            <given-names>Associates</given-names>
          </string-name>
          , Inc.,
          <year>2020</year>
          , pp.
          <fpage>9459</fpage>
          -
          <lpage>9474</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Y.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Xiong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Jia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Pan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Bi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Dai</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <surname>Retrieval-Augmented Generation for Large Language Models: A Survey</surname>
          </string-name>
          ,
          <year>2024</year>
          . arXiv:
          <volume>2312</volume>
          .
          <fpage>10997</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>D.</given-names>
            <surname>Garigliotti</surname>
          </string-name>
          ,
          <article-title>SDG target detection in environmental reports using retrieval-augmented generation with LLMs</article-title>
          , in: D.
          <string-name>
            <surname>Stammbach</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Ni</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Schimanski</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Dutia</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Singh</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Bingler</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Christiaen</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Kushwaha</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          <string-name>
            <surname>Muccione</surname>
            ,
            <given-names>S. A.</given-names>
          </string-name>
          <string-name>
            <surname>Vaghefi</surname>
          </string-name>
          , M. Leippold (Eds.),
          <source>Proceedings of the 1st Workshop on Natural Language Processing Meets Climate Change (ClimateNLP</source>
          <year>2024</year>
          ),
          <article-title>Association for Computational Linguistics</article-title>
          , Bangkok, Thailand,
          <year>2024</year>
          , pp.
          <fpage>241</fpage>
          -
          <lpage>250</lpage>
          . URL: https://aclanthology.org/
          <year>2024</year>
          .climatenlp-
          <volume>1</volume>
          .
          <fpage>19</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>N.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Zhang</surname>
          </string-name>
          , P. Liang,
          <article-title>Evaluating verifiability in generative search engines, in: Findings of the Association for Computational Linguistics: EMNLP 2023, Association for Computational Linguistics</article-title>
          , Singapore,
          <year>2023</year>
          , pp.
          <fpage>7001</fpage>
          -
          <lpage>7025</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>J.</given-names>
            <surname>Menick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Trebacz</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Mikulik</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Aslanides</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Song</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Chadwick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Glaese</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Young</surname>
          </string-name>
          , L.
          <string-name>
            <surname>Campbell-Gillingham</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Irving</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <article-title>McAleese, Teaching language models to support answers with verified quotes</article-title>
          ,
          <source>ArXiv abs/2203</source>
          .11147 (
          <year>2022</year>
          ). URL: https://api.semanticscholar.org/CorpusID: 247594830.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>S.</given-names>
            <surname>Es</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>James</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. Espinosa</given-names>
            <surname>Anke</surname>
          </string-name>
          , S. Schockaert,
          <article-title>RAGAs: Automated evaluation of retrieval augmented generation</article-title>
          , in: N.
          <string-name>
            <surname>Aletras</surname>
          </string-name>
          , O. De Clercq (Eds.),
          <article-title>Proceedings of the 18th Conference of the European Chapter of the Association for Computational Linguistics: System Demonstrations, Association for Computational Linguistics, St</article-title>
          . Julians, Malta,
          <year>2024</year>
          , pp.
          <fpage>150</fpage>
          -
          <lpage>158</lpage>
          . URL: https: //aclanthology.org/
          <year>2024</year>
          .eacl-demo.
          <volume>16</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>I.</given-names>
            <surname>Stelmakh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Luan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Dhingra</surname>
          </string-name>
          , M.-
          <string-name>
            <given-names>W.</given-names>
            <surname>Chang</surname>
          </string-name>
          , ASQA:
          <article-title>Factoid questions meet long-form answers</article-title>
          , in: Y.
          <string-name>
            <surname>Goldberg</surname>
            ,
            <given-names>Z.</given-names>
          </string-name>
          <string-name>
            <surname>Kozareva</surname>
          </string-name>
          , Y. Zhang (Eds.),
          <source>Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing</source>
          , Association for Computational Linguistics, Abu Dhabi, United Arab Emirates,
          <year>2022</year>
          , pp.
          <fpage>8273</fpage>
          -
          <lpage>8288</lpage>
          . URL: https://aclanthology.org/
          <year>2022</year>
          .emnlp-main.
          <volume>566</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2022</year>
          .emnlp-main.
          <volume>566</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>T.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Yen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <article-title>Enabling large language models to generate text with citations</article-title>
          , in: H.
          <string-name>
            <surname>Bouamor</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          Bali (Eds.),
          <source>Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing</source>
          , Association for Computational Linguistics, Singapore,
          <year>2023</year>
          , pp.
          <fpage>6465</fpage>
          -
          <lpage>6488</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>S.</given-names>
            <surname>Amouyal</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Wolfson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Rubin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Yoran</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Herzig</surname>
          </string-name>
          ,
          <string-name>
            <surname>J. Berant,</surname>
          </string-name>
          <article-title>QAMPARI: A benchmark for open-domain questions with many answers</article-title>
          , in: S. Gehrmann,
          <string-name>
            <given-names>A.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Sedoc</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Clark</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Dhole</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K. R.</given-names>
            <surname>Chandu</surname>
          </string-name>
          , E. Santus, H. Sedghamiz (Eds.),
          <source>Proceedings of the Third Workshop on Natural Language Generation</source>
          , Evaluation, and
          <string-name>
            <surname>Metrics</surname>
          </string-name>
          (GEM),
          <article-title>Association for Computational Linguistics</article-title>
          , Singapore,
          <year>2023</year>
          , pp.
          <fpage>97</fpage>
          -
          <lpage>110</lpage>
          . URL: https://aclanthology.org/
          <year>2023</year>
          .gem-
          <volume>1</volume>
          .9.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>B.</given-names>
            <surname>Bohnet</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Tran</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Verga</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Aharoni</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Andor</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. B.</given-names>
            <surname>Soares</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ciaramita</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Eisenstein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Ganchev</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Herzig</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Hui</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Kwiatkowski</surname>
          </string-name>
          , J. Ma, J. Ni,
          <string-name>
            <given-names>T.</given-names>
            <surname>Schuster</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L. S.</given-names>
            <surname>Saralegui</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W. W.</given-names>
            <surname>Cohen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Collins</surname>
          </string-name>
          ,
          <string-name>
            <surname>D. Das</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          <string-name>
            <surname>Metzler</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Petrov</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Webster</surname>
          </string-name>
          ,
          <article-title>Attributed question answering: Evaluation and modeling for attributed large language models</article-title>
          ,
          <year>2022</year>
          . URL: https://arxiv.org/abs/2212.08037.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>D.</given-names>
            <surname>Garigliotti</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Johansen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. V.</given-names>
            <surname>Kallestad</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.-E.</given-names>
            <surname>Cho</surname>
          </string-name>
          , C. Ferri,
          <article-title>EquinorQA: Large Language Models for Question Answering over proprietary data</article-title>
          ,
          <source>in: ECAI 2024 - 27th European Conference on Artificial Intelligence - Including 13th Conference on Prestigious Applications of Intelligent Systems (PAIS</source>
          <year>2024</year>
          ), IOS Press,
          <year>2024</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>A.</given-names>
            <surname>Radford</surname>
          </string-name>
          ,
          <string-name>
            <surname>J. Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Child</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Luan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Amodei</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Sutskever</surname>
          </string-name>
          ,
          <article-title>Language models are unsupervised multitask learners</article-title>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13] OpenAI, GPT-4
          <source>Technical Report</source>
          ,
          <year>2024</year>
          . arXiv:
          <volume>2303</volume>
          .
          <fpage>08774</fpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>