> For the complete documentation index, see [llms.txt](https://models.advancedplugins.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://models.advancedplugins.net/models-and-guides/models-folder.md).

# Models Folder

## Models Folder

To install new models and manage currently installed models, use `models` folder, located at `plugins/AdvancedModels/models`.&#x20;

## Single Model Folder Format

Each model follows the same folder structure:

```
plugins
└── AdvancedModels
    └── models
        └── table
            ├── table.bbmodel
            └── model.yml
```

To use these models in commands, you'd use the name as e.g. `table`

## Model Group Folder Format

Models can also be put into groups, for easier management and installing. Example folder structure:

```
plugins
└── AdvancedModels
    └── models
        └── kitchen
            ├── table
            │   ├── table.bbmodel
            │   └── model.yml
            ├── chair
            │   ├── chair.bbmodel
            │   └── model.yml
            └── oven
                ├── oven.bbmodel
                └── model.yml
```

This would store 3 models (`table, chair, oven`) inside `kitchen` group. To access models inside a group, you'd need to use e.g. `kitchen/table` name.

## Noteable information

{% hint style="info" %}
.bbmodel file name does not matter, it can be named to anything.
{% endhint %}

{% hint style="info" %}
Each model's folder must have `model.yml` file with correctly configured contents. They are checked to contain required values on each model load. Read more about model.yml file here [Model.yml File](/models-and-guides/model.yml-file.md)
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://models.advancedplugins.net/models-and-guides/models-folder.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
