> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Docx Reader

> Parameters and methods of DocxReader, which reads DOCX files into documents.

DocxReader reads data from Docx files.

## Parameters

<Snippet file="docx-reader-reference.mdx" />

## Methods

### `read()`

Reads a DOCX file and returns a list of documents.

| Parameter | Type                   | Default  | Description                                 |
| --------- | ---------------------- | -------- | ------------------------------------------- |
| `file`    | `Union[Path, IO[Any]]` | Required | Path to the DOCX file or a file-like object |
| `name`    | `Optional[str]`        | `None`   | Name override for the resulting documents   |

### `async_read()`

The async variant of `read()`. It accepts the same parameters.
