> ## Documentation Index
> Fetch the complete documentation index at: https://upstash-vector.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Reset

## Method

The `reset` method allows you to clear all vectors and metadata from the index.

## Reset Example

```python
from upstash_vector import Index
index = Index.from_env()

index.reset()
```
