<!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>A Framework for Semantic Identifier Resolution and LLM Grounding in Engineering Systems</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Rustam Mehmandarov</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Arild Waaler</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Informatics, University of Oslo</institution>
          ,
          <country country="NO">Norway</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>The digital transformation of engineering systems demands scalable and precise identifier management. Information about a single asset is often fragmented across numerous systems and organizational boundaries, with each context using its own identifiers. This paper addresses this challenge by introducing a formal framework for semantic reference. We build on prior work by introducing two key concepts: reference contexts, which formalize the boundary conditions for identifier interpretation, and public models, which serve as curated, shared layers for anchoring reference. We define reference equality as the symmetric, transitive closure over typed proxy relations that link identifiers across these contexts. Finally, we demonstrate how this semantic infrastructure provides a foundational component for a new generation of industrial systems, including providing essential grounding for Large Language Model (LLM) workflows. This approach bridges the gap between human-readable descriptors and machine-readable identifiers, aligns with modern architectural principles like Data Mesh, and supports hybrid reasoning in industrial knowledge systems.</p>
      </abstract>
      <kwd-group>
        <kwd>eol&gt;Identifier Management</kwd>
        <kwd>Semantic Integration</kwd>
        <kwd>Large Language Models</kwd>
        <kwd>Reference Context</kwd>
        <kwd>Data Mesh</kwd>
        <kwd>Knowledge Graphs</kwd>
        <kwd>Engineering Systems</kwd>
        <kwd>Asset Management</kwd>
        <kwd>Data Integration</kwd>
        <kwd>Software Interoperability</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. Introduction</title>
      <p>
        Industrial systems rely on vast quantities of information, scattered across tools, organizations, and
lifecycle stages. This information is fragmented across databases, models, and documents, each using
its own identifiers to refer to system elements like equipment or functional locations [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]. Resolving
these identifiers across contexts is a prerequisite for automation and digital traceability, but current
practices are heavily reliant on manual, error-prone intervention.
      </p>
      <p>
        Recent work has highlighted semantic identifier management as a cornerstone of digital
transformation [
        <xref ref-type="bibr" rid="ref1 ref2">1, 2</xref>
        ]. Prior approaches have introduced identifier classification schemes and model-based mapping
services. Yet, a principled and formal account of reference semantics—linking identifiers, models, and
human interpretation across heterogeneous systems—has been lacking.
      </p>
      <p>
        Large Language Models (LLMs) are increasingly used as natural language interfaces to engineering
