← AIC Platform ACX-WP-2025-007 · PUBLIC
ACX Whitepaper · Public Release

CHIMERA Reasoning Engine: Technical Reference & Integration Guide

Multi-hop reasoning over heterogeneous knowledge representations — architecture, evaluation methodology, and practical integration patterns.

Authors
Dr. Lena Stravinsky, Jun Kim
Published
November 2025
Pages
124 (abridged: 42)
Classification
UNCLASSIFIED // PUBLIC

Abstract. CHIMERA is a reasoning engine designed to answer questions that require synthesizing information across multiple data sources with different structures — documents, knowledge graphs, relational databases, and unstructured communications. This paper describes the architecture of CHIMERA, its evaluation on multi-hop reasoning tasks, and practical patterns for integrating it into AIC deployments. We report accuracy of 91.8% on our internal multi-hop benchmark (CHIMERA-Bench) and 53.8% on GPQA Diamond, while acknowledging significant limitations on tasks requiring temporal reasoning and numerical computation. This is the public abridgment of the full 124-page technical reference; sections covering classified deployment configurations have been removed.

01 — Motivation

Standard retrieval-augmented generation works well for questions answerable from a single document or a small set of related passages. It works poorly for questions like:

These questions require multi-hop reasoning: retrieving an initial set of facts, using those facts to formulate secondary queries, resolving entity references across different data schemas, and synthesizing a coherent answer with proper attribution. This is what CHIMERA was built to do.

We want to be precise about what CHIMERA is not. It is not a general-purpose reasoning system. It does not perform mathematical proofs, physical simulations, or formal logic beyond what its underlying language model supports. It is a retrieval and synthesis orchestrator that decomposes complex queries into manageable steps and chains them together with citation tracking.

02 — Architecture

2.1 — Query Decomposition

When CHIMERA receives a query, the first step is decomposition. A lightweight classifier determines whether the query can be answered in a single retrieval pass or requires multi-hop reasoning. Single-hop queries are routed directly to the standard RAG pipeline — CHIMERA adds no value for simple factual lookups and we avoid the latency overhead.

For multi-hop queries, the decomposition module generates a query plan: an ordered sequence of sub-queries, each with a specified data source and expected output type. The plan is generated by the language model itself, using few-shot examples tuned to the client's data schema.

Figure 1 — CHIMERA Query Execution Flow
  User Query
      │
      ▼
  ┌──────────────┐
  │   Classify   │──── Single-hop ───▶ Standard RAG
  │   (is this   │
  │   multi-hop?)│
  └──────┬───────┘
         │ Multi-hop
         ▼
  ┌──────────────┐
  │  Decompose   │ Generate sub-query plan
  │  into steps  │ [Q1] → [Q2] → ... → [Qn]
  └──────┬───────┘
         │
         ▼
  ┌──────────────┐     ┌──────────────┐
  │  Execute Q1  │────▶│  Execute Q2  │────▶ ...
  │  (vector DB) │     │ (graph DB)   │
  └──────────────┘     └──────────────┘
                              │
                              ▼
                       ┌──────────────┐
                       │  Synthesize  │ Merge evidence
                       │  + Cite      │ Generate answer
                       └──────────────┘

2.2 — Heterogeneous Retrieval

A key design decision in CHIMERA is that each sub-query can target a different data backend. The system currently supports four retrieval modes:

The decomposition model selects the appropriate retrieval mode for each sub-query based on the data type needed. This selection is imperfect — in our evaluation, the model correctly selects the optimal retrieval mode approximately 94% of the time. The remaining 6% typically results in slower but still correct answers (e.g., using vector search when a direct SQL query would be more efficient), rather than incorrect results.

2.3 — Citation Chain

Every fact in CHIMERA's output is annotated with a citation chain tracing it back to one or more source documents. Unlike simple RAG citations that point to retrieved chunks, CHIMERA citations track the reasoning path: which sub-query produced the evidence, which intermediate results informed the synthesis, and which source documents contributed to each claim.

This is important for our primary use cases. An analyst reviewing a CHIMERA-generated briefing needs to verify not just that a claim appears in a source document, but that the logical chain connecting multiple sources is sound.

03 — Evaluation

3.1 — Methodology

