# Manage your assets

Efficiently manage your AI project assets to ensure your data is organized, accessible, and up-to-date.

## Update model status via API

You can update your model status to`PRODUCTION`, `EXPERIMENTAL`, `RETIRED`, or `STAGING`.

{% hint style="info" %}
You will receive an error message if you use a status outside the options mentioned above.
{% endhint %}

{% tabs %}
{% tab title="Vectice API" %}
To update a model status using the Vectice API...

```python
import vectice

# Connect to Vectice
connect = vectice.connect(
    api_token = 'your-api-key',        # Paste your api key
    host = 'https://app.vectice.com',  # Paste your host
)

# Retrieve your model version using the model version ID
mdv = connect.browse('MDV-XXX')

# Update your model status
mdv.update(status="PRODUCTION")
```

{% endtab %}

{% tab title="Vectice Web App " %}
To update a model status in the Vectice Web App...

1. Go to your project and select **Models**
2. Choose the model that needs a status update
3. Select a model version
4. Update the **Model version status**

<figure><img src="/files/ZfPol5wctQP7imTtXQ8A" alt=""><figcaption></figcaption></figure>
{% endtab %}
{% endtabs %}


---

# 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.vectice.com/log-and-manage-assets-with-vectice-api/manage-your-assets.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.
