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

# Document Viewer

As of v1.1.4, RedBrick AI allows you to upload text reports to Tasks.&#x20;

For purposes of data I/O, viewing, and navigation, each document is treated as a Series and occupies its own viewport.

<Frame caption="An example text report alongside a CT scan">
  <img src="https://mintcdn.com/redbrickai-c2e4bc62/09_FiR9sdsjqKqIA/assets/images/annotation-and-viewer/viewer-basics/document-viewer.png?fit=max&auto=format&n=09_FiR9sdsjqKqIA&q=85&s=bb2600becb75e099b6ab309b5d095f7c" alt="" width="3360" height="1924" data-path="assets/images/annotation-and-viewer/viewer-basics/document-viewer.png" />
</Frame>

## Uploading Documents to RedBrick AI

All documents must be uploaded programmatically and must be `.txt` files.

Please see the following JSON as an example:

```json theme={null}
// example Items List

[
  {
    "name": "Task Name",
    "series": [
      {
        "name": "Series Name",
        "items": [
          "file/path/to/images/1.2.156.14702.dcm",
        ]
      },
      {
        "items": [
          "file/path/to/report.txt"
        ]
      }
    ]
  }
]
```
