---
title: "LLM hallucinations"
source: "https://systems-analysis.info/eng/LLM_hallucinations"
wiki: "systems-analysis.info/eng"
article: "LLM_hallucinations"
language: "en"
categories:
  - "Category:English"
  - "Category:Large language models"
  - "Category:Machine learning"
  - "Category:Technology"
revision_id: 203
wiki_created_at: 2026-09-06T22:18:51Z
wiki_modified_at: 2026-09-06T22:18:51Z
downloaded_at: 2026-09-07T22:21:50Z
---

# LLM hallucinations

**Hallucination** in the context of [large language models](https://systems-analysis.info/eng/Large_language_model "Large language model") (LLMs) is a phenomenon where the model confidently generates a *plausible*-looking response that is factually incorrect, not grounded in the provided context, or is internally inconsistent<sup>[\[1\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-lakera-guide-1)[\[2\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-astera-guide-2)</sup>. The model "invents" facts, details, or logical conclusions that are absent from the source data.

It is important to note that a hallucination is not a failure or a bug in the traditional sense. The model is operating as designed: it predicts the most probable continuation of a text based on patterns learned from its training data. It has no built-in mechanism for truth verification<sup>[\[3\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-wikipedia-hallucination-3)</sup>. Hallucinations differ from simple errors in that they present confidently delivered but false information, often including non-existent facts, citations, or events<sup>[\[4\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-openai-description-4)</sup>. This phenomenon has become so significant that in 2023, the Cambridge Dictionary added a new definition for the term "hallucination" related to artificial intelligence<sup>[\[5\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-cambridge-dict-5)</sup>.

## Definitions and Classification of Hallucinations

Although various terms are used (e.g., "confabulation," "fabrication"), hallucinations in LLMs can be divided into two broad categories: those related to **factual accuracy** and those related to **faithfulness to the source** (contextual consistency)<sup>[\[6\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-nexla-guide-6)</sup>.

### Factual Hallucinations

This occurs when the model provides factually incorrect information about the real world. The model asserts a false "fact" as truth<sup>[\[1\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-lakera-guide-1)</sup>.

- **Example**: *"Charles Lindbergh was the first person to walk on the moon"* — a completely fabricated fact.
- **False citations and references**: The model might invent a reference to a non-existent scientific paper or law, mimicking the format of a real citation<sup>[\[2\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-astera-guide-2)</sup>. This undermines trust in models, especially in applications requiring accuracy (education, news, consulting)<sup>[\[7\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-quickcreator-tips-7)</sup>.

### Logical Errors

The model makes an inconsistency or an error in reasoning. Individual facts in the response may be correct, but the conclusion is illogical or contradicts basic logic<sup>[\[2\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-astera-guide-2)</sup>. This often happens in complex reasoning or in math and causality tasks, where the model operates on probabilistic word associations rather than formal logic<sup>[\[2\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-astera-guide-2)[\[2\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-astera-guide-2)</sup>.

- **Example**: *"Since birds fly, astronauts do not experience gravity"* — the text appears coherent but is logically incorrect.

### Contextual Hallucinations

The model's response does not align with the provided context or instruction. The model "drifts" from the context, adding extraneous information or ignoring required details<sup>[\[1\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-lakera-guide-1)</sup>.

- **Instruction Violation**: When asked to "translate the text into Spanish," the model responds in English<sup>[\[1\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-lakera-guide-1)</sup>.
- **Information Not from the Source**: In a summarization task, the model "adds" facts that were not in the original document or misrepresents them<sup>[\[1\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-lakera-guide-1)</sup>.
- **Context Blending**: In the middle of a response, the model may suddenly start discussing something from a different domain. For example, when asked about NBA commissioner **Adam Silver**, the model might switch to his predecessor **David Stern**, blending two different contexts<sup>[\[6\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-nexla-guide-6)</sup>.

### Inconsistency

A type of hallucination where the model contradicts itself within a single response or a series of responses<sup>[\[6\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-nexla-guide-6)</sup>. One study found that the self-contradiction rate in ChatGPT's responses is around 14%<sup>[\[6\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-nexla-guide-6)[\[6\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-nexla-guide-6)</sup>.

- **Example**: *"Company X was founded in 1990... and a few sentences later... Company X, established in 2000..."*

### Hallucinations in Code

LLMs trained on code can generate syntactically correct but non-functional snippets that use non-existent functions, libraries, or parameters<sup>[\[2\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-astera-guide-2)</sup>. For example, a model might generate \`import quantum\` in Python, although no such standard module exists. In 2024, the term "code hallucination" was proposed, and the **CodeMirage** benchmark was created to systematize this problem<sup>[\[8\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-codemirage-paper-8)</sup>.

## Causes

The phenomenon of hallucination is driven by a combination of factors, ranging from model architecture to data quality.

- **Architecture and Training Principle**: Most LLMs (e.g., [GPT](https://systems-analysis.info/eng/GPT_(OpenAI) "GPT (OpenAI)")) are autoregressive [transformers](https://systems-analysis.info/eng/Transformer_architecture "Transformer architecture") trained to predict the next [token](https://systems-analysis.info/eng/Token_(LLM) "Token (LLM)"). Their goal is to maximize the likelihood of the text, not to verify the truthfulness of statements<sup>[\[2\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-astera-guide-2)</sup>. The model does not distinguish between facts and fiction in its training data, treating everything as text patterns<sup>[\[2\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-astera-guide-2)</sup>.
- **Quality of Training Data**: LLMs are trained on vast text corpora from the internet, which contain numerous inaccuracies, myths, and outdated information<sup>[\[1\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-lakera-guide-1)</sup>. The model memorizes and reproduces these errors. The **knowledge cutoff**—the point in time up to which the model has information—is also crucial.
- **Text Generation Method**: The stochastic nature of generation (sampling with [temperature](https://systems-analysis.info/eng/Temperature_(LLM) "Temperature (LLM)")) allows the model to create more "creative" but less accurate responses. A limited context length can cause the model to "forget" earlier details of a conversation and start contradicting itself<sup>[\[6\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-nexla-guide-6)</sup>.

## Evaluation and Measurement Methods

Automated metrics, human evaluation, and specialized benchmarks are used to detect and measure hallucinations.

- **Automated Metrics**: These include approaches where another LLM acts as a "judge" (**LLM-as-a-judge**) to assess the correctness of a response<sup>[\[9\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-evidently-blog-9)</sup>, or analyzing the model's entropy (uncertainty) during generation<sup>[\[10\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-kolena-blog-10)</sup>.
- **Human Annotation**: Considered the "gold standard." Experts or crowd-assessors manually evaluate responses, flagging errors. This method is used in training models with [RLHF](https://systems-analysis.info/eng/Reinforcement_learning_from_human_feedback_(RLHF) "Reinforcement learning from human feedback (RLHF)")<sup>[\[11\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-chatgpt-comparison-11)</sup>.
- **Benchmarks and Stress Tests**: Special datasets have been created, such as **[TruthfulQA](https://systems-analysis.info/eng/TruthfulQA_Benchmark "TruthfulQA Benchmark")**, which contains questions designed to provoke the model into reproducing common myths<sup>[\[12\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-mastering-llm-accuracy-12)</sup>. There are also leaderboards, like the **[Hugging Face](https://systems-analysis.info/eng/Hugging_Face "Hugging Face") Hallucination Leaderboard**, where models are compared based on their hallucination levels<sup>[\[13\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-llm-benchmarks-arize-13)</sup>.

## Mitigation and Prevention Methods

- **[Retrieval-Augmented Generation](https://systems-analysis.info/eng/Retrieval-augmented_generation_(RAG) "Retrieval-augmented generation (RAG)") (RAG)**: The most successful approach, which "grounds" the model in external knowledge. Before generating a response, the model retrieves relevant information from a database, search engine, or API. This allows the model to base its answer on verified data rather than speculation<sup>[\[2\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-astera-guide-2)</sup>.
- **[Chain-of-Thought](https://systems-analysis.info/eng/Chain-of-Thought_Prompting "Chain-of-Thought Prompting") Reasoning and Self-Verification**: The model first generates a step-by-step reasoning process before giving the final answer, which improves accuracy. In more advanced methods like **Self-Verification**, the model generates a draft response and is then tasked with reviewing and correcting it<sup>[\[14\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-rag-cove-paper-14)</sup>.
- **Built-in Rules and Filters**: Models are trained to refuse to answer if they are uncertain. For example, [Claude](https://systems-analysis.info/eng/Claude_(Anthropic) "Claude (Anthropic)") models from Anthropic follow a "truthfulness" principle and often respond with "I don't know for sure..." instead of inventing facts<sup>[\[11\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-chatgpt-comparison-11)</sup>.
- **Integration with External Tools**: Models like [Gemini](https://systems-analysis.info/eng/Gemini_(Google) "Gemini (Google)") can automatically recognize when they need an external tool (e.g., a calculator for computations or a search for recent news) and use it, significantly reducing the number of hallucinations<sup>[\[11\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-chatgpt-comparison-11)</sup>.

## Risks and Consequences

- **Legal and Reputational Risks**: In the legal field, hallucinations can have serious consequences. The **Mata v. Avianca (2023)** case gained widespread attention, where a lawyer used ChatGPT to find legal precedents, and it fabricated several non-existent cases. The lawyers were fined, and the incident served as a lesson about the unacceptability of trusting AI without verification<sup>[\[1\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-lakera-guide-1)</sup>.
- **Spread of Disinformation**: On a societal scale, LLMs can amplify the problem of fake news. A well-known case is the **Galactica** model from Meta, created to assist scientists, which began generating pseudoscientific texts with fabricated experiments and citations. Public access to the model was shut down after three days<sup>[\[15\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-galactica-failure-15)</sup>.
- **Making Flawed Decisions**: Users, especially inexperienced ones, tend to trust confidently phrased AI responses, which can lead to poor decisions in finance, medicine, and other critical areas<sup>[\[7\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-quickcreator-tips-7)</sup>.

## Practical Examples

- **The Air Canada Case (2023)**: The airline's chatbot invented a non-existent ticket refund policy. When a customer demanded its application, the company refused. The Civil Resolution Tribunal of Canada held Air Canada responsible for the information provided by its chatbot and ordered it to compensate the customer for their losses<sup>[\[9\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-evidently-blog-9)</sup>.
- **Defamation Lawsuit Against OpenAI (2023)**: Radio host Mark Walters sued OpenAI because ChatGPT, in response to a journalist's query, falsely accused him of fraud. This case highlighted the legal liability of companies for the content generated by their models<sup>[\[6\]](https://systems-analysis.info/eng/LLM_hallucinations#cite_note-nexla-guide-6)</sup>.

## External links

- <a href="https://www.lakera.ai/blog/guide-to-hallucinations-in-large-language-models" class="external text" rel="nofollow">The Beginner's Guide to Hallucinations in Large Language Models</a> — A detailed guide from Lakera
- <a href="https://arxiv.org/abs/2202.03629" class="external text" rel="nofollow">Survey of Hallucination in Natural Language Generation</a> — A scientific survey of the phenomenon on arXiv
- <a href="https://en.wikipedia.org/wiki/Hallucination_(artificial_intelligence)" class="external text" rel="nofollow">Hallucination (artificial intelligence) — Wikipedia</a>

## See also

- [Contextual forgetting](https://systems-analysis.info/eng/Contextual_forgetting "Contextual forgetting")
- [LLM error mitigation](https://systems-analysis.info/eng/LLM_error_mitigation "LLM error mitigation")
- [Stochastic parrot](https://systems-analysis.info/eng/Stochastic_parrot "Stochastic parrot")

## Literature

- Holtzman, A. et al. (2020). *The Curious Case of Neural Text Degeneration*. <a href="https://arxiv.org/abs/1904.09751" class="external text" rel="nofollow">arXiv:1904.09751</a>.
- Caccia, M. et al. (2018). *Language GANs Falling Short*. <a href="https://arxiv.org/abs/1811.02549" class="external text" rel="nofollow">arXiv:1811.02549</a>.
- Fan, A. et al. (2018). *Hierarchical Neural Story Generation*. <a href="https://arxiv.org/abs/1805.04833" class="external text" rel="nofollow">arXiv:1805.04833</a>.
- Su, Y.; Collier, N. (2022). *Contrastive Search Is What You Need for Neural Text Generation*. <a href="https://arxiv.org/abs/2210.14140" class="external text" rel="nofollow">arXiv:2210.14140</a>.
- Meister, C. et al. (2023). *Locally Typical Sampling*. <a href="https://arxiv.org/abs/2202.00666" class="external text" rel="nofollow">arXiv:2202.00666</a>.
- O’Brien, S.; Lewis, M. (2023). *Contrastive Decoding Improves Reasoning in Large Language Models*. <a href="https://arxiv.org/abs/2309.09117" class="external text" rel="nofollow">arXiv:2309.09117</a>.
- Finlayson, M. et al. (2024). *Basis-Aware Truncation Sampling for Neural Text Generation*. <a href="https://arxiv.org/abs/2412.14352" class="external text" rel="nofollow">arXiv:2412.14352</a>.
- Tan, Q. et al. (2024). *A Thorough Examination of Decoding Methods in the Era of Large Language Models*. <a href="https://arxiv.org/abs/2402.06925" class="external text" rel="nofollow">arXiv:2402.06925</a>.
- Yu, S. et al. (2023). *Conformal Nucleus Sampling*. <a href="https://arxiv.org/abs/2305.02633" class="external text" rel="nofollow">arXiv:2305.02633</a>.
- Chen, S. J. et al. (2024). *Decoding Game: On Minimax Optimality of Heuristic Text Generation Methods*. <a href="https://arxiv.org/abs/2410.03968" class="external text" rel="nofollow">arXiv:2410.03968</a>.

## References

1.  <span id="cite_note-lakera-guide-1">↑ <sup>[1.0](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-lakera-guide_1-0)</sup> <sup>[1.1](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-lakera-guide_1-1)</sup> <sup>[1.2](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-lakera-guide_1-2)</sup> <sup>[1.3](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-lakera-guide_1-3)</sup> <sup>[1.4](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-lakera-guide_1-4)</sup> <sup>[1.5](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-lakera-guide_1-5)</sup> <sup>[1.6](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-lakera-guide_1-6)</sup> “The Beginner's Guide to Hallucinations in Large Language Models”. *Lakera*. <a href="https://www.lakera.ai/blog/guide-to-hallucinations-in-large-language-models" class="external autonumber" rel="nofollow">[1]</a></span>
2.  <span id="cite_note-astera-guide-2">↑ <sup>[2.0](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-astera-guide_2-0)</sup> <sup>[2.1](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-astera-guide_2-1)</sup> <sup>[2.2](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-astera-guide_2-2)</sup> <sup>[2.3](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-astera-guide_2-3)</sup> <sup>[2.4](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-astera-guide_2-4)</sup> <sup>[2.5](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-astera-guide_2-5)</sup> <sup>[2.6](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-astera-guide_2-6)</sup> <sup>[2.7](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-astera-guide_2-7)</sup> <sup>[2.8](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-astera-guide_2-8)</sup> “What Is LLM Hallucination and How To Prevent It”. *Astera*. <a href="https://www.astera.com/type/blog/llm-hallucination-how-to-reduce-it/" class="external autonumber" rel="nofollow">[2]</a></span>
3.  <span id="cite_note-wikipedia-hallucination-3">[↑](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-wikipedia-hallucination_3-0) “Hallucination (artificial intelligence)”. In *Wikipedia*. <a href="https://en.wikipedia.org/wiki/Hallucination_(artificial_intelligence)" class="external autonumber" rel="nofollow">[3]</a></span>
4.  <span id="cite_note-openai-description-4">[↑](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-openai-description_4-0) “OpenAI describes LLM hallucinations as 'making up facts' in moments of uncertainty'”. *\[source not cited in text\]*.</span>
5.  <span id="cite_note-cambridge-dict-5">[↑](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-cambridge-dict_5-0) “Cambridge Dictionary adds new definition for 'hallucinate'”. *\[source not cited in text\]*.</span>
6.  <span id="cite_note-nexla-guide-6">↑ <sup>[6.0](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-nexla-guide_6-0)</sup> <sup>[6.1](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-nexla-guide_6-1)</sup> <sup>[6.2](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-nexla-guide_6-2)</sup> <sup>[6.3](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-nexla-guide_6-3)</sup> <sup>[6.4](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-nexla-guide_6-4)</sup> <sup>[6.5](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-nexla-guide_6-5)</sup> <sup>[6.6](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-nexla-guide_6-6)</sup> “LLM Hallucination—Types, Causes, and Solutions”. *Nexla*. <a href="https://nexla.com/ai-infrastructure/llm-hallucination/" class="external autonumber" rel="nofollow">[4]</a></span>
7.  <span id="cite_note-quickcreator-tips-7">↑ <sup>[7.0](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-quickcreator-tips_7-0)</sup> <sup>[7.1](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-quickcreator-tips_7-1)</sup> “Effective Tips to Prevent AI Hallucinations in Generative AI”. *QuickCreator*. <a href="https://quickcreator.io/quthor_blog/tricks-prevent-ai-hallucinations-generative-artificial-intelligence/" class="external autonumber" rel="nofollow">[5]</a></span>
8.  <span id="cite_note-codemirage-paper-8">[↑](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-codemirage-paper_8-0) \[2408.08333\] CodeMirage: Hallucinations in Code Generated by Large Language Models. *arXiv*. <a href="https://arxiv.org/abs/2408.08333" class="external autonumber" rel="nofollow">[6]</a></span>
9.  <span id="cite_note-evidently-blog-9">↑ <sup>[9.0](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-evidently-blog_9-0)</sup> <sup>[9.1](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-evidently-blog_9-1)</sup> “LLM hallucinations and failures: lessons from 4 examples”. *Evidently AI Blog*. <a href="https://www.evidentlyai.com/blog/llm-hallucination-examples" class="external autonumber" rel="nofollow">[7]</a></span>
10. <span id="cite_note-kolena-blog-10">[↑](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-kolena-blog_10-0) “How to Perform Hallucination Detection for LLMs”. *Kolena*. <a href="https://www.kolena.com/blog/how-to-perform-hallucination-detection-for-llms/" class="external autonumber" rel="nofollow">[8]</a></span>
11. <span id="cite_note-chatgpt-comparison-11">↑ <sup>[11.0](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-chatgpt-comparison_11-0)</sup> <sup>[11.1](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-chatgpt-comparison_11-1)</sup> <sup>[11.2](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-chatgpt-comparison_11-2)</sup> “ChatGPT vs Google Gemini vs Anthropic Claude: Comprehensive Comparison & Report”. *DataStudios*. <a href="https://www.datastudios.org/post/chatgpt-vs-google-gemini-vs-anthropic-claude-comprehensive-comparison-report-capabilities-perfo" class="external autonumber" rel="nofollow">[9]</a></span>
12. <span id="cite_note-mastering-llm-accuracy-12">[↑](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-mastering-llm-accuracy_12-0) “Mastering LLM Accuracy: How to Test, Detect, and Fix Hallucinations in AI Models”. *Stephen Weber on Medium*. <a href="https://weber-stephen.medium.com/mastering-llm-accuracy-how-to-test-detect-and-fix-hallucinations-in-ai-models-ae5f69111379" class="external autonumber" rel="nofollow">[10]</a></span>
13. <span id="cite_note-llm-benchmarks-arize-13">[↑](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-llm-benchmarks-arize_13-0) “LLM Benchmarks and Leaderboards: Avoiding Foundation Model Mistakes”. *Arize Blog*. <a href="https://arize.com/blog-course/llm-leaderboards-benchmarks/" class="external autonumber" rel="nofollow">[11]</a></span>
14. <span id="cite_note-rag-cove-paper-14">[↑](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-rag-cove-paper_14-0) “Improving the Reliability of LLMs: Combining Chain-of-Thought Reasoning and Retrieval-Augmented Generation”. *arXiv*. <a href="https://arxiv.org/html/2505.09031v1" class="external autonumber" rel="nofollow">[12]</a></span>
15. <span id="cite_note-galactica-failure-15">[↑](https://systems-analysis.info/eng/LLM_hallucinations#cite_ref-galactica-failure_15-0) “Why Meta Took Down its 'Hallucinating' AI Model Galactica?”. *Analytics India Magazine*. <a href="https://analyticsindiamag.com/ai-features/why-meta-took-down-its-hallucinating-ai-model-galactica/" class="external autonumber" rel="nofollow">[13]</a></span>
