> For the complete documentation index, see [llms.txt](https://nomadamas.gitbook.io/ragchain-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nomadamas.gitbook.io/ragchain-docs/utils/evidence-extractor.md).

# Evidence Extractor

## Overview

The `EvidenceExtractor` class is a utility that extracts relevant evidences from a list of passages based on a given question. It uses a Language Model (LLM) to identify and return the relevant fragments from the original passages.

## Usage

### Initialize

To use the `EvidenceExtractor` class, you first need to create an instance of the class.&#x20;

```python
from RAGchain.utils.evidence_extractor import EvidenceExtractor

extractor = EvidenceExtractor()
```

You can put additional parameter `model_name` and `api_base` for using custom model. Plus, you can put custom system prompt for extracting evidence. If not, default english prompt will be used.

### Extract

After the `EvidenceExtractor` instance has been initialized, you can use the `extract` method to extract relevant evidences from a list of passages based on a given question. The `extract` method takes a question (a string) and a list of passages as input and returns the extracted relevant evidences.

```python
question = "What is the atomic number of hydrogen?"
passages = [
    Passage(content="Hydrogen is the first atom in atomic table."),
    Passage(content="Is is lighter than air so it floats."),
    Passage(content="Hydrogen can cause fire.")
]
result = extractor.extract(question, passages)
```

The `extract` method returns a string containing the extracted relevant evidences. If there is no evidence related to the question in the passages, it returns 'No Fragment' if you are using default prompt.


---

# 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://nomadamas.gitbook.io/ragchain-docs/utils/evidence-extractor.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.
