Skip to content

Commit

Permalink
Add module_config customization in the Weaviate destination docs (#603)
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash authored Sep 11, 2023
1 parent 171bf15 commit 8b18e63
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/website/docs/dlt-ecosystem/destinations/weaviate.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,17 @@ Reserved property names like `id` or `additional` are prefixed with underscores
- `vectorizer`: (str) the name of [the vectorizer](https://weaviate.io/developers/weaviate/modules/retriever-vectorizer-modules) to use. The default is `text2vec-openai`.
- `moduleConfig`: (dict) configurations of various Weaviate modules

### Configure Weaviate modules

The default configuration for the Weaviate destination uses `text2vec-openai`.
To configure another vectorizer or a generative module, replace the default `module_config` value by updating `config.toml`:

```toml
[destination.weaviate]
module_config={text2vec-openai = {}, generative-openai = {}}
```

This ensures the `generative-openai` module is used for generative queries.

### Run Weaviate fully standalone

Expand Down

0 comments on commit 8b18e63

Please sign in to comment.