> ## Documentation Index
> Fetch the complete documentation index at: https://docs.featureform.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Weaviate

> Featureform supports [Weaviate](https://weaviate.io/) as a [Vector DB](/providers/vector-db).

## Configuration

First we have to add a declarative Pinecone configuration in Python. The following example shows the required fields.

```python theme={null}
import featureform as ff

weaviate = ff.register_weaviate(
    name="weaviate-quickstart",
    url="https://<CLUSTER NAME>.weaviate.network",
    api_key="<API KEY>"
    description="A Weaviate project for using embeddings in Featureform"
)

client.apply()
```

Once our config file is complete, we can apply it to our Featureform deployment. Afterwards we can set it as the [Vector DB](vector-db.md) when defining an [embedding](../abstractions/embedding.md).

We can re-verify that the provider is created by checking the [Providers tab of the Feature Registry or via the CLI](../getting-started/search-monitor-discovery-feature-registry-ui-cli.md).