data. They are now employed to query structured sources and assist engineers in technical tasks.
However, LLMs lack a native notion of reference. They process text without grounding it in the
structured semantics of the systems they support, resulting in ambiguity, hallucinations, and a lack of
verifiable traceability in their outputs [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
      </p>
      <p>This paper addresses both challenges—semantic reference and LLM grounding—by introducing two
interlinked concepts:
• Reference contexts, which formalize the use of identifiers under specific boundary conditions.
• Public models, which serve as curated referential layers for deriving shared descriptors.</p>
      <p>We demonstrate how these structures enable robust semantic reference resolution and provide the
necessary anchoring points for LLM workflows. Our approach extends prior work by focusing on
logic-based interpretation and integration into hybrid, knowledge-based systems.</p>
    </sec>
    <sec id="sec-2">
      <title>2. Background and Related Work</title>
      <sec id="sec-2-1">
        <title>2.1. The Identifier Fragmentation Problem</title>
        <p>In large-scale engineering projects, information about a single asset is scattered across numerous
applications. Each system assigns its own identifier based on its specific context, domain, or lifecycle
phase. The challenge lies in the heterogeneity of these identifiers—not only in syntax, but in structure
and semantics.</p>
        <p>To better understand the diversity of identifier types encountered in industrial systems, we introduce
a two-dimensional classification scheme based on information density and uniqueness. This classification
helps reveal structural patterns that motivate the need for explicit, semantics-based identifier resolution.
The resulting taxonomy can be visualized in four quadrants, as shown in Figure 1.</p>
        <p>This classification reveals a fundamental tension: highly unique identifiers (Groups 1 and 2) are often
opaque to humans, while interpretable descriptors (Groups 3 and 4) tend to be ambiguous or reused. As
a result, resolving identifiers across systems cannot rely on lexical matching alone. Instead, it requires
explicit, declarative links between identifiers—regardless of their type or quadrant—which is precisely
what our framework provides through proxy relations and reference equality.</p>
        <p>
          Simple lexical or structural matching techniques are often insuficient [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ], as the information subsets
in diferent systems may have little overlap. Consequently, organizations rely on manual mapping by
subject matter experts [
          <xref ref-type="bibr" rid="ref1">1</xref>
          ], a process that is neither scalable nor sustainable. This challenge aligns with
the goals of the Data Mesh paradigm, which seeks to enable data interoperability in a decentralized
ecosystem while maintaining domain-oriented ownership [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ].
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2. Advances in Semantic Integration</title>
        <p>
          Prior work has aimed to solve this fragmentation using model-based integration and semantic
technologies. The approaches in [
          <xref ref-type="bibr" rid="ref1 ref2">1, 2</xref>
          ] distinguish between human-readable descriptors (typically Groups 3
and 4) and system-level identifiers (Groups 1 and 2), proposing:
• A modular, plug-in-based web service for identifier resolution that uses domain-specific rules to
perform semantic lifting and lookup.
• A classification of identifier systems by their function and lifecycle governance, along with a
proposal for layered model views tied to specific information aspects and actor roles.
These articles advocate for a shift from document-centric practices to model-driven practices, aligning
with standards like ISO/IEC 81346 [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ]. However, they do not provide a formal semantics of reference
or a general theory for cross-context resolution.
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>2.3. The LLM Grounding Challenge</title>
        <p>
          LLMs are powerful tools for natural language tasks, but lack the mechanisms to handle identifier
semantics reliably. Without a formal model of reference, they cannot distinguish between identifiers
that are homonyms (same string, diferent meaning) or synonyms (diferent strings, same meaning).
This is a critical failure point in technical applications, especially in Retrieval-Augmented Generation
(RAG) pipelines, where the model’s output quality is directly tied to its ability to interpret retrieved,
and potentially ambiguous, information [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ].
        </p>
        <p>
          Recent research has focused on grounding LLMs by enabling them to use external tools and APIs, a
capability now widely available in major models, often under the name "function calling". Frameworks
like ReAct [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] interleave reasoning and action steps, while models like Toolformer [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] are fine-tuned to
decide when and how to call external services. While these "tool-using" LLMs represent a significant
advance, they presuppose the existence of reliable, well-defined APIs. They do not, in themselves, solve
the underlying semantic interoperability problem when the tools and data sources they query sufer
from the identifier fragmentation described in Section 2.1. Our work provides the missing semantic
resolution layer required for such tool-using LLMs to function reliably in heterogeneous industrial
environments.
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3. Reference Contexts and Semantic Identifier Resolution</title>
      <p>Engineering and industrial information systems rely on large numbers of identifiers to reference
assets, components, activities, and locations. However, these identifiers are rarely global or semantically
transparent. They are typically defined and interpreted within bounded domains—such as organizational
databases, contractor systems, or design environments—each governed by local conventions. To manage
semantic interoperability in this setting, we introduce the concept of a reference context as a formal unit
of identifier interpretation.</p>
      <p>A reference context  defines a local referential environment. It specifies a disjoint set of identifiers
ℐ, partitioned into two categories:
• : a set of descriptors, such as tag numbers or internal model labels, whose meaning depends
on implicit or context-specific knowledge;
• : a set of direct references, such as database primary keys, serial numbers, or ontology URIs,
whose interpretation is grounded in a formal or empirical reference base.</p>
      <p>In the terminology of our framework, descriptors (typically from Groups 3 and 4) belong to ,
while system-level keys and global identifiers (Groups 1 and 2) typically serve as direct references in
. Our resolution relation ℛ captures the mapping between these two classes within each reference
context. To relate these two sets, each reference context may define a resolution relation
ℛ ⊆   ×  ,</p>
      <p>Consumed by LLM Workflows, Data Pipelines, Digital Twins, etc.</p>
      <sec id="sec-3-1">
        <title>Identifier Resolution Service (API)</title>
        <p>queries</p>
      </sec>
      <sec id="sec-3-2">
        <title>Reference Context</title>
        <p>(Operator)</p>
      </sec>
      <sec id="sec-3-3">
        <title>Public Model</title>
      </sec>
      <sec id="sec-3-4">
        <title>Reference Context</title>
        <p>(Vendor)
proxy
proxy
P-4321
eqhub:pump_001</p>
        <p>SN-9988X
which expresses how descriptors can be resolved to direct references. Importantly, this relation is
neither total nor functional in general. A descriptor may resolve to multiple direct references (e.g.,
due to modeling ambiguity or distributed realization), or to none at all (e.g., if it represents a design
placeholder or a failed lookup). Likewise, a single direct reference may be associated with multiple
descriptors originating from diferent naming conventions. This many-to-many structure reflects
real-world ambiguity and design abstraction. It enables the framework to support both extensional
identifiers (grounded in specific artifacts) and intensional ones (defined through schema, queries, or
roles).</p>
        <p>
          To support interoperability across multiple reference contexts, we introduce the notion of a public
model. A public model is a curated referential layer hosted by a recognized authority—such as
an industry consortium like POSC Caesar Association (PCA) [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ], standards body, or shared data
platform—that spans several reference contexts. It defines:
• A set of referable elements, each assigned a globally stable identifier (e.g., pca:pump_001);
• A set of proxy relations linking these public identifiers to identifiers drawn from individual
reference contexts;
• A resolution API or service interface that enables identifier translation, cross-context querying,
and semantic reference checks.
        </p>
        <p>A proxy relation captures a semantic link between identifiers drawn from diferent reference
contexts. In our framework, this relation is used to assert that two identifiers are diferent representations
or views of the same underlying system element. We denote by ℐ the global set of all identifiers:
The proxy relation is a binary relation over ℐ:
ℐ := ⋃︁ ℐ.</p>
        <p>proxy ⊆ ℐ × ℐ.</p>
        <p>An assertion (1, 2) ∈ proxy states that identifier 1 serves as a proxy for identifier 2. These links
are explicitly declared and curated as part of the public model. They may be typed to express their
interpretation—for example, indicating that a functional capability is fulfilled by an implementation,
or that one identifier administratively mirrors another. The complete set of reference contexts and
proxy relations can thus be naturally represented as a knowledge graph, where identifiers are nodes
and proxy relations are typed edges.</p>
        <p>From this relation, we define reference equality as the symmetric, transitive closure of proxy links:
refEq(, ) ⇐⇒  ≡  under proxy *sym.</p>
        <p>This means that two identifiers are considered reference-equal if they are connected through a chain
of proxy assertions, regardless of their origin or naming convention. Reference equality provides a
declarative, traceable, and explainable basis for establishing semantic equivalence across heterogeneous
systems and naming schemes.</p>
        <p>By organizing identifiers into structured reference contexts and linking them via public proxy models,
this framework provides a robust foundation for semantic resolution. It enables alignment between
human-oriented labels and machine-level identifiers, supports cross-organizational data flows, and
provides a formal anchoring mechanism for integrating symbolic reasoning with LLM-based workflows.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>4. Application to LLM Workflows</title>
      <p>Our framework provides the semantic scafolding needed to ground LLM operations in verifiable data.</p>
      <p>
        By linking identifiers in natural language to elements in a public model, we create semantic anchor
points. This allows an LLM to disambiguate references correctly. This is particularly efective in RAG
pipelines [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ], where retrieved documents can be annotated with public descriptors to resolve ambiguity
before generation.
      </p>
      <p>We propose an identifier resolution service with three primary functions:
1. resolve(id, context): Returns a corresponding public identifier (if one exists) and the
traceable proxy path.
2. areEqual(id1, id2): Returns true if a proxy chain exists between the two identifiers.
3. getRelated(public_id, role): Returns all known context-specific identifiers linked to the
given public identifier in the role of vendor.</p>
      <p>This service equips LLMs with the ability to validate references, disambiguate terms, and generate text
that is demonstrably grounded in a formal, external model.</p>
    </sec>
    <sec id="sec-5">
      <title>5. Case Study: Multi-Context Reference to a Pump</title>
      <p>Consider a pump referenced across multiple contexts in an engineering project, as detailed in Table 1.</p>
      <p>The public model (4) declares proxy links from eqhub:pump_001 to the other three identifiers. By
computing the symmetric transitive closure, a system can deduce that these identifiers belong to the
same reference-equal group via proxy chains.</p>
      <p>An LLM-powered assistant receives the prompt: "Generate a maintenance summary for P-4321,
including key specs from the vendor datasheet."</p>
      <p>A standard RAG pipeline, lacking semantic grounding, would first retrieve documents based on the
string "P-4321". This initial retrieval is likely to be ambiguous, potentially returning datasheets for
assets with the same tag number but located in diferent plants or projects.</p>
      <p>Using the resolution service, the LLM workflow executes these steps:
1. Call: resolve("P-4321", context=operator)</p>
      <p>Returns: eqhub:pump_001.
2. Call: getRelated("eqhub:pump_001", role=vendor)</p>
      <p>Returns: SN-9988X and a link to the vendor’s documentation.</p>
      <p>The LLM can now reliably retrieve the correct vendor datasheet using the serial number and generate
an accurate, traceable summary.</p>
    </sec>
    <sec id="sec-6">
      <title>6. Discussion</title>
      <sec id="sec-6-1">
        <title>6.1. Architectural Alignment and Framework Implications</title>
        <p>
          The proposed framework complements existing industry standards. Public models can be exposed
through Asset Administration Shell (AAS) interfaces [11], and the layered approach aligns with the
RAMI 4.0 architecture [12]. By enabling federated governance while ensuring interoperability, the
model directly supports the core principles of a Data Mesh [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ], as shown in Table 2.
        </p>
        <sec id="sec-6-1-1">
          <title>3. Self-Serve Data Platform</title>
        </sec>
        <sec id="sec-6-1-2">
          <title>4. Federated Computational Governance</title>
        </sec>
        <sec id="sec-6-1-3">
          <title>How the Framework Addresses It</title>
          <p>The framework uses Reference Contexts to formalize
domain-specific identifier systems. Each domain (e.g.,
operator, vendor) retains full ownership and control over its
internal identifiers, avoiding the need for a single, centralized
master ID.</p>
          <p>Domains treat their identifier mappings as a discoverable
and usable ’product’. They publish Proxy Relations to a
shared Public Model, which acts as a clean, interoperable
interface. The Identifier Resolution Service serves as the
API for consuming this data product.</p>
          <p>The proposed architecture is a core component of a self-serve
platform. The platform hosts the Public Models and the
graph of Proxy Relations, while the Identifier Resolution
Service provides a universal, self-serve tool that enables all
domains to easily create and consume mappings.</p>
          <p>Governance is federated, not centralized. Domains
collaborate to define proxy links and agree on public models. This
governance is also computational: reference equality is not
just a policy but is actively computed and enforced by the
system through the transitive closure of the proxy relations
in the graph. The quadrant classification provides a
conceptual backdrop for our resolution model: it helps frame
the diversity of identifiers as not merely syntactic variation
but as structural variation that must be reconciled through
formally declared relations. This approach enables
semantic alignment across systems without requiring a universal
identifier scheme, by instead relying on explicitly declared
proxy chains.</p>
          <p>This approach addresses the identifier bottleneck by replacing the need for total harmonization with
incremental, proxy-based resolution. It is important to note that while we emphasize the application
for LLM grounding, the resolution service is a general-purpose integration component that can be
consumed directly by any automated system, such as data integration pipelines or digital twin platforms,
that requires robust, cross-context identifier lookups. For LLMs, it provides the structured grounding
required for reliable and safe operation in technical domains. Open challenges include the formal
governance of proxy relations, ensuring the scalability of resolution services, and developing methods
to fine-tune LLMs on reference-aware architectures.</p>
          <p>The framework proposed in this paper also complements practices in Model-Based Systems
Engineering (MBSE), particularly those grounded in standards such as ISO/IEC/IEEE 42010 [13] and modeling
languages like SysML [14]. These approaches focus on the structural, behavioral, and architectural
aspects of system design, typically within a well-defined viewpoint framework. However, they often
treat identifier semantics—how system elements are named, referenced, and reconciled across tools or
phases—as external to the core modeling formalism.</p>
          <p>Our framework addresses this gap. It introduces a semantic infrastructure for identifier resolution
that is orthogonal to structural modeling concerns but essential for enabling lifecycle traceability,
model integration, and cross-organizational interoperability. In this sense, the proposed framework can
serve as a semantic backbone to MBSE environments by providing formally grounded mechanisms for
managing reference equality, declaring proxy relationships, and grounding engineering artifacts across
the lifecycle.</p>
          <p>Our framework sketches a roadmap for a new generation of hybrid, reference-aware industrial
systems. This vision begins with establishing the core semantic infrastructure, which is then used
to ground LLM-based assistants, making them safe and reliable for technical work. The roadmap
culminates in a virtuous cycle, as described in Section 6.2, where these grounded LLMs are, in turn,
employed to accelerate the curation and expansion of the very knowledge base they rely on. This
creates a scalable, self-improving ecosystem that bridges the gap between static engineering knowledge
and dynamic AI capabilities.</p>
        </sec>
      </sec>
      <sec id="sec-6-2">
        <title>6.2. The Role of LLMs in Automating Proxy Relation Curation</title>
        <p>While this paper focuses on LLMs as consumers of a pre-existing semantic infrastructure, they can also
serve as powerful tools to automate and scale the creation of this infrastructure itself. The curation of
proxy relations is currently a knowledge-intensive task reliant on subject matter experts. We propose
that LLMs can accelerate this process in a human-in-the-loop workflow:
• Candidate Generation: An LLM can be tasked to read heterogeneous sources, such as technical
datasheets, piping and instrumentation diagrams (P&amp;IDs), and maintenance logs. By identifying
co-occurrence patterns and understanding document context, the LLM can propose potential
proxy links. For example, it might suggest that a tag number from a P&amp;ID and a serial number
from a vendor manual likely refer to the same asset.
• Expert Validation: These LLM-generated candidates are then presented to a human domain
expert for validation. This shifts the expert’s role from manual, painstaking discovery to eficient
verification, dramatically increasing the rate at which the proxy graph can be populated.
This semi-automated approach leverages the pattern-matching capabilities of LLMs to tackle the
scaling problem in knowledge graph construction, while using human expertise to mitigate the risk of
hallucinations and ensure the accuracy of the final mappings.</p>
      </sec>
    </sec>
    <sec id="sec-7">
      <title>7. Conclusion</title>
      <p>We introduced a semantic infrastructure for identifier management built on reference contexts, public
models, and typed proxy relations. This framework allows reference equality to be established through
curated proxy chains, enabling traceable and verifiable cross-context reasoning over identifier relations.
Crucially, we have shown how this formal approach aligns with modern IT architecture principles such
as Data Mesh, providing a practical path for implementation in decentralized enterprise ecosystems.
By integrating these mechanisms with LLM workflows, we provide a robust solution for semantic
grounding, supporting safe and reliable AI-assisted engineering.</p>
      <p>While our examples are drawn from engineering systems, the underlying principles are widely
applicable. Similar challenges of identifier fragmentation and context-dependent interpretation arise
in domains such as healthcare, finance, supply chains, and public administration. We believe that the
proposed framework can serve as a general foundation for reference-aware integration in any domain
where semantic consistency across heterogeneous systems is required.</p>
      <p>Future work will proceed along several key paths:
• Formalizing the resolution logics to support a wider range of typed proxy relations.
• Designing and implementing a scalable prototype of the distributed lookup service.
• Conducting a comprehensive evaluation of the framework, both quantitative (on resolution
accuracy and performance) and qualitative (with domain experts to assess usability and impact).
• Integrating the identifier resolution service directly into RAG pipelines as a formal grounding
component.</p>
    </sec>
    <sec id="sec-8">
      <title>Declaration on Generative AI</title>
      <p>The author(s) have not employed any Generative AI tools.
[11] Plattform Industrie 4.0, Details of the asset administration shell - part 1, https:
//www.plattform-i40.de/IP/Redaktion/EN/Downloads/Publikation/Details_of_the_Asset_
Administration_Shell_Part1_V3.html, 2020. Accessed: July 31, 2025.
[12] K. Schweichhart, Reference Architectural Model Industrie 4.0 (RAMI 4.0), 2017. URL:
https://ec.europa.eu/futurium/en/system/files/ged/a2-schweichhart-reference_architectural_
model_industrie_4.0_rami_4.0.pdf, accessed: July 31, 2025.
[13] ISO/IEC/IEEE, Systems and software engineering — Architecture description, Standard 42010:2011,</p>
      <p>International Organization for Standardization, 2011.
[14] Object Management Group, OMG Systems Modeling Language (OMG SysML®) Version 1.6,
https://www.omg.org/spec/SysML/1.6/PDF, 2019. Accessed: July 31, 2025.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>R.</given-names>
            <surname>Mehmandarov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Waaler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Cameron</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Fjellheim</surname>
          </string-name>
          , T. B.
          <string-name>
            <surname>Pettersen</surname>
          </string-name>
          ,
          <article-title>A semantic approach to identifier management in engineering systems</article-title>
          , in: 2021
          <source>IEEE International Conference on Big Data (Big Data)</source>
          , IEEE,
          <year>2021</year>
          , pp.
          <fpage>4613</fpage>
          -
          <lpage>4616</lpage>
          . doi:
          <volume>10</volume>
          .1109/BigData52589.
          <year>2021</year>
          .
          <volume>9671515</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>R.</given-names>
            <surname>Mehmandarov</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Hovland</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Saltvedt</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Waaler</surname>
          </string-name>
          ,
          <article-title>Towards addressing requirements to identification posed by the digital transformation</article-title>
          ,
          <source>in: Proceedings of the International Workshop on Semantic Industrial Information Modelling (SemIIM'22)</source>
          , CEUR-WS.org,
          <year>2022</year>
          . URL: http://ceur-ws.
          <source>org/</source>
          Vol-
          <volume>3355</volume>
          /identifier.pdf.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>E. M.</given-names>
            <surname>Bender</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Gebru</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>McMillan-Major</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Shmitchell</surname>
          </string-name>
          ,
          <article-title>On the dangers of stochastic parrots: Can language models be too big?</article-title>
          ,
          <source>in: Proceedings of the 2021 ACM Conference on Fairness, Accountability, and Transparency</source>
          ,
          <source>FAccT '21</source>
          ,
          <string-name>
            <surname>ACM</surname>
          </string-name>
          ,
          <year>2021</year>
          , pp.
          <fpage>610</fpage>
          -
          <lpage>623</lpage>
          . doi:
          <volume>10</volume>
          .1145/3442188. 3445922.
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>J.</given-names>
            <surname>Euzenat</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Shvaiko</surname>
          </string-name>
          , Ontology Matching, Springer-Verlag,
          <year>2013</year>
          . doi:
          <volume>10</volume>
          .1007/ 978-3-
          <fpage>642</fpage>
          -38721-0.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Z.</given-names>
            <surname>Dehghani</surname>
          </string-name>
          , Data Mesh:
          <article-title>Delivering Data-Driven Value at Scale,</article-title>
          <string-name>
            <surname>O'Reilly Media</surname>
          </string-name>
          ,
          <year>2022</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>International</given-names>
            <surname>Organization</surname>
          </string-name>
          for Standardization,
          <article-title>Industrial systems, installations and equipment and industrial products - Structuring principles and reference designations - Part 1: Basic rules</article-title>
          ,
          <source>Standard ISO/IEC 81346-1</source>
          :
          <year>2022</year>
          , ISO,
          <year>2022</year>
          . URL: https://www.iso.org/standard/82229.html.
        </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>
          ,
          <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>
          , in: H.
          <string-name>
            <surname>Larochelle</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Ranzato</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Hadsell</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.-F. Balcan</surname>
          </string-name>
          , H.-T. Lin (Eds.),
          <source>Advances in Neural Information Processing Systems</source>
          <volume>33</volume>
          (NeurIPS
          <year>2020</year>
          ),
          <year>2020</year>
          , pp.
          <fpage>9459</fpage>
          -
          <lpage>9474</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          [8]
          <string-name>
            <given-names>S.</given-names>
            <surname>Yao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Zhao</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Du</surname>
          </string-name>
          , I. Shafran,
          <string-name>
            <given-names>K.</given-names>
            <surname>Narasimhan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            <surname>Cao</surname>
          </string-name>
          , React:
          <article-title>Synergizing reasoning and acting in language models</article-title>
          ,
          <source>in: International Conference on Learning Representations (ICLR)</source>
          ,
          <year>2023</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          [9]
          <string-name>
            <given-names>T.</given-names>
            <surname>Schick</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Dwivedi-Yu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Dessì</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Raileanu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Lomeli</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            <surname>Hambro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Zettlemoyer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>N.</given-names>
            <surname>Cancedda</surname>
          </string-name>
          , T. Scialom,
          <article-title>Toolformer: Language models can teach themselves to use tools</article-title>
          ,
          <source>Advances in Neural Information Processing Systems</source>
          <volume>36</volume>
          (
          <year>2023</year>
          )
          <fpage>68539</fpage>
          -
          <lpage>68551</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          [10]
          <string-name>
            <given-names>POSC</given-names>
            <surname>Caesar Association</surname>
          </string-name>
          , About pca, https://www.posccaesar.org/about/,
          <year>2023</year>
          .
          <source>Accessed: July</source>
          <volume>31</volume>
          ,
          <year>2025</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>