We evaluate on three benchmarks. CHIMERA-Bench is an internal benchmark of 2,400 multi-hop questions constructed from unclassified versions of real analyst workflows. HotpotQA and GPQA Diamond are public benchmarks included for external comparability.

Limitation: CHIMERA-Bench was constructed by ACX employees familiar with the system. Despite efforts to avoid optimization bias (questions were written by a team separate from the engineering team, using data the model was not fine-tuned on), the risk of implicit bias in a self-constructed benchmark is real. We encourage external evaluation and will provide CHIMERA-Bench under NDA to qualified research institutions.
BenchmarkCHIMERAGPT-4 + RAGLlama 3 70B + RAGGemini 1.5 + RAG
CHIMERA-Bench (2,400 Q)91.8%78.3%71.2%80.1%
HotpotQA (distractor)74.6%72.1%65.8%73.4%
GPQA Diamond53.8%53.6%39.5%52.1%

Table 1 — Accuracy on evaluation benchmarks. CHIMERA uses ACX-Reason-70B as the base model. Competitor results use their respective APIs with equivalent RAG infrastructure where possible. GPQA results are close to GPT-4 — the difference is not statistically significant at our sample size.

3.2 — Failure Analysis

We manually reviewed 200 incorrect CHIMERA-Bench responses to identify failure patterns:

Failure TypeFrequencyExample
Temporal confusion31%Confusing event ordering when dates are mentioned inconsistently across sources
Entity resolution errors24%Failing to recognize that two documents refer to the same entity under different names
Retrieval gaps19%Correct reasoning chain but missing a critical source document in retrieval
Numerical reasoning15%Incorrect aggregation, comparison, or calculation over retrieved numbers
Hallucination11%Generating plausible but unsupported claims despite citation requirements

Temporal confusion is our largest failure mode and the one we consider most important to address. Many real-world analytical questions are inherently temporal ("How has X changed over time?"), and our current temporal reasoning capabilities are insufficient. This is an active area of research.

04 — Integration Patterns

4.1 — API Usage

CHIMERA is accessed through the AIC API. The interface is intentionally simple — a query string and an optional configuration object:

Example — Python SDK
from aic import ChimeraClient

client = ChimeraClient(endpoint="https://aic.internal:8443")

result = client.query(
    question="Which vendors in our supply chain have had "
             "security incidents in the past 6 months?",
    sources=["vendor_docs", "security_reports", "contracts"],
    max_hops=3,
    require_citations=True
)

for claim in result.claims:
    print(f"{claim.text}")
    for cite in claim.citations:
        print(f"  └─ {cite.source} (confidence: {cite.score:.2f})")

4.2 — When Not to Use CHIMERA

CHIMERA adds latency (typically 3-8 seconds for multi-hop queries vs. sub-second for standard RAG) and consumes more compute. It should not be used for:

05 — Conclusion

CHIMERA addresses a specific gap in current RAG systems: the ability to answer questions that span multiple data sources and require multi-step reasoning. It does this reasonably well for the analytical workflows we designed it for, and poorly for tasks outside that scope.

The system's primary value is not in the sophistication of any individual component — query decomposition, heterogeneous retrieval, and citation tracking are all well-studied problems — but in the integration of these components into a reliable, auditable pipeline suitable for high-stakes environments. Whether that integration constitutes a meaningful contribution or merely competent engineering is a judgment we leave to the reader.

References

[1] Yang et al. "HotpotQA: A Dataset for Diverse, Explainable Multi-hop QA." EMNLP 2018.
[2] Rein et al. "GPQA: A Graduate-Level Google-Proof Q&A Benchmark." arXiv:2311.12022. 2023.
[3] Lewis et al. "Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks." NeurIPS 2020.
[4] Yao et al. "ReAct: Synergizing Reasoning and Acting in Language Models." ICLR 2023.
[5] Khattab et al. "DSPy: Compiling Declarative Language Model Calls." arXiv:2310.03714. 2023.
[6] Guu et al. "REALM: Retrieval-Augmented Language Model Pre-Training." ICML 2020.

© 2025 ACX Technologies Inc. · ACX-WP-2025-007 · Distribution: Unlimited · Classification: UNCLASSIFIED