# Turning on Advanced Mode Uploader

Advanced Mode is a configuration option for an Osmos Uploader that provides end users with a feature-rich experience that includes tools like [QuickFixes](/data-transformations/quickfixes.md), [Formulas](/data-transformations/formulas.md), and [SmartFill](/data-transformations/smartfill.md), which are available in [Osmos Pipelines](/pipelines.md). &#x20;

## Enabling Advanced Mode

To turn these on for your Uploader, just set the `disableAdvancedMode` flag to `false` in your Uploader configuration snippet.

```javascript
Osmos.configure({
  schema: {
    fields: [
      ...
    ]
  },
  token: 'your_token',
  ...
  // Set to false to show the advanced version of the uploader, with formulas, SmartFill, and QuickFixes.
  disableAdvancedMode: true
});
```

For additional settings, see [Optional Settings](/developer-docs/optional-uploader-settings.md).


---

# Agent Instructions: 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:

```
GET https://docs.osmos.io/developer-docs/turning-on-advanced-mode-uploader.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
