# Mountsets

AuterionOS contains a number of pre-defined file lists, called 'mountsets', which can be mounted to the app. A typical use case would be exposing the host device's libraries to the application via a simple flag, instead of having to manually list all the filepaths. Mountsets are supported as of API v7.

#### List of supported mountsets

<table><thead><tr><th width="132">Mountset</th><th>Description</th><th width="249">Supported Targets</th><th>Minimum AuterionOS</th></tr></thead><tbody><tr><td>ml-package</td><td>NPU, GPU libraries</td><td>Skynode S, Skynode X</td><td>4.3.0</td></tr></tbody></table>

### Adding mountsets to an app

Mountsets can be defined by adding them by name under `mountsets:` in `auterion-app.yml` configuration file.

For example:

```yaml
auterion-api-version: 7

...

services:
 my-app-service:
   ...
   mountsets:
     - ml-package
```

Adding non-existent mountsets will not prevent an app from starting.


---

# 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.auterion.com/app-development/app-framework/mountsets.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.
