<!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>Chain-of-Thought to Enhance Document Retrieval in Certified Medical Chatbots</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Leonardo Sanna</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Simone Magnolini</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Patrizio Bellan</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Saba Ghanbari Haez</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Marina Segala</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Monica Consolandi</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Mauro Dragoni</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Fondazione Bruno Kessler</institution>
          ,
          <addr-line>Trento</addr-line>
          ,
          <country country="IT">ITALY</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Free University of Bozen</institution>
          ,
          <addr-line>Bozen</addr-line>
          ,
          <country country="IT">ITALY</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>We propose a Retrieval-Augmented Generation pipeline aimed at retrieving certified medical information. Inspired by the recently introduced Hypothetical Document Embeddings framework, we use the LLM to generate a document to query our certified repository. Although showing promising results in the first user evaluation, the proposed pipeline sometimes fails to retrieve the correct documents. We therefore propose a second Chain-of-thought-inspired pipeline to enhance the generation of the Hypothetical Document and, consequently, the retrieval of the certified documents.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Conversational Agent</kwd>
        <kwd>Digital Health</kwd>
        <kwd>Chain-of-Thought</kwd>
        <kwd>Certified Information</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        The Hypothetical Document Embeddings (HyDE)
framework has been recently introduced as an efective method
to build dense retrievers completely unsupervised [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. The
key idea behind HyDE is to leverage the Large Language
Model (LLM) creative abilities to generate a Hypothetical
Document (HyDoc) which is then used to retrieve a real
document in a repository.
      </p>
      <p>Hence, HyDE is particularly well-suited for building
medical chatbots that operate with“certified information ”, i.e.
conversational agents capable of providing trustworthy
information that has been created or verified by domain
experts such as physicians or other healthcare professionals
in the digital health industry</p>
      <p>To provide “certified information ”, the chatbot’s reply
must be predetermined, namely that we have a predefined
set of answers for each specific question. The existing lack
of conversational datasets in the medical domain, however,
poses a substantial challenge in creating a certified
medical chatbot. To tackle this issue, we devised a
RetrievalAugmented Generation (RAG) pipeline within the HyDE
framework so that we could benefit from the conversational
capabilities of an LLM and, at the same time, exploit the
LLM to retrieve the certified sources supporting the reply.</p>
      <p>We believe that adopting HyDE addresses two major
issues of RAG pipelines. First of all, we are trying to build a
FAQ-based chatbot, therefore most of the interactions with
the patients would be short questions. In a FAQ-oriented
conversational agent, using a simple naive-RAG pipeline the
user query would employed to retrieve the certified sources.
Yet, since we are operating with vector databases, the vector
representation of the query might be significantly distant
from the certified documents in the semantic space, yielding
a remarkable risk of excluding relevant documents in the
retrieval process.</p>
      <p>
        Moreover, in a digital health context, it is important to
keep our certified medical chatbot explainable [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. RAG
approaches add a further layer of algorithmic opacity since
the user is unaware of the documents used to generate the
reply. Therefore, on the one hand, we use the retrieved
document to produce a well-grounded and informed reply,
while on the other hand, we provide the certified sources
that have been retrieved, computing the similarity with the
HyDoc.
      </p>
      <p>
        Nonetheless, the quality of the generated HyDoc remains
a substantial issue in medical domains. Although LLMs have
shown impressive results in addressing medical queries [
        <xref ref-type="bibr" rid="ref3 ref4 ref5">3,
4, 5</xref>
        ], relying on the sole abilities of the LLM might result in
generating inaccurate or low-quality HyDocs.
      </p>
      <p>In fact, in a first user evaluation of our proposed modular
pipeline, we found evidence that the retrieval step might be
problematic when encountering specific types of questions,
e.g. evaluative questions. This paper therefore introduces
the main challenges we found in developing a modular RAG
pipeline in a certified context. In particular, we focus on
the proposal of a Chain-of-thought-inspired pipeline to
enhance the HyDoc generation and, consequently, improve
the retrieval of the certified sources.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Related work</title>
      <p>
        LLMs’ credibility and efectiveness are crucial in AI research,
especially in areas like digital health and wellbeing that
require precision and reliability [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. RAG and Chain of
Thought (CoT) prompting are highly efective in reducing
hallucinations and enhancing factual content generation in
LLMs by integrating external knowledge.
      </p>
      <p>
        RAG integrates external knowledge into LLMs’ prompts
through data retrieval using parametric and non-parametric
memory [
        <xref ref-type="bibr" rid="ref7 ref8">7, 8</xref>
        ]. It has been shown that RAG outperforms
parametric-only seq2seq models in tasks like Question
Answering (QA) and summarization, improving text
generation [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ].
      </p>
      <p>
        Various approaches have been explored to advance QA
systems. For instance, the work [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ] involves a two-stage
process that combines Dense Passage Retrieval (DPR) with
generative sequence-to-sequence LMs. Other examples are
the iterative integration of retrieval and generation [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ], a
combination of retrieval and generation techniques for
informative answers [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ], and dynamic real-time retrieval during
generation [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ]. Other approaches include techniques to
improve the accuracy of language models integrating external
knowledge [
        <xref ref-type="bibr" rid="ref14 ref15">14, 15</xref>
        ], as well as advancing implicit reasoning
and adaptability in QA tasks [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ].
      </p>
      <p>
        On the other hand, CoT methods have been highly
efective in improving LLMs’ ability to handle complex reasoning
tasks, such as those that involve heterogeneous data from
tables and questions [
        <xref ref-type="bibr" rid="ref16 ref17 ref18">16, 17, 18</xref>
        ]. Some recent studies have
shown that breaking down problems into manageable steps
significantly enhances LLMs’ performance in complex
reasoning tasks [
        <xref ref-type="bibr" rid="ref16 ref19 ref20">16, 19, 20</xref>
        ].
      </p>
      <p>
        The work of [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ] refines self-consistency decoding for
broader applications like translation strategies and
sentiment analysis, while [
        <xref ref-type="bibr" rid="ref22">22</xref>
        ] introduces the Zero-shot-CoT
approach, a technique to improve LLM performance on diverse
reasoning tasks, without hand-crafted few-shot examples.
      </p>
      <p>
        Finally, we should mention the Tree of Thoughts (ToT)
framework [
        <xref ref-type="bibr" rid="ref23">23</xref>
        ], which has a particularly relevant approach
for QA, namely the Probabilistic Tree-of-thought
Reasoning (ProbTree) [
        <xref ref-type="bibr" rid="ref24">24</xref>
        ]. This approach breaks down QA into
two stages, understanding and reasoning, to solve retrieval
issues and prevent error propagation.
      </p>
      <p>Despite the high research interest and the diversity of
approaches both in RAG and CoT, there are currently no
studies focusing on certified medical chatbots. Moving within
the HyDE framework, we believe that we can employ CoT
techniques to improve the generation of the Hypothetical
Document that would be then used as the query to retrieve
the certified documents.</p>
    </sec>
    <sec id="sec-3">
      <title>3. Dataset</title>
      <p>In our dataset, we have three certified sources. We have (i)
179 informational cards, which were created by the
Obstetrician Department of the Hospital of Trento (Italy). Then we
have 953 documents from (ii) UPPA, a medical webzine, and
380 documents from (iii) ISS-Salute, which is the
informative website of the Istituto Superiore di Sanità - ISS (Italian
National Institute of Health).</p>
      <p>It is important to highlight that the dataset we have is
not conversational, nor it is meant to be used in a medical
chatbot. All sources are what we might call content made
for FAQ sections. Therefore, it is often quite verbose and
dense in information. All the data we have is unstructured
text, with a notable stylistic heterogeneity within the same
source. This characteristic is combined with the semantic
homogeneity given by the specific medical domain, creating
a substantial issue for automatic topic extraction.</p>
      <p>Finally, we should recall that content editing is not
permitted due to the certified nature of our information. Since
each specific question should consistently correspond to a
particular set of equivalent answers., it becomes essential
the adoption of modular RAG solutions.</p>
    </sec>
    <sec id="sec-4">
      <title>4. Methods</title>
      <p>In this section, we will explain the methods used in our
implementation. Our first implementation was a sort of
zeroshot implementation since we generated the HyDoc only
relying on LLM knowledge, without providing any other
context. This solution is shown in Figure 1. We assessed
the performance of this first implementation by doing a
user evaluation. The technology presented in this section is
the same used for the second implementation illustrated in
Section 5.</p>
      <p>In this work, we used GPT-4-turbo (gpt-4-0125-preview
specifically) as LLM. However, our pipeline is intended as
LLM-agnostic. The use of OpenAI-GPT has, therefore, been
intended as a convenient solution to test our RAG pipeline
using a stable and well-performing LLM. Indeed, to deploy
a conversational assistant in a real-case scenario, an
opensource model would likely be required due to cost and
privacy issues in accessing any LLM via API.
4.1. A first (zero-shot) implementation</p>
      <p>Our approach employs a modular RAG framework
designed to address the challenge of delivering natural, verified
responses through a medical chatbot by leveraging
unstructured data. To achieve this, we create a HyDoc in response
to the user’s questions.</p>
      <p>
        The essence of our strategy lies in enhancing the
document retrieval process with the HyDoc. Despite the
potential for inaccuracies and hallucinations, the LLM is expected
to discern the fundamental aspects of the query and identify
textual patterns pertinent to the specific domain of
knowledge. Given the proven eficacy of LLMs in fielding medical
queries [
        <xref ref-type="bibr" rid="ref3 ref4 ref5">3, 4, 5</xref>
        ], the HyDoc is anticipated to closely align
with genuine documents that provide accurate, verified
responses to the user’s question.
      </p>
      <p>
        To query our verified document repository, we utilize the
sentence embeddings generated from our HyDoc. The area
of general-purpose sentence embeddings remains an active
ifeld of research [
        <xref ref-type="bibr" rid="ref25">25</xref>
        ], in contrast to the more established
universal word embedding techniques like word2vec [
        <xref ref-type="bibr" rid="ref26">26</xref>
        ]. Our
workflow incorporates the
paraphrase-multilingual-mpnetbase-v2 Bi-Encoder model [
        <xref ref-type="bibr" rid="ref27">27</xref>
        ] for generating embeddings
of both the HyDoc and the verified data.
      </p>
      <p>This model introduces a pooling operation to produce a
ifxed-size embedding vector normalized to a size of 1.00.
These vectors are then compared using cosine similarity.
However, the Bi-Encoder model encounters challenges in
accurately comparing documents of varying lengths, which
can lead to the retrieval of irrelevant documents due to the
disparity in length between our HyDocs and the documents
in the repository.</p>
      <p>To address this issue, we employ the
ms-marco-MiniLML-6-v2 cross encoder 1. Unlike the Bi-Encoder which uses
separate encoders for each input, the cross-encoder
processes pairs of sentences through a single shared encoder,
1https://huggingface.co/cross-encoder/ms-marco-MiniLM-L-6-v2
producing a joint representation that is evaluated by a
classifier to yield a similarity score between the texts.</p>
      <p>
        Given the computational demands of the Cross-Encoder,
it is applied selectively to a shortlist of potential documents.
Following the computation of cosine similarity across all
HyDoc-document pairs &lt;HyDoc, &gt;, where  ranges from
1 to  and  represents the ℎ document in the verified
repository, we rank and select the top 50 documents for their
relevance. This guarantees to have an acceptable number of
documents from an information retrieval perspective [
        <xref ref-type="bibr" rid="ref28">28</xref>
        ].
Subsequently, the top 3 documents from this refined list are
chosen to augment the original prompt, enhancing the text
of the final response provided to the user. This decision is
based on preliminary tests indicating that using more than
three documents could negatively impact the framework’s
efectiveness.
      </p>
      <p>Finally, a Guard-Rail module 2 is implemented to ensure
the response generated by the LLM adheres to the specified
prompt length, incorporating generated text and references
to the three selected certified documents in the final answer.</p>
      <p>An initial user evaluation of our zero-shot model was
conducted using 100 questions related to pregnancy, deemed
representative by expert reviewers. This evaluation focused
on seven metrics: {Q1} the relevance of the answer to the
question, {Q2} the relevance of the links (documents)
provided, {Q3} text quality, {Q4} reliability, {Q5} clarity, {Q6}
completeness, and {Q7} an overall evaluation score.
According to Table 1, while the model demonstrated potential in
text quality, it highlighted the need for improved document
retrieval, as evidenced by the document link relevance
scoring an average of 0.44. This value demonstrates that there
is still room for improvement, but on average, half of the
documents included in the links sent to the users have been
considered fully relevant.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Towards a CoT pipeline</title>
      <p>As shown in Section 4, our first implementation has
substantial room for improvement in the retrieval step. In particular,
we noticed a decline in the link relevance evaluation
regarding a particular type of question, i.e., evaluative questions.
Evaluative questions are quite common in the medical
domain and they represent the 23% of the dataset within the
user evaluation we performed. In a nutshell, they are
inquiries that need direct feedback on a particular aspect (e.g.,
“Why I am feeling so tired?”). In this case, the average link
2Refer to Mangaokar et al. https://arxiv.org/abs/2402.15911 for an
example
relevance is 0.31, whereas non-evaluative questions have a
0.48 average link relevance.</p>
      <p>We argue that the worse performance on evaluative
questions is mostly because generating an evaluative answer
might be complex for the LLM also. Moreover, the HyDoc
generate would likely be a punctual reply on the precise
aspect, since this is the expected natural reply in a
conversation. Since we are retrieving full documents, it might be
that the vector representation of an evaluative HyDoc is
quite distant from the original document where we can find
the reply.</p>
      <p>Therefore, we are annotating our dataset to enable the
retrieval of shorter text segments. The idea is that we can
split our documents into shorter and more meaningful
segments to ease the retrieval step and enhance the generation
part.</p>
      <p>
        A second version of our pipeline has been tested on the
subset of evaluative questions (Figure 2). The new pipeline
is inspired by a CoT logic and, therefore, is aimed at
generating a better HyDoc. First, we generate the HyDoc after a
naive-RAG step. In a pre-retrieval step, the user question
is hence used to query our certified repository, and the
retrieved context is used to generate the HyDoc. Moreover, we
also include more contextual information about the query
aimed at enhancing the similarity between the HyDoc and
the contexts that need to be retrieved in the augmented
prompt. For instance, we provide within the prompt useful
pragmatic information to generate an evaluative reply, such
as presupposition and implications [
        <xref ref-type="bibr" rid="ref29">29</xref>
        ].
      </p>
      <p>The CoT has proven to be capable of enhancing the quality
of the generated HyDoc. Moreover, it has shown the ability
to increase the semantic similarity between the HyDoc and
the relevant documents to retrieve. This comparison
considers the relevant textual segments containing the pertinent
information using the
paraphrase-multilingual-mpnet-basev2 Bi-Encoder.</p>
      <p>In the naive-RAG step, we employ a Chroma vector
database. We experimented three diferent embedders,
namely the two OpenAI models text-embedding-3-small
(hereafter GPT-small), text-embedding-3-large (hereafter
GPT-large), and the Bi-Encoder model used for the
document retrieval module. As shown in Table 2, using CoT
prompting generated a better HyDoc with OpenAI
embeddings, while it seems not influential for the Bi-Encoder
model. Even though the increase in cosine similarity is
small we should recall that our documents share a
considerable degree of semantic similarity. Consequently, this leads
to a densely populated vector space, where even marginal
enhancements in similarity can yield substantial benefits
in the retrieval process. Anyhow, the naive-RAG step
efectively enhances HyDoc similarity both using GPT-large and
in the Bi-Encoder embeddings.</p>
      <p>Finally, the last step of the pipeline uses the HyDoc, the
query context and the retrieved certified context to generate
the reply. This provides the user with an appropriately
framed answer as well as the documents involved in the
generation process.</p>
    </sec>
    <sec id="sec-6">
      <title>6. Conclusions</title>
      <p>We have presented a modular RAG approach that enables
the delivery of certified medical information. The modular
pipeline allowed us to operate on unstructured texts with
limited data annotation possibilities. A first user evaluation
showed promising results for our approach, although it
revealed some flaws in some specific types of questions,
namely evaluative questions.</p>
      <p>We therefore tested a CoT pipeline on this specific
subtype of questions, to overcome the limitations showed in
the user evaluation. This approach proved to have a
positive impact on the retrieval modules, enhancing semantic
similarity between the HyDoc and the certified contexts, as
well as on textual generation.</p>
      <p>Surely, we should consider that we tested the CoT pipeline
on a rather small dataset and that we used OpenAI-GPT as a
readily available state-of-the-art LLM. Our research eforts
are currently focusing on expanding the dataset and testing
diferent open-source LLMs, as we intend our pipeline as
completely LLM-agnostic.</p>
      <p>Finally, we should also recall that in this work we
presented a user evaluation and the analysis of its results.
Further work is needed to create a ground truth on a
comprehensive dataset of questions to assess the performance of
the retrieval modules.</p>
    </sec>
    <sec id="sec-7">
      <title>Acknowledgments</title>
      <p>We acknowledge the support provided by the PNRR
initiatives: INEST (Interconnected North-East Innovation
Ecosystem), project code ECS00000043, and FAIR (Future AI
Research), project code PE00000013. These projects are part of
the NRRP MUR program, funded by the NextGenerationEU.
This paper is supported by the TrustAlert project, funded
by Fondazione Compagnia San Paolo and Fondazione CDP
under the “Artificial Intelligence” call.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>L.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Ma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Callan</surname>
          </string-name>
          ,
          <article-title>Precise zero-shot dense retrieval without relevance labels</article-title>
          , in: A.
          <string-name>
            <surname>Rogers</surname>
            ,
            <given-names>J. L.</given-names>
          </string-name>
          <string-name>
            <surname>Boyd-Graber</surname>
          </string-name>
          , N. Okazaki (Eds.),
          <source>Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume</source>
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>ACL</source>
          <year>2023</year>
          , Toronto, Canada, July 9-
          <issue>14</issue>
          ,
          <year>2023</year>
          , Association for Computational Linguistics,
          <year>2023</year>
          , pp.
          <fpage>1762</fpage>
          -
          <lpage>1777</lpage>
          . URL: https://doi.org/10.18653/v1/
          <year>2023</year>
          .
          <article-title>acl-long</article-title>
          .
          <volume>99</volume>
          . doi:
          <volume>10</volume>
          . 18653/V1/
          <year>2023</year>
          .
          <article-title>ACL-LONG</article-title>
          .
          <year>99</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>W.</given-names>
            <surname>Saeed</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Omlin</surname>
          </string-name>
          ,
          <article-title>Explainable ai (xai): A systematic meta-survey of current challenges and future opportunities</article-title>
          ,
          <source>Knowledge-Based Systems</source>
          <volume>263</volume>
          (
          <year>2023</year>
          )
          <fpage>110273</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>A.</given-names>
            <surname>Mihalache</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. S.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. M.</given-names>
            <surname>Popovic</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R. H.</given-names>
            <surname>Muni</surname>
          </string-name>
          ,
          <article-title>Chatgpt-4: an assessment of an upgraded artificial intelligence chatbot in the united states medical licensing examination</article-title>
          ,
          <source>Medical Teacher</source>
          <volume>46</volume>
          (
          <year>2024</year>
          )
          <fpage>366</fpage>
          -
          <lpage>372</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>R. C. T.</given-names>
            <surname>Cheong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K. P.</given-names>
            <surname>Pang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Unadkat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Mcneillis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Williamson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Joseph</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Randhawa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Andrews</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Paleri</surname>
          </string-name>
          ,
          <article-title>Performance of artificial intelligence chatbots in sleep medicine certification board exams: Chatgpt versus google bard, European Archives of Oto-RhinoLaryngology (</article-title>
          <year>2023</year>
          )
          <fpage>1</fpage>
          -
          <lpage>7</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>M.</given-names>
            <surname>Cascella</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Montomoli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Bellini</surname>
          </string-name>
          , E. Bignami,
          <article-title>Evaluating the feasibility of chatgpt in healthcare: an analysis of multiple clinical and research scenarios</article-title>
          ,
          <source>Journal of Medical Systems</source>
          <volume>47</volume>
          (
          <year>2023</year>
          )
          <fpage>33</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>K. T.</given-names>
            <surname>Pham</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Nabizadeh</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Selek</surname>
          </string-name>
          ,
          <article-title>Artiifcial intelligence and chatbots in psychiatry</article-title>
          ,
          <source>Psychiatr Q 93</source>
          (
          <year>2022</year>
          )
          <fpage>249</fpage>
          -
          <lpage>253</lpage>
          . URL: https://doi.org/10.1007/s11126-022-09973-8. doi:
          <volume>10</volume>
          .1007/s11126-022-09973-8, received
          <issue>26</issue>
          <year>September 2021</year>
          ,
          <source>Revised 23 January</source>
          <year>2022</year>
          , Accepted
          <issue>26</issue>
          <year>January 2022</year>
          , Published
          <issue>25</issue>
          <year>February 2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <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>
          , et al.,
          <article-title>Retrieval-augmented generation for knowledge-intensive nlp tasks</article-title>
          ,
          <source>Advances in Neural Information Processing Systems</source>
          <volume>33</volume>
          (
          <year>2020</year>
          )
          <fpage>9459</fpage>
          -
          <lpage>9474</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <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>P.</given-names>
            <surname>Lewis</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.-t. Yih,
          <article-title>Dense passage retrieval for open-domain question answering</article-title>
          , in: B.
          <string-name>
            <surname>Webber</surname>
            , T. Cohn,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>He</surname>
          </string-name>
          , Y. Liu (Eds.),
          <source>Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)</source>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2020</year>
          , pp.
          <fpage>6769</fpage>
          -
          <lpage>6781</lpage>
          . URL: https://aclanthology.org/
          <year>2020</year>
          .emnlp-main.
          <volume>550</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2020</year>
          .emnlp-main.
          <volume>550</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>S.</given-names>
            <surname>Siriwardhana</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Weerasekera</surname>
          </string-name>
          , E. Wen,
          <string-name>
            <given-names>T.</given-names>
            <surname>Kaluarachchi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Rana</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Nanayakkara</surname>
          </string-name>
          ,
          <article-title>Improving the domain adaptation of retrieval augmented generation (RAG) models for open domain question answering</article-title>
          ,
          <source>Transactions of the Association for Computational Linguistics</source>
          <volume>11</volume>
          (
          <year>2023</year>
          )
          <fpage>1</fpage>
          -
          <lpage>17</lpage>
          . URL: https://aclanthology. org/
          <year>2023</year>
          .tacl-
          <volume>1</volume>
          .1. doi:
          <volume>10</volume>
          .1162/tacl_a_
          <fpage>00530</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>G.</given-names>
            <surname>Izacard</surname>
          </string-name>
          , E. Grave,
          <article-title>Leveraging passage retrieval with generative models for open domain question answering</article-title>
          , in: P. Merlo,
          <string-name>
            <given-names>J.</given-names>
            <surname>Tiedemann</surname>
          </string-name>
          , R. Tsarfaty (Eds.),
          <source>Proceedings of the 16th Conference of the European Chapter of the Association for Computational Linguistics:</source>
          Main Volume,
          <article-title>Association for Computational Linguistics</article-title>
          , Online,
          <year>2021</year>
          , pp.
          <fpage>874</fpage>
          -
          <lpage>880</lpage>
          . URL: https://aclanthology.org/
          <year>2021</year>
          .eacl-main.
          <volume>74</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2021</year>
          .eacl-main.
          <volume>74</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          [11]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Shao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Gong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Shen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Duan</surname>
          </string-name>
          , W. Chen,
          <article-title>Enhancing retrieval-augmented large language models with iterative retrieval-generation synergy</article-title>
          , in: H.
          <string-name>
            <surname>Bouamor</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Pino</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          Bali (Eds.),
          <source>Findings of the Association for Computational Linguistics: EMNLP</source>
          <year>2023</year>
          ,
          <article-title>Association for Computational Linguistics</article-title>
          , Singapore,
          <year>2023</year>
          , pp.
          <fpage>9248</fpage>
          -
          <lpage>9274</lpage>
          . URL: https: //aclanthology.org/
          <year>2023</year>
          .findings-emnlp.
          <volume>620</volume>
          . doi:
          <volume>10</volume>
          . 18653/v1/
          <year>2023</year>
          .findings-emnlp.
          <volume>620</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          [12]
          <string-name>
            <given-names>W.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lapata</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Vougiouklis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Papasarantopoulos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. Z.</given-names>
            <surname>Pan</surname>
          </string-name>
          ,
          <article-title>Retrieval augmented generation with rich answer encoding</article-title>
          ,
          <source>in: Proceedings of the 13th International Joint Conference on Natural Language Processing and the 3rd Conference of the AsiaPacific Chapter of the Association for Computational Linguistics (Volume</source>
          <volume>1</volume>
          :
          <string-name>
            <surname>Long</surname>
            <given-names>Papers)</given-names>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          ,
          <year>2023</year>
          , pp.
          <fpage>1012</fpage>
          -
          <lpage>1025</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          [13]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Xu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Sun</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Liu</surname>
          </string-name>
          , J. DwivediYu,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Callan</surname>
          </string-name>
          , G. Neubig,
          <article-title>Active retrieval augmented generation</article-title>
          , in: H.
          <string-name>
            <surname>Bouamor</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Pino</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>7969</fpage>
          -
          <lpage>7992</lpage>
          . URL: https://aclanthology. org/
          <year>2023</year>
          .emnlp-main.
          <volume>495</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2023</year>
          . emnlp-main.
          <volume>495</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          [14]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            <surname>Xiong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Liu</surname>
          </string-name>
          ,
          <article-title>Augmentation-adapted retriever improves generalization of language models as generic plug-in, in: Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics</article-title>
          , Volume
          <volume>1</volume>
          :
          <string-name>
            <given-names>Long</given-names>
            <surname>Papers</surname>
          </string-name>
          ,
          <source>Association for Computational Linguistics</source>
          ,
          <year>2023</year>
          , pp.
          <fpage>2421</fpage>
          -
          <lpage>2436</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          [15]
          <string-name>
            <given-names>J.</given-names>
            <surname>Baek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Jeong</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Kang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Park</surname>
          </string-name>
          , S. Hwang,
          <article-title>Knowledge-augmented language model verification</article-title>
          , in: H.
          <string-name>
            <surname>Bouamor</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Pino</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>1720</fpage>
          -
          <lpage>1736</lpage>
          . URL: https://aclanthology.org/
          <year>2023</year>
          .emnlp-main.
          <volume>107</volume>
          . doi:
          <volume>10</volume>
          .18653/v1/
          <year>2023</year>
          .emnlp-main.
          <volume>107</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          [16]
          <string-name>
            <given-names>J.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Schuurmans</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bosma</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Ichter</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Xia</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. H.</given-names>
            <surname>Chi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q. V.</given-names>
            <surname>Le</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <article-title>Chain-of-thought prompting elicits reasoning in large language models</article-title>
          ,
          <source>in: Proceedings of the 36th Conference on Neural Information Processing Systems (NeurIPS</source>
          <year>2022</year>
          ), Google Research, Brain Team,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          [17]
          <string-name>
            <given-names>M.</given-names>
            <surname>Zheng</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Hao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Lin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Lyu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>She</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <article-title>Chain-of-thought reasoning in tabular language models, in: Findings of the Association for Computational Linguistics: EMNLP 2023, Association for Computational Linguistics</article-title>
          ,
          <year>2023</year>
          , pp.
          <fpage>11006</fpage>
          -
          <lpage>11019</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          [18]
          <string-name>
            <given-names>T.</given-names>
            <surname>Wu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Terry</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. J.</given-names>
            <surname>Cai</surname>
          </string-name>
          ,
          <article-title>Ai chains: Transparent and controllable human-ai interaction by chaining large language model prompts</article-title>
          ,
          <source>in: Proceedings of the 2022 CHI Conference on Human Factors in Computing Systems (CHI)</source>
          , ACM, New Orleans, LA, USA,
          <year>2022</year>
          . URL: https://doi.org/10.1145/3491102.3517582. doi:
          <volume>10</volume>
          .1145/3491102.3517582,
          <article-title>copyright 2022 by the owner/author(s).</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          [19]
          <string-name>
            <given-names>L.</given-names>
            <surname>Gao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Madaan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Zhou</surname>
          </string-name>
          , U. Alon, P. Liu,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Yang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Callan</surname>
          </string-name>
          , G. Neubig, Pal:
          <article-title>Program-aided language models</article-title>
          ,
          <source>in: Proceedings of the 40th International Conference on Machine Learning (ICML)</source>
          , PMLR, Honolulu, Hawaii, USA,
          <year>2023</year>
          . URL: http://reasonwithpal.com,
          <article-title>copyright 2023 by the author(s).</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          [20]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Ling</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Fang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Huang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lee</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Memisevic</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Su</surname>
          </string-name>
          ,
          <article-title>Deductive verification of chain-of-thought reasoning</article-title>
          ,
          <source>in: 37th Conference on Neural Information Processing Systems (NeurIPS</source>
          <year>2023</year>
          ), NeurIPS,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          [21]
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Wei</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Schuurmans</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Le</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. H.</given-names>
            <surname>Chi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Narang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Chowdhery</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Zhou</surname>
          </string-name>
          ,
          <article-title>Self-consistency improves chain of thought reasoning in language models</article-title>
          ,
          <source>in: International Conference on Learning Representations (ICLR)</source>
          ,
          <source>Google Research</source>
          , Brain Team,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          [22]
          <string-name>
            <given-names>T.</given-names>
            <surname>Kojima</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. S.</given-names>
            <surname>Gu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Reid</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Matsuo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Iwasawa</surname>
          </string-name>
          ,
          <article-title>Large language models are zero-shot reasoners</article-title>
          ,
          <source>in: The U 36th Conference on Neural Information Processing Systems (NeurIPS</source>
          <year>2022</year>
          ),
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref23">
        <mixed-citation>
          [23]
          <string-name>
            <given-names>S.</given-names>
            <surname>Yao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>I.</given-names>
            <surname>Shafran</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Grifiths</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Cao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Narasimhan</surname>
          </string-name>
          ,
          <article-title>Tree of thoughts: Deliberate problem solving with large language models</article-title>
          , in: A.
          <string-name>
            <surname>Oh</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Neumann</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Globerson</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          <string-name>
            <surname>Saenko</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Hardt</surname>
          </string-name>
          , S. Levine (Eds.),
          <source>Advances in Neural Information Processing Systems</source>
          , volume
          <volume>36</volume>
          ,
          <string-name>
            <surname>Curran</surname>
            <given-names>Associates</given-names>
          </string-name>
          , Inc.,
          <year>2023</year>
          , pp.
          <fpage>11809</fpage>
          -
          <lpage>11822</lpage>
          . URL: https: //proceedings.neurips.cc/paper_files/paper/2023/file/ 271db9922b8d1f4dd7aaef84ed5ac703-Paper-Conference. pdf.
        </mixed-citation>
      </ref>
      <ref id="ref24">
        <mixed-citation>
          [24]
          <string-name>
            <given-names>S.</given-names>
            <surname>Cao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Zhang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Shi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Lv</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Z.</given-names>
            <surname>Yao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Q.</given-names>
            <surname>Tian</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Hou</surname>
          </string-name>
          ,
          <article-title>Probabilistic tree-of-thought reasoning for answering knowledge-intensive complex questions, in: Findings of the Association for Computational Linguistics: EMNLP, Association for Computational Linguistics</article-title>
          , Beijing, China,
          <year>2023</year>
          , pp.
          <fpage>12541</fpage>
          -
          <lpage>12560</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref25">
        <mixed-citation>
          [25]
          <string-name>
            <given-names>R.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Moens</surname>
          </string-name>
          ,
          <article-title>A brief overview of universal sentence representation methods: A linguistic view</article-title>
          ,
          <source>ACM Comput. Surv</source>
          .
          <volume>55</volume>
          (
          <year>2023</year>
          )
          <volume>56</volume>
          :
          <fpage>1</fpage>
          -
          <lpage>56</lpage>
          :
          <fpage>42</fpage>
          . URL: https: //doi.org/10.1145/3482853. doi:
          <volume>10</volume>
          .1145/3482853.
        </mixed-citation>
      </ref>
      <ref id="ref26">
        <mixed-citation>
          [26]
          <string-name>
            <given-names>T.</given-names>
            <surname>Mikolov</surname>
          </string-name>
          , I. Sutskever,
          <string-name>
            <given-names>K.</given-names>
            <surname>Chen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. S.</given-names>
            <surname>Corrado</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Dean</surname>
          </string-name>
          ,
          <article-title>Distributed representations of words and phrases and their compositionality</article-title>
          ,
          <source>Advances in neural information processing systems</source>
          <volume>26</volume>
          (
          <year>2013</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref27">
        <mixed-citation>
          [27]
          <string-name>
            <given-names>N.</given-names>
            <surname>Reimers</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Gurevych</surname>
          </string-name>
          ,
          <article-title>Sentence-bert: Sentence embeddings using siamese bert-networks, in: K. Inui</article-title>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Jiang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            <surname>Ng</surname>
          </string-name>
          ,
          <string-name>
            <surname>X.</surname>
          </string-name>
          Wan (Eds.),
          <source>Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing, EMNLP-IJCNLP</source>
          <year>2019</year>
          ,
          <string-name>
            <given-names>Hong</given-names>
            <surname>Kong</surname>
          </string-name>
          , China, November 3-
          <issue>7</issue>
          ,
          <year>2019</year>
          , Association for Computational Linguistics,
          <year>2019</year>
          , pp.
          <fpage>3980</fpage>
          -
          <lpage>3990</lpage>
          . URL: https://doi.org/10.18653/v1/
          <fpage>D19</fpage>
          -1410. doi:
          <volume>10</volume>
          .18653/V1/D19-1410.
        </mixed-citation>
      </ref>
      <ref id="ref28">
        <mixed-citation>
          [28]
          <string-name>
            <given-names>H.</given-names>
            <surname>Li</surname>
          </string-name>
          ,
          <article-title>Learning to rank for information retrieval and natural language processing</article-title>
          , Springer Nature,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref29">
        <mixed-citation>
          [29]
          <string-name>
            <given-names>H. P.</given-names>
            <surname>Grice</surname>
          </string-name>
          ,
          <article-title>Logic and conversation</article-title>
          , in: Speech acts, Brill,
          <year>1975</year>
          , pp.
          <fpage>41</fpage>
          -
          <lpage>58</lpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>