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

# September 2026 update

> ARGOS Omni product update for September 2026

Hello from ARGOS Omni.

Here is what shipped in September.

***

## Download an analysis report as PDF

<span style={{backgroundColor: '#EEF4FF', color: '#0064FF', padding: '4px 12px', borderRadius: '16px', fontSize: '13px', fontWeight: '600'}}>New Feature</span>

You can now **download a completed analysis as a PDF report.** Use the **Download PDF** button on the analysis results screen.

<Frame caption="The downloaded PDF report.">
  <img src="https://mintcdn.com/argosidentity/OPYUfjaSdQpOBnpM/images/omni/en/analysis-report-pdf.png?fit=max&auto=format&n=OPYUfjaSdQpOBnpM&q=85&s=adc327c663fa0e3830da7d10d261ce7b" alt="PDF analysis report" width="3756" height="1972" data-path="images/omni/en/analysis-report-pdf.png" />
</Frame>

It lays out the score, the summary, and the decision variables as a document, along with the analysis ID, completion time, and profile ID — ready to file as evidence for a review, or to submit as-is.

Report generation moved to a dedicated server, which **substantially improved the layout and the reliability**. Reports are available in Korean and English.

To get the same file through the API, use [`GET /analyses/:analysisId/report`](/en/omni/api-reference/get-report).

***

## An analysis completes only once its report is ready

<span style={{backgroundColor: '#F0FDF4', color: '#16A34A', padding: '4px 12px', borderRadius: '16px', fontSize: '13px', fontWeight: '600'}}>Feature Improvement</span>

Previously, selecting Download PDF right after an analysis turned complete could tell you the report was still being prepared. Now **an analysis is marked complete at the point its report is ready.**

When the status reads complete, **Download PDF works immediately.** No waiting and retrying.

***

## Report download history

<span style={{backgroundColor: '#F0FDF4', color: '#16A34A', padding: '4px 12px', borderRadius: '16px', fontSize: '13px', fontWeight: '600'}}>Feature Improvement</span>

When a report was generated and when it was downloaded are now recorded, along with generation failures — which makes it far easier to trace what went wrong when something does.

***

## The 5-item folder limit is gone

<span style={{backgroundColor: '#EEF4FF', color: '#0064FF', padding: '4px 12px', borderRadius: '16px', fontSize: '13px', fontWeight: '600'}}>New Feature</span>

**The limit of 5 items per folder has been removed.** A folder now holds as many documents as you need.

In its place, **one profile can hold 100MB of uploads in total**. Splitting them across folders does not change the total, and going over returns `409` `OMNI_2005`.

| Item                          | Before | Now              |
| ----------------------------- | ------ | ---------------- |
| Items per folder              | 5      | No limit         |
| Total upload size per profile | —      | 100MB            |
| Size of a single file         | 10MB   | 10MB (unchanged) |

You no longer have to split folders just because a case involves many documents. Folders are now purely for **organizing documents by type**.

***

## Unsupported formats are rejected at upload

<span style={{backgroundColor: '#FFF4E5', color: '#FF8A00', padding: '4px 12px', borderRadius: '16px', fontSize: '13px', fontWeight: '600'}}>Breaking change</span>

Previously any format uploaded successfully and then failed quietly during processing, when no text could be extracted. Now **an unsupported format is rejected as you upload it** — `400` `OMNI_2105`.

Rejected: HWP and HWPX, the legacy `doc`, `xls`, and `ppt` formats, RAW, ICO, ZIP, and video and audio files. Convert legacy Office documents to `docx`, `xlsx`, or `pptx` first.

A file whose extension disagrees with its actual content is rejected under the same code. Renaming a PDF to `.md` does not get it through.

<Note>
  This cuts down on discovering "the value was never extracted" only after running an analysis. The full supported list is in [adding an item](/en/omni/api-reference/post-item#supported-file-formats).
</Note>

***

## Related pages

* [Analysis results](/en/omni/dashboard/analysis-results) — the PDF download and the five sub-tabs
* [`GET /analyses/:analysisId/report`](/en/omni/api-reference/get-report) — getting the report through the API
