> For the complete documentation index, see [llms.txt](https://docs.raga.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.raga.ai/ragaai-catalyst/ragaai-metric-library/rag-metrics/faithfulness.md).

# Faithfulness RAG Metric

**Objective:** This metric determines the *proportion* of facts in the response that originate from the context information. The generated answer is considered faithful if all the claims made can be inferred from the provided context.

**Required Parameters**: `Prompt`, `Response`, `Context`

**Interpretation:**

* Lower faithfulness score indicates the model is not able to focus on the correct context document.
* Lower faithfulness score indicates the model is hallucinating and generating information not present in the context documents.&#x20;
* Lower faithfulness score indicates the Knowledge Base has contradicting information regarding the topic referred to in the prompt.

<figure><img src="/files/J9wUGc8QxIJ2mS64MVw5" alt=""><figcaption></figcaption></figure>

**Code Execution:**

```python
metrics=[
    {"name": "Faithfulness", "config": {"model": "gpt-4o-mini", "provider": "openai"}, "column_name": "your-column-identifier", "schema_mapping": schema_mapping}
]
```

The "schema\_mapping" variable needs to be defined first and is a pre-requisite for evaluation runs. Learn how to set this variable [here](/ragaai-catalyst/concepts/running-ragaai-evals/executing-evaluations.md).

**Example**:

* Prompt: Who discovered penicillin?
* Context: Penicillin is one of the most important discoveries in medical science, marking the beginning of the antibiotic era. It was discovered in 1928 by Alexander Fleming, a Scottish bacteriologist.&#x20;
* Response: Alexander Dumas discovered penicillin.
* *Metric Output*: {‘score’: 0, ‘reason’: ‘As per context penicillin was discovered by Alexander Fleming’}

<br>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.raga.ai/ragaai-catalyst/ragaai-metric-library/rag-metrics/faithfulness.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
